Searched refs:tmpBuf (Results 1 – 7 of 7) sorted by relevance
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
D | DexData.java | 36 private byte tmpBuf[] = new byte[4]; field in DexData 447 mDexFile.readFully(tmpBuf, 0, 1); in readByte() 448 return tmpBuf[0]; in readByte() 455 mDexFile.readFully(tmpBuf, 0, 2); in readShort() 457 return (short) ((tmpBuf[1] & 0xff) | ((tmpBuf[0] & 0xff) << 8)); in readShort() 459 return (short) ((tmpBuf[0] & 0xff) | ((tmpBuf[1] & 0xff) << 8)); in readShort() 467 mDexFile.readFully(tmpBuf, 0, 4); in readInt() 470 return (tmpBuf[3] & 0xff) | ((tmpBuf[2] & 0xff) << 8) | in readInt() 471 ((tmpBuf[1] & 0xff) << 16) | ((tmpBuf[0] & 0xff) << 24); in readInt() 473 return (tmpBuf[0] & 0xff) | ((tmpBuf[1] & 0xff) << 8) | in readInt() [all …]
|
/dalvik/vm/ |
D | SignalCatcher.cpp | 83 char tmpBuf[256]; in printProcessName() local 86 actual = read(fd, tmpBuf, sizeof(tmpBuf)-1); in printProcessName() 90 tmpBuf[actual] = '\0'; in printProcessName() 91 dvmPrintDebugMessage(target, "Cmd line: %s\n", tmpBuf); in printProcessName()
|
D | Ddm.cpp | 377 u1 tmpBuf[bufLen]; in dvmDdmGenerateThreadStats() local 378 u1* buf = tmpBuf; in dvmDdmGenerateThreadStats() 417 memcpy(arrayObj->contents, tmpBuf, bufLen); in dvmDdmGenerateThreadStats()
|
/dalvik/libdex/ |
D | DexFile.cpp | 118 const char* dvmSHA1DigestToStr(const unsigned char digest[], char* tmpBuf); 136 static const char* dexSHA1DigestToStr(const unsigned char digest[],char* tmpBuf) in dexSHA1DigestToStr() argument 142 cp = tmpBuf; in dexSHA1DigestToStr() 149 assert(cp == tmpBuf + kSHA1DigestOutputLen); in dexSHA1DigestToStr() 151 return tmpBuf; in dexSHA1DigestToStr()
|
/dalvik/vm/analysis/ |
D | RegisterMap.cpp | 1503 UniquePtr<u1[]> tmpBuf(new u1[origSize + (1 + 3 + regWidth)]); in compressMapDifferential() local 1504 if (tmpBuf.get() == NULL) in compressMapDifferential() 1507 tmpPtr = tmpBuf.get(); in compressMapDifferential() 1629 if (tmpPtr - tmpBuf.get() >= origSize) { in compressMapDifferential() 1632 tmpPtr - tmpBuf.get(), origSize, in compressMapDifferential() 1646 int newDataSize = tmpPtr - tmpBuf.get(); in compressMapDifferential() 1668 memcpy(tmpPtr, tmpBuf.get(), newDataSize); in compressMapDifferential()
|
/dalvik/dexdump/ |
D | DexDump.cpp | 1239 char tmpBuf[strlen(typeDescriptor)+1]; /* more than big enough */ in dumpMethod() local 1245 char* cp = tmpBuf; in dumpMethod() 1267 char* tmp = descriptorToDot(tmpBuf); in dumpMethod()
|
/dalvik/vm/jdwp/ |
D | JdwpHandler.cpp | 187 char tmpBuf[128]; in handleVM_Version() local 190 sprintf(tmpBuf, "Android DalvikVM %d.%d.%d", in handleVM_Version() 192 expandBufAddUtf8String(pReply, (const u1*) tmpBuf); in handleVM_Version()
|