Home
last modified time | relevance | path

Searched refs:BUF_SIZE (Results 1 – 2 of 2) sorted by relevance

/art/libartbase/base/
Dutils.cc392 static constexpr int BUF_SIZE = 90; in GetOsThreadStatQuick() local
393 char buf[BUF_SIZE]; in GetOsThreadStatQuick()
395 if (GetOsThreadStat(tid, buf, BUF_SIZE) == 0) { in GetOsThreadStatQuick()
396 snprintf(buf, BUF_SIZE, "Unknown state: %d", tid); in GetOsThreadStatQuick()
/art/runtime/
Druntime.cc771 static constexpr size_t BUF_SIZE = 500; in WaitUntilSingleThreaded() local
773 static_assert(BUF_SIZE > BUF_PRINT_SIZE); in WaitUntilSingleThreaded()
774 char buf[BUF_SIZE]; in WaitUntilSingleThreaded()
778 bytes_read = GetOsThreadStat(getpid(), buf, BUF_SIZE); in WaitUntilSingleThreaded()