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

/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DDexData.java36 private byte tmpBuf[] = new byte[4]; field in class:DexData
440 mDexFile.readFully(tmpBuf, 0, 1);
441 return tmpBuf[0];
448 mDexFile.readFully(tmpBuf, 0, 2);
450 return (short) ((tmpBuf[1] & 0xff) | ((tmpBuf[0] & 0xff) << 8));
452 return (short) ((tmpBuf[0] & 0xff) | ((tmpBuf[1] & 0xff) << 8));
460 mDexFile.readFully(tmpBuf, 0, 4);
463 return (tmpBuf[
[all...]
/dalvik/vm/
H A DSignalCatcher.c83 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 DProperties.c180 char tmpBuf[64]; local
181 sprintf(tmpBuf, "%d.%d.%d",
183 setProperty(propObj, put, "java.vm.version", tmpBuf);
H A DDdm.c491 u1 tmpBuf[bufLen]; local
492 u1* buf = tmpBuf;
529 memcpy(arrayObj->contents, tmpBuf, bufLen);
/dalvik/vm/analysis/
H A DRegisterMap.c1447 u1* tmpBuf = NULL; local
1504 tmpBuf = (u1*) malloc(origSize + (1 + 3 + regWidth));
1505 if (tmpBuf == NULL)
1508 tmpPtr = tmpBuf;
1631 if (tmpPtr - tmpBuf >= origSize) {
1634 tmpPtr - tmpBuf, origSize,
1648 int newDataSize = tmpPtr - tmpBuf;
1670 memcpy(tmpPtr, tmpBuf, newDataSize);
1679 free(tmpBuf);
/dalvik/libdex/
H A DDexFile.c297 * Format an SHA-1 digest for printing. tmpBuf must be able to hold at
300 const char* dvmSHA1DigestToStr(const unsigned char digest[], char* tmpBuf);
318 static const char* dexSHA1DigestToStr(const unsigned char digest[],char* tmpBuf) argument
324 cp = tmpBuf;
331 assert(cp == tmpBuf + kSHA1DigestOutputLen);
333 return tmpBuf;
/dalvik/dexdump/
H A DDexDump.c1105 char tmpBuf[strlen(typeDescriptor)+1]; /* more than big enough */ local
1111 char* cp = tmpBuf;
1133 char* tmp = descriptorToDot(tmpBuf);
/dalvik/vm/jdwp/
H A DJdwpHandler.c214 char tmpBuf[128]; local
217 sprintf(tmpBuf, "Android DalvikVM %d.%d.%d",
219 expandBufAddUtf8String(pReply, (const u1*) tmpBuf);

Completed in 7184 milliseconds