OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMaxLineLength
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/src/system_wrappers/source/
data_log_unittest.cc
49
char line_buffer[
kMaxLineLength
];
50
char* ret = fgets(line_buffer,
kMaxLineLength
, log_file);
55
std::string line(line_buffer,
kMaxLineLength
);
57
while (fgets(line_buffer,
kMaxLineLength
, log_file) != NULL) {
58
line = std::string(line_buffer,
kMaxLineLength
);
112
enum {
kMaxLineLength
= 100 };
/external/chromium/third_party/libjingle/source/talk/base/
proxydetect.cc
69
static const size_t
kMaxLineLength
= 1024;
522
if ((line.length() == 0) || (line.length() >
kMaxLineLength
)
528
char buffer[
kMaxLineLength
];
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/base/
proxydetect.cc
69
static const size_t
kMaxLineLength
= 1024;
524
if ((line.length() == 0) || (line.length() >
kMaxLineLength
)
530
char buffer[
kMaxLineLength
];
[
all
...]
Completed in 278 milliseconds