Home | History | Annotate | Download | only in dexdump

Lines Matching defs:outSize

530   size_t outSize = 0;
535 outSize = snprintf(buf, bufSize, "<unknown-index>");
540 outSize = snprintf(buf, bufSize, "<no-index>");
545 outSize = snprintf(buf, bufSize, "%s // type@%0*x", tp, width, index);
547 outSize = snprintf(buf, bufSize, "<type?> // type@%0*x", width, index);
553 outSize = snprintf(buf, bufSize, "\"%s\" // string@%0*x", st, width, index);
555 outSize = snprintf(buf, bufSize, "<string?> // string@%0*x", width, index);
564 outSize = snprintf(buf, bufSize, "%s.%s:%s // method@%0*x",
567 outSize = snprintf(buf, bufSize, "<method?> // method@%0*x", width, index);
576 outSize = snprintf(buf, bufSize, "%s.%s:%s // field@%0*x",
579 outSize = snprintf(buf, bufSize, "<field?> // field@%0*x", width, index);
583 outSize = snprintf(buf, bufSize, "[%0*x] // vtable #%0*x",
587 outSize = snprintf(buf, bufSize, "[obj+%0*x]", width, index);
593 outSize = snprintf(buf, bufSize, "<?>");
598 if (outSize >= bufSize) {
602 outSize++;
603 buf = reinterpret_cast<char*>(malloc(outSize));
607 return indexString(pDexFile, pDecInsn, buf, outSize);