Searched refs:kMaxLineLength (Results 1 - 4 of 4) sorted by relevance

/external/webrtc/webrtc/system_wrappers/source/
H A Ddata_log_unittest.cc50 char line_buffer[kMaxLineLength];
51 char* ret = fgets(line_buffer, kMaxLineLength, log_file);
56 std::string line(line_buffer, kMaxLineLength);
58 while (fgets(line_buffer, kMaxLineLength, log_file) != NULL) {
59 line = std::string(line_buffer, kMaxLineLength);
113 enum { kMaxLineLength = 100 }; enumerator in enum:DataLogParser::__anon24925
/external/skia/tools/
H A Dcreate_test_font.cpp83 kMaxLineLength = 80, enumerator in enum:__anon17333
98 *out += (int) last_line_length(*out) >= kMaxLineLength ? '\n' : ' ';
117 *out += (int) last_line_length(*out) >= kMaxLineLength ? '\n' : ' ';
249 if (outChCount >= kMaxLineLength) {
269 if (outChCount >= kMaxLineLength) {
/external/webrtc/webrtc/base/
H A Dproxydetect.cc58 static const size_t kMaxLineLength = 1024; variable
513 if ((line.length() == 0) || (line.length() > kMaxLineLength)
519 char buffer[kMaxLineLength];
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_framework.cc590 const size_t kMaxLineLength = 100; local
591 char line[kMaxLineLength];
592 if (fgets(line, kMaxLineLength, trace_file)) {

Completed in 400 milliseconds