Searched refs:bufSize (Results 1 – 2 of 2) sorted by relevance
/dalvik/dexdump/ |
D | DexDump.cpp | 709 const DecodedInstruction* pDecInsn, char* buf, size_t bufSize) in indexString() argument 749 outSize = snprintf(buf, bufSize, "<unknown-index>"); in indexString() 756 outSize = snprintf(buf, bufSize, "<no-index>"); in indexString() 763 outSize = snprintf(buf, bufSize, "<index-varies> // thing@%0*x", in indexString() 767 outSize = snprintf(buf, bufSize, "%s // type@%0*x", in indexString() 771 outSize = snprintf(buf, bufSize, "\"%s\" // string@%0*x", in indexString() 778 outSize = snprintf(buf, bufSize, "%s.%s:%s // method@%0*x", in indexString() 782 outSize = snprintf(buf, bufSize, "<method?> // method@%0*x", in indexString() 791 outSize = snprintf(buf, bufSize, "%s.%s:%s // field@%0*x", in indexString() 795 outSize = snprintf(buf, bufSize, "<field?> // field@%0*x", in indexString() [all …]
|
/dalvik/vm/analysis/ |
D | RegisterMap.cpp | 197 int bufSize; in dvmGenerateRegisterMapV() local 242 bufSize = kHeaderSize + gcPointCount * (bytesForAddr + regWidth); in dvmGenerateRegisterMapV() 246 bytesForAddr, gcPointCount, regWidth, bufSize); in dvmGenerateRegisterMapV() 248 pMap = (RegisterMap*) malloc(bufSize); in dvmGenerateRegisterMapV() 273 ALOGV("mapData=%p pMap=%p bufSize=%d", mapData, pMap, bufSize); in dvmGenerateRegisterMapV() 274 assert(mapData - (const u1*) pMap == bufSize); in dvmGenerateRegisterMapV()
|