summaryrefslogtreecommitdiffstats
path: root/vm/oo/Object.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-07-25 17:43:39 -0700
committerElliott Hughes <enh@google.com>2013-07-25 17:43:39 -0700
commitb4d5cf78d4731ffc6211d07a0d69c92c559ba792 (patch)
treecf7194563bada6a3026cf24d91cc7d102fa6eab5 /vm/oo/Object.h
parent45c42e768eda948570d6d2eb4086f184386b6712 (diff)
downloadandroid_dalvik-b4d5cf78d4731ffc6211d07a0d69c92c559ba792.tar.gz
android_dalvik-b4d5cf78d4731ffc6211d07a0d69c92c559ba792.tar.bz2
android_dalvik-b4d5cf78d4731ffc6211d07a0d69c92c559ba792.zip
Implement the dalvik side of libcore.reflect.
Change-Id: I9ef0da6f715e2727d8530aa7a8edee97b5bfa48d
Diffstat (limited to 'vm/oo/Object.h')
-rw-r--r--vm/oo/Object.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/vm/oo/Object.h b/vm/oo/Object.h
index 4e6103ade..ca4115733 100644
--- a/vm/oo/Object.h
+++ b/vm/oo/Object.h
@@ -306,6 +306,8 @@ struct Field {
u4 accessFlags;
};
+u4 dvmGetFieldIdx(const Field* field);
+
/*
* Static field.
*/
@@ -582,6 +584,8 @@ struct Method {
bool inProfile;
};
+u4 dvmGetMethodIdx(const Method* method);
+
/*
* Find a method within a class. The superclass is not searched.