Lines Matching refs:found

740         ALOGE("No valid entries found in bootclasspath '%s'", pathStr);
764 * Returns the matching DEX file and DexClassDef entry if found, otherwise
790 /* found */
793 goto found;
806 /* found */
809 goto found;
837 /* found */
843 found:
984 //ALOGI("+++ found initiating match %p in %s",
1066 * Returns 0 if a matching entry is found, nonzero otherwise.
1119 * Returns NULL if not found.
1125 void* found;
1136 found = dvmHashTableLookup(gDvm.loadedClasses, hash, &crit,
1148 if (found && !unprepOkay && !dvmIsClassLinked((ClassObject*)found)) {
1150 ((ClassObject*)found)->descriptor);
1151 found = NULL;
1154 return (ClassObject*) found;
1171 void* found;
1177 found = dvmHashTableLookup(gDvm.loadedClasses, hash, clazz,
1183 (found == (void*) clazz), clazz);
1188 return (found == (void*) clazz);
1254 * If the class can't be found, returns NULL with an appropriate exception
1282 * If the class can't be found, returns NULL with an appropriate exception
1295 * Array class. Find in table, generate if not found.
1300 * Regular class. Find in table, load if not found.
1534 /* found a match, try to load it */
1537 /* class was found but had issues */
2627 LOGVV("+++ found interface '%s'",
3325 * We found methods in one or more interfaces for which we do not
3461 * was found in the interface class. That copy may already have had the
3635 bool found = false;
3650 found = true;
3655 if (!found) {
3967 /* only one was found, so clearly they're not the same */
4301 * Object (and possibly some Throwable stuff if a class isn't found).
4324 //ALOGV("HEY: found a recursive <clinit>");
4463 LOGVV("No <clinit> found for %s", clazz->descriptor);
4612 * Find a loaded class by descriptor. Returns the first one found.