Home | History | Annotate | Download | only in dexdump

Lines Matching refs:outSize

711     int outSize;
749 outSize = snprintf(buf, bufSize, "<unknown-index>");
756 outSize = snprintf(buf, bufSize, "<no-index>");
763 outSize = snprintf(buf, bufSize, "<index-varies> // thing@%0*x",
768 outSize = snprintf(buf, bufSize, "%s // type@%0*x",
771 outSize = snprintf(buf, bufSize, "<type?> // type@%0*x", width, index);
776 outSize = snprintf(buf, bufSize, "\"%s\" // string@%0*x",
779 outSize = snprintf(buf, bufSize, "<string?> // string@%0*x",
787 outSize = snprintf(buf, bufSize, "%s.%s:%s // method@%0*x",
792 outSize = snprintf(buf, bufSize, "<method?> // method@%0*x",
801 outSize = snprintf(buf, bufSize, "%s.%s:%s // field@%0*x",
805 outSize = snprintf(buf, bufSize, "<field?> // field@%0*x",
811 outSize = snprintf(buf, bufSize, "[%0*x] // inline #%0*x",
815 outSize = snprintf(buf, bufSize, "[%0*x] // vtable #%0*x",
819 outSize = snprintf(buf, bufSize, "[obj+%0*x]", width, index);
822 outSize = snprintf(buf, bufSize, "<?>");
826 if (outSize >= (int) bufSize) {
832 outSize++;
833 buf = (char*)malloc(outSize);
837 return indexString(pDexFile, pDecInsn, buf, outSize);