Searched refs:tmpBuf (Results 1 – 3 of 3) sorted by relevance
37 private byte tmpBuf[] = new byte[4]; field in DexData450 mDexFile.readFully(tmpBuf, 0, 1); in readByte()451 return tmpBuf[0]; in readByte()458 mDexFile.readFully(tmpBuf, 0, 2); in readShort()460 return (short) ((tmpBuf[1] & 0xff) | ((tmpBuf[0] & 0xff) << 8)); in readShort()462 return (short) ((tmpBuf[0] & 0xff) | ((tmpBuf[1] & 0xff) << 8)); in readShort()470 mDexFile.readFully(tmpBuf, 0, 4); in readInt()473 return (tmpBuf[3] & 0xff) | ((tmpBuf[2] & 0xff) << 8) | in readInt()474 ((tmpBuf[1] & 0xff) << 16) | ((tmpBuf[0] & 0xff) << 24); in readInt()476 return (tmpBuf[0] & 0xff) | ((tmpBuf[1] & 0xff) << 8) | in readInt()[all …]
117 const char* dvmSHA1DigestToStr(const unsigned char digest[], char* tmpBuf);135 static const char* dexSHA1DigestToStr(const unsigned char digest[],char* tmpBuf) in dexSHA1DigestToStr() argument141 cp = tmpBuf; in dexSHA1DigestToStr()148 assert(cp == tmpBuf + kSHA1DigestOutputLen); in dexSHA1DigestToStr()150 return tmpBuf; in dexSHA1DigestToStr()
1371 char tmpBuf[strlen(typeDescriptor)+1]; /* more than big enough */ in dumpMethod() local1377 char* cp = tmpBuf; in dumpMethod()1399 char* tmp = descriptorToDot(tmpBuf); in dumpMethod()