Searched refs:tmpBuf (Results 1 – 3 of 3) sorted by relevance
36 private byte tmpBuf[] = new byte[4]; field in DexData447 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 …]
118 const char* dvmSHA1DigestToStr(const unsigned char digest[], char* tmpBuf);136 static const char* dexSHA1DigestToStr(const unsigned char digest[],char* tmpBuf) in dexSHA1DigestToStr() argument142 cp = tmpBuf; in dexSHA1DigestToStr()149 assert(cp == tmpBuf + kSHA1DigestOutputLen); in dexSHA1DigestToStr()151 return tmpBuf; in dexSHA1DigestToStr()
1242 char tmpBuf[strlen(typeDescriptor)+1]; /* more than big enough */ in dumpMethod() local1248 char* cp = tmpBuf; in dumpMethod()1270 char* tmp = descriptorToDot(tmpBuf); in dumpMethod()