Home | History | Annotate | Download | only in minidump_writer

Lines Matching defs:buf_

70         if (buf_[i] == '\n' || buf_[i] == 0) {
71 buf_[i] = 0;
73 *line = buf_;
78 if (buf_used_ == sizeof(buf_)) {
88 // There's room for the NUL because of the buf_used_ == sizeof(buf_)
90 buf_[buf_used_] = 0;
93 *line = buf_;
98 const ssize_t n = sys_read(fd_, buf_ + buf_used_,
99 sizeof(buf_) - buf_used_);
118 my_memmove(buf_, buf_ + len + 1, buf_used_);
126 char buf_[kMaxLineLen];