Searched defs:classes (Results 1 - 8 of 8) sorted by relevance

/dalvik/hit/src/com/android/hit/
H A DQueries.java35 * allClasses classes
62 * Produce a collection of all classes, broken down by package.
64 * The values of the map are the classes defined in each package.
67 return classes(state, null);
70 public static Map<String, Set<ClassObj>> classes(State state, method in class:Queries
75 Set<ClassObj> classes = new TreeSet<ClassObj>();
77 // Build a set of all classes across all heaps
79 classes.addAll(heap.mClassesById.values());
85 Iterator<ClassObj> iter = classes.iterator();
100 // Now that we have a final list of classes, grou
[all...]
/dalvik/vm/native/
H A Ddalvik_system_VMStack.cpp61 * Create an array of classes for the methods on the stack, skipping the
94 * Create an array object to hold the classes.
103 ArrayObject* classes = dvmAllocArrayByClass(classArrayClass, local
106 if (classes == NULL) {
120 dvmSetObjectArrayElement(classes, objCount, klass);
123 assert(objCount == classes->length);
125 dvmReleaseTrackedAlloc((Object*)classes, NULL);
126 RETURN_PTR(classes);
H A Djava_lang_Class.cpp28 * called from <clinit> in javac-generated classes that use the Java
82 * dot-form to slash-form. An empty string means all classes.
175 * Return an array with the classes that are declared by the specified class.
176 * If "publicOnly" is set, we strip out any classes that don't have "public"
184 ArrayObject* classes; local
186 classes = dvmGetDeclaredClasses(clazz);
187 if (classes == NULL) {
190 classes = dvmAllocArrayByClass(gDvm.classJavaLangClassArray,
195 ClassObject** pSource = (ClassObject**)(void*)classes->contents;
196 u4 length = classes
[all...]
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DOutput.java97 * Prints the list of classes in a simple human-readable format.
99 static void printClassRefs(ClassRef[] classes, boolean justClasses) { argument
104 for (int i = 0; i < classes.length; i++) {
105 ClassRef ref = classes[i];
114 static void printFieldRefs(ClassRef[] classes) { argument
116 for (int i = 0; i < classes.length; i++) {
117 FieldRef[] fields = classes[i].getFieldArray();
131 static void printMethodRefs(ClassRef[] classes) { argument
133 for (int i = 0; i < classes.length; i++) {
134 MethodRef[] methods = classes[
[all...]
/dalvik/vm/
H A DInitRefs.cpp18 * Code to initialize references to classes and members for use by
45 static struct { ClassObject** ref; const char* name; } classes[] = { local
51 /* The corest of the core classes */
55 /* Slightly less core, but still down there, classes */
76 /* Exception classes */
118 /* Other classes */
146 for (i = 0; classes[i].ref != NULL; i++) {
147 if (!initClassReference(classes[i].ref, classes[i].name)) {
258 static struct { const char* name; const struct FieldInfo* fields; } classes[] local
[all...]
/dalvik/vm/reflect/
H A DProxy.cpp78 ALOGV("+++ Generate proxy class '%s' %p from %d interface classes",
94 * TODO: set protection domain so it matches bootstrap classes.
235 * We also allocate an array of arrays of throwable classes, one for each
242 ClassObject** classes; local
256 classes = (ClassObject**)(void*)interfaces->contents;
258 for (i = 0; i < numInterfaces; i++, classes++) {
259 ClassObject* clazz = *classes;
294 classes = (ClassObject**)(void*)interfaces->contents;
295 for (i = 0; i < numInterfaces; i++, classes++) {
296 ClassObject* clazz = *classes;
570 const ClassObject** classes = local
1018 const ClassObject** classes = local
[all...]
H A DReflect.cpp34 static const char* classes[] = { local
47 for (ccp = classes; *ccp != NULL; ccp++) {
117 * Convert the method signature to an array of classes.
409 * Convert the signature string into an array of classes representing
553 * Convert the signature string into an array of classes representing
688 * Fills targetDescriptorCache with the descriptors of the classes in args.
/dalvik/tools/dmtracedump/
H A DTraceDump.c230 ClassEntry *classes; member in struct:TraceData
467 * classes into decreasing order of exclusive elapsed time.
1818 traceData->classes = NULL;
1823 traceData->classes = (ClassEntry *) malloc(sizeof(ClassEntry) * traceData->numClasses);
1825 /* Initialize the classes array */
1826 memset(traceData->classes, 0, sizeof(ClassEntry) * traceData->numClasses);
1827 ClassEntry *pClass = traceData->classes;
1854 pClass = traceData->classes;
1911 printf("\nNo classes.\n");
1928 ClassEntry *pClass = traceData->classes;
[all...]

Completed in 231 milliseconds