Searched refs:tmpBuf (Results 1 – 3 of 3) sorted by relevance
37 private byte tmpBuf[] = new byte[4]; field in DexData449 mDexFile.readFully(tmpBuf, 0, 1); in readByte()450 return tmpBuf[0]; in readByte()457 mDexFile.readFully(tmpBuf, 0, 2); in readShort()459 return (short) ((tmpBuf[1] & 0xff) | ((tmpBuf[0] & 0xff) << 8)); in readShort()461 return (short) ((tmpBuf[0] & 0xff) | ((tmpBuf[1] & 0xff) << 8)); in readShort()469 mDexFile.readFully(tmpBuf, 0, 4); in readInt()472 return (tmpBuf[3] & 0xff) | ((tmpBuf[2] & 0xff) << 8) | in readInt()473 ((tmpBuf[1] & 0xff) << 16) | ((tmpBuf[0] & 0xff) << 24); in readInt()475 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()
1359 char tmpBuf[strlen(typeDescriptor)+1]; /* more than big enough */ in dumpMethod() local1365 char* cp = tmpBuf; in dumpMethod()1387 char* tmp = descriptorToDot(tmpBuf); in dumpMethod()