HomeSort by relevance Sort by last modified time
    Searched refs:line_len (Results 1 - 25 of 32) sorted by null

1 2

  /external/wpa_supplicant_8/src/utils/
base64.c 35 int line_len; local
49 line_len = 0;
56 line_len += 4;
57 if (line_len >= 72) {
59 line_len = 0;
74 line_len += 4;
77 if (line_len)
wpa_debug.c 395 const size_t line_len = 16; local
439 llen = len > line_len ? line_len : len;
443 for (i = llen; i < line_len; i++)
452 for (i = llen; i < line_len; i++)
472 llen = len > line_len ? line_len : len;
476 for (i = llen; i < line_len; i++)
485 for (i = llen; i < line_len; i++)
  /system/core/logwrapper/
logwrap.c 105 char *line, ssize_t line_len)
109 if ((line_len + b_buf->used_len) > b_buf->buf_size) {
113 memcpy(b_buf->buf + b_buf->used_len, line, line_len);
114 b_buf->used_len += line_len;
121 char *line, ssize_t line_len)
131 if (line_len > e_buf->buf_size) {
137 if (line_len > free_len) {
140 needed_space = line_len - free_len;
148 cnt = MIN(line_len, e_buf->buf_size - e_buf->write);
150 if (cnt < line_len) {
    [all...]
  /external/lldb/tools/driver/
IOChannel.cpp 338 int line_len = 0; local
346 const char *line = ::el_gets (m_edit_line, &line_len);
355 while (line_len > 0 && (line[line_len - 1] == '\n' || line[line_len - 1] == '\r'))
356 --line_len;
357 if (line_len > 0)
360 new_line.assign (line, line_len); // Omit the newline
373 retval = (line_len == 0 ? IOChannel::eLibeditGetInputEOF : IOChannel::eLibeditGetInputResultError);
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
tst-pcre.c 39 size_t line_len = 0; local
66 if ((len = getline (&line, &line_len, f)) <= 0
77 while ((len = getline (&line, &line_len, f)) > 0)
tst-boost.c 82 size_t line_len = 0; local
108 while ((len = getline (&line, &line_len, f)) > 0)
tst-rxspencer.c 409 size_t line_len = 0; local
438 while ((len = getline (&line, &line_len, f)) > 0)
  /external/chromium_org/third_party/libjingle/overrides/talk/base/
logging.cc 190 size_t line_len = _min(len, LINE_SIZE); local
191 for (size_t i = 0; i < line_len; ++i) {
201 udata += line_len;
202 len -= line_len;
  /external/chromium_org/third_party/webrtc/overrides/webrtc/base/
logging.cc 196 size_t line_len = _min(len, LINE_SIZE); local
197 for (size_t i = 0; i < line_len; ++i) {
207 udata += line_len;
208 len -= line_len;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
code-reading.c 37 static void read_objdump_line(const char *line, size_t line_len, void **buf,
54 for (; i < line_len; i++) {
59 if (i >= line_len || !isxdigit(line[i]))
62 if (i >= line_len || !isxdigit(line[i]))
66 if (i < line_len && line[i] && !isspace(line[i]))
78 size_t line_len; local
83 ret = getline(&line, &line_len, f);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
symbol.c 462 int line_len, len; local
466 line_len = getline(&line, &n, file);
467 if (line_len < 0 || !line)
470 line[--line_len] = '\0'; /* \n */
475 if (len + 2 >= line_len)
481 len = line_len - len;
935 int line_len, len; local
937 line_len = getline(&line, &n, file);
938 if (line_len < 0)
944 line[--line_len] = '\0'; /* \n *
    [all...]
annotate.c 769 size_t line_len; local
772 if (getline(&line, &line_len, file) < 0)
778 while (line_len != 0 && isspace(line[line_len - 1]))
779 line[--line_len] = '\0';
1119 size_t line_len; local
1143 if (getline(&path, &line_len, fp) < 0 || !line_len)
1146 src_line->path = malloc(sizeof(char) * line_len + 1);
    [all...]
machine.c 806 int line_len; local
808 line_len = getline(&line, &n, file);
809 if (line_len < 0)
815 line[--line_len] = '\0'; /* \n */
    [all...]
sort.c 255 size_t line_len; local
272 if (getline(&path, &line_len, fp) < 0 || !line_len)
  /external/chromium_org/third_party/libjingle/source/talk/base/
logging.cc 544 size_t line_len = _min(len, LINE_SIZE); local
545 for (size_t i = 0; i < line_len; ++i) {
555 udata += line_len;
556 len -= line_len;
  /external/chromium_org/third_party/webrtc/base/
logging.cc 527 size_t line_len = _min(len, LINE_SIZE); local
528 for (size_t i = 0; i < line_len; ++i) {
538 udata += line_len;
539 len -= line_len;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
tty_node.cc 129 size_t line_len = static_cast<size_t>(nl - input_buffer_.begin()) + 1; local
130 bytes_to_copy = std::min(bytes_to_copy, line_len);
  /external/lldb/examples/python/
symbolication.py 485 line_len = len(lines[-1])
486 if line_len < comment_column:
487 lines[-1] += ' ' * (comment_column - line_len)
  /external/chromium_org/third_party/skia/platform_tools/android/third_party/cpufeatures/
cpu-features.c 344 cpulist_parse(CpuList* list, const char* line, int line_len)
347 const char* end = p + line_len;
  /external/skia/platform_tools/android/third_party/cpufeatures/
cpu-features.c 344 cpulist_parse(CpuList* list, const char* line, int line_len)
347 const char* end = p + line_len;
  /ndk/sources/host-tools/sed-4.2.1/sed/
execute.c 1069 static void do_list P_((int line_len));
1071 do_list(line_len)
1072 int line_len;
1118 if (width+olen >= line_len && line_len > 0) {
    [all...]
  /external/ltrace/sysdeps/linux-gnu/
proc.c 98 size_t line_len = 0; local
100 if (getline(&line, &line_len, file) < 0)
  /ndk/sources/android/cpufeatures/
cpu-features.c 364 cpulist_parse(CpuList* list, const char* line, int line_len)
367 const char* end = p + line_len;
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
annotate.c 926 size_t line_len = strlen(pos->line); local
928 if (browser.b.width < line_len)
929 browser.b.width = line_len;
  /external/chromium_org/third_party/lcov/bin/
genhtml     [all...]

Completed in 777 milliseconds

1 2