Searched refs:bufSize (Results 1 – 1 of 1) sorted by relevance
/art/dexdump/ |
D | dexdump.cc | 860 size_t bufSize) { in indexString() argument 861 std::unique_ptr<char[]> buf(new char[bufSize]); in indexString() 904 outSize = snprintf(buf.get(), bufSize, "<unknown-index>"); in indexString() 909 outSize = snprintf(buf.get(), bufSize, "<no-index>"); in indexString() 914 outSize = snprintf(buf.get(), bufSize, "%s // type@%0*x", tp, width, index); in indexString() 916 outSize = snprintf(buf.get(), bufSize, "<type?> // type@%0*x", width, index); in indexString() 925 snprintf(buf.get(), bufSize, "\"%s\" // string@%0*x", escaped.c_str(), width, index); in indexString() 927 outSize = snprintf(buf.get(), bufSize, "\"%s\" // string@%0*x", st, width, index); in indexString() 930 outSize = snprintf(buf.get(), bufSize, "<string?> // string@%0*x", width, index); in indexString() 939 outSize = snprintf(buf.get(), bufSize, "%s.%s:%s // method@%0*x", in indexString() [all …]
|