Lines Matching refs:outSize

838   size_t outSize = 0;  in indexString()  local
843 outSize = snprintf(buf.get(), bufSize, "<unknown-index>"); in indexString()
848 outSize = snprintf(buf.get(), bufSize, "<no-index>"); in indexString()
853 outSize = snprintf(buf.get(), bufSize, "%s // type@%0*x", tp, width, index); in indexString()
855 outSize = snprintf(buf.get(), bufSize, "<type?> // type@%0*x", width, index); in indexString()
861 outSize = snprintf(buf.get(), bufSize, "\"%s\" // string@%0*x", st, width, index); in indexString()
863 outSize = snprintf(buf.get(), bufSize, "<string?> // string@%0*x", width, index); in indexString()
872 outSize = snprintf(buf.get(), bufSize, "%s.%s:%s // method@%0*x", in indexString()
875 outSize = snprintf(buf.get(), bufSize, "<method?> // method@%0*x", width, index); in indexString()
884 outSize = snprintf(buf.get(), bufSize, "%s.%s:%s // field@%0*x", in indexString()
887 outSize = snprintf(buf.get(), bufSize, "<field?> // field@%0*x", width, index); in indexString()
891 outSize = snprintf(buf.get(), bufSize, "[%0*x] // vtable #%0*x", in indexString()
895 outSize = snprintf(buf.get(), bufSize, "[obj+%0*x]", width, index); in indexString()
915 outSize = snprintf(buf.get(), bufSize, "%s, %s // method@%0*x, proto@%0*x", in indexString()
921 outSize = snprintf(buf.get(), bufSize, "call_site@%0*x", width, index); in indexString()
925 outSize = snprintf(buf.get(), bufSize, "method_handle@%0*x", width, index); in indexString()
932 outSize = snprintf(buf.get(), bufSize, "%s // proto@%0*x", proto.c_str(), width, index); in indexString()
934 outSize = snprintf(buf.get(), bufSize, "<?> // proto@%0*x", width, index); in indexString()
939 if (outSize == 0) { in indexString()
941 outSize = snprintf(buf.get(), bufSize, "<?>"); in indexString()
945 if (outSize >= bufSize) { in indexString()
949 return indexString(pDexFile, pDecInsn, outSize + 1); in indexString()