Searched refs:kBufSize (Results 1 – 3 of 3) sorted by relevance
151 constexpr size_t kBufSize = 256; // Small buffer. Avoid stack overflow and stack size warnings. in PrintFileToLog() local152 char buf[kBufSize + 1]; // +1 for terminator. in PrintFileToLog()155 DCHECK_LT(filled_to, kBufSize); in PrintFileToLog()156 int64_t n = TEMP_FAILURE_RETRY(read(file.Fd(), &buf[filled_to], kBufSize - filled_to)); in PrintFileToLog()189 if (filled_to == kBufSize) { in PrintFileToLog()190 buf[kBufSize] = 0; in PrintFileToLog()
55 const size_t kBufSize = 32768; in TEST_F() local56 uint8_t buf[kBufSize]; in TEST_F()58 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buf, kBufSize)); in TEST_F()
302 constexpr int kBufSize = 8192; in ComputeFileBuildId() local303 std::vector<char> buffer(kBufSize); in ComputeFileBuildId()308 int64_t bytes_read = elf_file_->Read(buffer.data(), kBufSize, offset); in ComputeFileBuildId()