Lines Matching defs:outSize
714 int outSize;
752 outSize = snprintf(buf, bufSize, "<unknown-index>");
759 outSize = snprintf(buf, bufSize, "<no-index>");
766 outSize = snprintf(buf, bufSize, "<index-varies> // thing@%0*x",
771 outSize = snprintf(buf, bufSize, "%s // type@%0*x",
774 outSize = snprintf(buf, bufSize, "<type?> // type@%0*x", width, index);
779 outSize = snprintf(buf, bufSize, "\"%s\" // string@%0*x",
782 outSize = snprintf(buf, bufSize, "<string?> // string@%0*x",
790 outSize = snprintf(buf, bufSize, "%s.%s:%s // method@%0*x",
795 outSize = snprintf(buf, bufSize, "<method?> // method@%0*x",
804 outSize = snprintf(buf, bufSize, "%s.%s:%s // field@%0*x",
808 outSize = snprintf(buf, bufSize, "<field?> // field@%0*x",
814 outSize = snprintf(buf, bufSize, "[%0*x] // inline #%0*x",
818 outSize = snprintf(buf, bufSize, "[%0*x] // vtable #%0*x",
822 outSize = snprintf(buf, bufSize, "[obj+%0*x]", width, index);
825 outSize = snprintf(buf, bufSize, "<?>");
829 if (outSize >= (int) bufSize) {
835 outSize++;
836 buf = (char*)malloc(outSize);
840 return indexString(pDexFile, pDecInsn, buf, outSize);