Searched refs:buf_size (Results 1 – 5 of 5) sorted by relevance
/art/libartbase/base/unix_file/ |
D | random_access_file_test.h | 84 const int buf_size = content.size() + 10; in TestReadContent() local 85 std::unique_ptr<char[]> buf(new char[buf_size]); in TestReadContent() 90 ASSERT_EQ(content.size(), static_cast<uint64_t>(file->Read(buf.get(), buf_size, 0))); in TestReadContent() 109 ASSERT_EQ(0, file->Read(buf.get(), buf_size, file->GetLength())); in TestReadContent() 110 ASSERT_EQ(0, file->Read(buf.get(), buf_size, file->GetLength() + 1)); in TestReadContent()
|
/art/libartbase/base/ |
D | logging.cc | 134 size_t buf_size = 0u; in LogLineLowStack() local 138 buf_size = strlen(file) + 1 /* ':' */ + std::numeric_limits<decltype(line)>::max_digits10 + in LogLineLowStack() 140 buf = reinterpret_cast<char*>(malloc(buf_size)); in LogLineLowStack() 143 snprintf(buf, buf_size, "%s:%u] %s", file, line, message); in LogLineLowStack()
|
/art/dexlayout/ |
D | dexlayout.cc | 355 size_t buf_size) { in IndexString() argument 356 std::unique_ptr<char[]> buf(new char[buf_size]); in IndexString() 399 outSize = snprintf(buf.get(), buf_size, "<unknown-index>"); in IndexString() 404 outSize = snprintf(buf.get(), buf_size, "<no-index>"); in IndexString() 409 outSize = snprintf(buf.get(), buf_size, "%s // type@%0*x", tp, width, index); in IndexString() 411 outSize = snprintf(buf.get(), buf_size, "<type?> // type@%0*x", width, index); in IndexString() 417 outSize = snprintf(buf.get(), buf_size, "\"%s\" // string@%0*x", st, width, index); in IndexString() 419 outSize = snprintf(buf.get(), buf_size, "<string?> // string@%0*x", width, index); in IndexString() 428 outSize = snprintf(buf.get(), buf_size, "%s.%s:%s // method@%0*x", in IndexString() 431 outSize = snprintf(buf.get(), buf_size, "<method?> // method@%0*x", width, index); in IndexString() [all …]
|
/art/runtime/ |
D | trace.cc | 602 void Trace::DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) { in DumpBuf() argument 604 uint8_t* end = buf + buf_size; in DumpBuf() 989 void Trace::GetVisitedMethods(size_t buf_size, in GetVisitedMethods() argument 992 uint8_t* end = buf_.get() + buf_size; in GetVisitedMethods()
|
D | trace.h | 299 void DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source)
|