Lines Matching refs:outSize

777     int outSize;  in indexString()  local
822 outSize = snprintf(buf, bufSize, "<unknown-index>"); in indexString()
829 outSize = snprintf(buf, bufSize, "<no-index>"); in indexString()
836 outSize = snprintf(buf, bufSize, "<index-varies> // thing@%0*x", in indexString()
841 outSize = snprintf(buf, bufSize, "%s // type@%0*x", in indexString()
844 outSize = snprintf(buf, bufSize, "<type?> // type@%0*x", width, index); in indexString()
849 outSize = snprintf(buf, bufSize, "\"%s\" // string@%0*x", in indexString()
852 outSize = snprintf(buf, bufSize, "<string?> // string@%0*x", in indexString()
860 outSize = snprintf(buf, bufSize, "%s.%s:%s // method@%0*x", in indexString()
865 outSize = snprintf(buf, bufSize, "<method?> // method@%0*x", in indexString()
874 outSize = snprintf(buf, bufSize, "%s.%s:%s // field@%0*x", in indexString()
878 outSize = snprintf(buf, bufSize, "<field?> // field@%0*x", in indexString()
884 outSize = snprintf(buf, bufSize, "[%0*x] // inline #%0*x", in indexString()
888 outSize = snprintf(buf, bufSize, "[%0*x] // vtable #%0*x", in indexString()
892 outSize = snprintf(buf, bufSize, "[obj+%0*x]", width, index); in indexString()
901 outSize = snprintf(buf, bufSize, "%s.%s:%s, (%s)%s // method@%0*x, proto@%0*x", in indexString()
906 outSize = snprintf(buf, bufSize, "<method?>, <proto?> // method@%0*x, proto@%0*x", in indexString()
913 outSize = snprintf(buf, bufSize, "call_site@%0*x", width, index); in indexString()
916 outSize = snprintf(buf, bufSize, "methodhandle@%0*x", width, index); in indexString()
922 outSize = snprintf(buf, bufSize, "(%s)%s // proto@%0*x", in indexString()
927 outSize = snprintf(buf, bufSize, "<proto?> // proto@%0*x", in indexString()
934 outSize = snprintf(buf, bufSize, "<?>"); in indexString()
938 if (outSize >= (int) bufSize) { in indexString()
945 return indexString(pDexFile, pDecInsn, outSize + 1); in indexString()