Home
last modified time | relevance | path

Searched refs:buf_size (Results 1 – 6 of 6) sorted by relevance

/art/libartbase/base/
Dlogging.cc107 size_t buf_size = 0u; in LogLineLowStack() local
111 buf_size = strlen(file) + 1 /* ':' */ + std::numeric_limits<decltype(line)>::max_digits10 + in LogLineLowStack()
113 buf = reinterpret_cast<char*>(malloc(buf_size)); in LogLineLowStack()
116 snprintf(buf, buf_size, "%s:%u] %s", file, line, message); in LogLineLowStack()
/art/libartbase/base/unix_file/
Drandom_access_file_test.h84 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/dexlayout/
Ddexlayout.cc368 size_t buf_size) { in IndexString() argument
369 std::unique_ptr<char[]> buf(new char[buf_size]); in IndexString()
412 outSize = snprintf(buf.get(), buf_size, "<unknown-index>"); in IndexString()
417 outSize = snprintf(buf.get(), buf_size, "<no-index>"); in IndexString()
422 outSize = snprintf(buf.get(), buf_size, "%s // type@%0*x", tp, width, index); in IndexString()
424 outSize = snprintf(buf.get(), buf_size, "<type?> // type@%0*x", width, index); in IndexString()
430 outSize = snprintf(buf.get(), buf_size, "\"%s\" // string@%0*x", st, width, index); in IndexString()
432 outSize = snprintf(buf.get(), buf_size, "<string?> // string@%0*x", width, index); in IndexString()
441 outSize = snprintf(buf.get(), buf_size, "%s.%s:%s // method@%0*x", in IndexString()
444 outSize = snprintf(buf.get(), buf_size, "<method?> // method@%0*x", width, index); in IndexString()
[all …]
/art/runtime/
Dtrace.cc647 void Trace::DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) { in DumpBuf() argument
649 uint8_t* end = buf + buf_size; in DumpBuf()
1018 void Trace::GetVisitedMethods(size_t buf_size, in GetVisitedMethods() argument
1021 uint8_t* end = buf_.get() + buf_size; in GetVisitedMethods()
Dtrace.h267 void DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source)
/art/compiler/utils/mips64/
Dassembler_mips64.cc3084 size_t buf_size = buffer_.Size(); in PromoteBranches() local
3086 CHECK_EQ(first_literal_location + lit_size, buf_size); in PromoteBranches()
3090 buffer_.Resize(buf_size - sizeof(uint32_t)); in PromoteBranches()