Searched refs:tmpBuf (Results 1 - 7 of 7) sorted by relevance

/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/
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/vm/analysis/
H A DRegisterMap.cpp1503 UniquePtr<u1[]> tmpBuf(new u1[origSize + (1 + 3 + regWidth)]);
1504 if (tmpBuf.get() == NULL)
1507 tmpPtr = tmpBuf.get();
1629 if (tmpPtr - tmpBuf.get() >= origSize) {
1632 tmpPtr - tmpBuf.get(), origSize,
1646 int newDataSize = tmpPtr - tmpBuf.get();
1668 memcpy(tmpPtr, tmpBuf.get(), newDataSize);
/dalvik/dexdump/
H A DDexDump.cpp1228 char tmpBuf[strlen(typeDescriptor)+1]; /* more than big enough */ local
1234 char* cp = tmpBuf;
1256 char* tmp = descriptorToDot(tmpBuf);
/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);

Completed in 329 milliseconds