Searched refs:found (Results 1 - 23 of 23) sorted by relevance

/dalvik/vm/
H A DIntern.cpp73 StringObject* found; local
85 * A match was found in the literal table, the easy case.
87 found = literal;
96 * A match was found in the interned table. Move the
100 found = insertString(gDvm.literalStrings, key, interned);
101 assert(found == interned);
107 found = insertString(gDvm.literalStrings, key, strObj);
108 assert(found == strObj);
115 found = lookupString(gDvm.literalStrings, key, strObj);
116 if (found
161 StringObject* found = lookupString(gDvm.internedStrings, key, strObj); local
[all...]
H A DAndroid.mk132 # dependencies like expat are not found by the linker.
H A DDebugger.cpp189 void* found; local
191 found = dvmHashTableLookup(gDvm.dbgRegistry, registryHash((u4) id),
193 if (found == NULL)
195 assert(found == (void*)(u4) id);
2579 ALOGE("Thread for single-step not found");
/dalvik/tests/063-process-manager/src/
H A DMain.java27 boolean found = false;
35 found = true;
39 if (! found) {
/dalvik/libdex/
H A DDexDataMap.cpp126 int found = dexDataMapGet(map, offset); local
128 if (found == type) {
132 if (found < 0) {
133 ALOGE("No data map entry found @ %#x; expected %x",
136 ALOGE("Unexpected data map entry @ %#x: expected %x, found %x",
137 offset, type, found);
H A Dsha1.cpp332 int found = 0; local
356 found = 1;
394 return found;
422 int found = 0; local
477 found |= verifyfile(s);
487 found = 1;
497 if (!found)
502 "No SHA1 lines found in %s\n",
/dalvik/dx/tests/098-dex-jsr-ret-throw/
H A DViewDebug$ViewServer.class ... .lang.String, int) android.view.View found android.view.View view int i android. ...
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DRegisterSpec.java64 RegisterSpec found = theInterns.get(theInterningItem);
66 if (found != null) {
67 return found;
70 found = theInterningItem.toRegisterSpec();
71 theInterns.put(found, found);
72 return found;
/dalvik/dx/src/com/android/dx/rop/code/
H A DRegisterSpec.java68 RegisterSpec found = theInterns.get(theInterningItem);
70 if (found != null) {
71 return found;
74 found = theInterningItem.toRegisterSpec();
75 theInterns.put(found, found);
76 return found;
/dalvik/dexlist/
H A DAndroid.mk16 # dexlist -- list all concrete methods found in a DEX file
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDebugInfoEncoder.java419 LocalList.Entry found = null;
425 found = arg;
442 if (found == null) {
453 = (found == null || found.getSignature() != null)
454 ? "<unnamed>" : found.getName().toHuman();
H A DDebugInfoDecoder.java468 boolean found = false;
474 found = true;
479 if (!found) {
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoEncoder.java419 LocalList.Entry found = null;
425 found = arg;
442 if (found == null) {
453 = (found == null || found.getSignature() != null)
454 ? "<unnamed>" : found.getName().toHuman();
H A DDebugInfoDecoder.java462 boolean found = false;
468 found = true;
473 if (!found) {
/dalvik/vm/compiler/codegen/x86/libenc/
H A Ddec_base.cpp161 bool found = false; local
165 found=try_mn((Mnemonic)mn, &bytes, &tmp);
166 if (found) {
171 if (!found) {
H A Denc_base.cpp788 bool found = false;
798 found = true;
802 if (!found) {
812 found = true;
817 assert(found);
/dalvik/dx/src/com/android/dx/cf/code/
H A DBaseMachine.java150 " but found " + args[i].getType().toHuman());
162 " but found " + args[0].getType().toHuman());
175 " but found " + args[0].getType().toHuman());
180 " but found " + args[1].getType().toHuman());
194 " but found " + args[0].getType().toHuman());
199 " but found " + args[1].getType().toHuman());
204 " but found " + args[2].getType().toHuman());
566 * @param found {@code non-null;} the encountered type
569 public static void throwLocalMismatch(TypeBearer found, argument
573 found
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DLocalList.java609 * same address. If found, then update it or delete
739 * for the same register. If this case is found, then this
748 * @return {@code true} iff this method found the case in question
775 * In fact, we found that the endedLocal had started at the
784 boolean found = false;
796 found = true;
801 if (found) {
802 // We found an end for the same register.
/dalvik/dx/src/com/android/dx/dex/code/
H A DLocalList.java609 * same address. If found, then update it or delete
739 * for the same register. If this case is found, then this
748 * @return {@code true} iff this method found the case in question
775 * In fact, we found that the endedLocal had started at the
784 boolean found = false;
796 found = true;
801 if (found) {
802 // We found an end for the same register.
/dalvik/dx/etc/
H A Ddx.bat19 REM Locate dx.jar in the directory where dx.bat was found and start it.
/dalvik/vm/oo/
H A DClass.cpp740 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, nonzer
1125 void* found; local
1171 void* found; local
3645 bool found = false; local
[all...]
/dalvik/vm/compiler/
H A DFrontend.cpp395 bool found = local
400 if (found) {
401 ALOGD("Method %s (--> %s) found on the JIT %s list",
807 bool found = false; local
809 found = true;
811 found = true;
823 found = true;
828 if (found == false) {
833 ALOGE("Successor %s not found from %s",
1081 ALOGE("Catch block not found i
[all...]
/dalvik/vm/compiler/codegen/x86/
H A DAnalysisO1.cpp442 bool found = false; local
447 found = true;
452 memVRTable[indexToMemVR].nullCheckDone = found;
2299 ALOGE("reg %d type %d not found in registerAlloc", reg, newType);
2370 ALOGE("reg %d type %d not found in registerAllocMove", reg, newType);
2422 ALOGE("VR %d %d not found in infoBasicBlock of currentBB %d (num of VRs %d)",
2845 (!allRegs[regT2].isCalleeSaved)) { //skip until found one that is not callee-saved
3518 //! return -1 if not found
3529 //! return -1 if not found
4096 bool found
[all...]

Completed in 526 milliseconds