Searched defs:tmpBuf (Results 1 - 6 of 6) sorted by relevance

/dalvik/vm/
H A DSignalCatcher.cpp83 char tmpBuf[256]; local
86 actual = read(fd, tmpBuf, sizeof(tmpBuf)-1);
90 tmpBuf[actual] = '\0';
91 dvmPrintDebugMessage(target, "Cmd line: %s\n", tmpBuf);
H A DDdm.cpp377 u1 tmpBuf[bufLen]; local
378 u1* buf = tmpBuf;
417 memcpy(arrayObj->contents, tmpBuf, bufLen);
/dalvik/libdex/
H A DDexFile.cpp115 * Format an SHA-1 digest for printing. tmpBuf must be able to hold at
118 const char* dvmSHA1DigestToStr(const unsigned char digest[], char* tmpBuf);
136 static const char* dexSHA1DigestToStr(const unsigned char digest[],char* tmpBuf) argument
142 cp = tmpBuf;
149 assert(cp == tmpBuf + kSHA1DigestOutputLen);
151 return tmpBuf;
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DDexData.java36 private byte tmpBuf[] = new byte[4]; field in class:DexData
447 mDexFile.readFully(tmpBuf, 0, 1);
448 return tmpBuf[0];
455 mDexFile.readFully(tmpBuf, 0, 2);
457 return (short) ((tmpBuf[1] & 0xff) | ((tmpBuf[0] & 0xff) << 8));
459 return (short) ((tmpBuf[0] & 0xff) | ((tmpBuf[1] & 0xff) << 8));
467 mDexFile.readFully(tmpBuf, 0, 4);
470 return (tmpBuf[
[all...]
/dalvik/vm/jdwp/
H A DJdwpHandler.cpp187 char tmpBuf[128]; local
190 sprintf(tmpBuf, "Android DalvikVM %d.%d.%d",
192 expandBufAddUtf8String(pReply, (const u1*) tmpBuf);
/dalvik/dexdump/
H A DDexDump.cpp1237 char tmpBuf[strlen(typeDescriptor)+1]; /* more than big enough */ local
1243 char* cp = tmpBuf;
1265 char* tmp = descriptorToDot(tmpBuf);

Completed in 236 milliseconds