HomeSort by relevance Sort by last modified time
    Searched full:space_left (Results 1 - 13 of 13) sorted by null

  /external/tcpdump/
addrtostr.c 110 size_t space_left, added_space; local
153 space_left = size;
156 if (space_left == 0) { \
161 space_left--; \
184 if (!addrtostr(srcaddr+12, dp, space_left))
191 space_left -= added_space;
194 snprintfed = snprintf (dp, space_left, "%x", words[i]);
197 if ((size_t) snprintfed >= space_left)
203 space_left -= snprintfed;
util-print.c 526 size_t space_left = sizeof(buf), string_size; local
541 if (space_left <= 1)
543 string_size = strlcpy(bufp, sepstr, space_left);
544 if (string_size >= space_left)
547 space_left -= string_size;
548 if (space_left <= 1)
550 string_size = strlcpy(bufp, lp->s, space_left);
551 if (string_size >= space_left)
554 space_left -= string_size;
  /external/google-breakpad/src/client/solaris/handler/
minidump_generator.cc 347 size_t space_left = sizeof(os_version); local
348 memset(os_version, 0, space_left);
360 if (cur_os_info != os_info_table && space_left > 1) {
362 --space_left;
364 if (space_left > strlen(*cur_os_info)) {
366 space_left -= strlen(*cur_os_info);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
textwrap.py 221 space_left = 1
223 space_left = width - cur_len
228 cur_line.append(reversed_chunks[-1][:space_left])
229 reversed_chunks[-1] = reversed_chunks[-1][space_left:]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
textwrap.py 213 space_left = 1
215 space_left = width - cur_len
220 cur_line.append(reversed_chunks[-1][:space_left])
221 reversed_chunks[-1] = reversed_chunks[-1][space_left:]
  /external/python/cpython2/Lib/
textwrap.py 221 space_left = 1
223 space_left = width - cur_len
228 cur_line.append(reversed_chunks[-1][:space_left])
229 reversed_chunks[-1] = reversed_chunks[-1][space_left:]
  /external/python/cpython3/Lib/
textwrap.py 211 space_left = 1
213 space_left = width - cur_len
218 cur_line.append(reversed_chunks[-1][:space_left])
219 reversed_chunks[-1] = reversed_chunks[-1][space_left:]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
textwrap.py 221 space_left = 1
223 space_left = width - cur_len
228 cur_line.append(reversed_chunks[-1][:space_left])
229 reversed_chunks[-1] = reversed_chunks[-1][space_left:]
  /prebuilts/gdb/linux-x86/lib/python2.7/
textwrap.py 221 space_left = 1
223 space_left = width - cur_len
228 cur_line.append(reversed_chunks[-1][:space_left])
229 reversed_chunks[-1] = reversed_chunks[-1][space_left:]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
textwrap.py 221 space_left = 1
223 space_left = width - cur_len
228 cur_line.append(reversed_chunks[-1][:space_left])
229 reversed_chunks[-1] = reversed_chunks[-1][space_left:]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
textwrap.py 221 space_left = 1
223 space_left = width - cur_len
228 cur_line.append(reversed_chunks[-1][:space_left])
229 reversed_chunks[-1] = reversed_chunks[-1][space_left:]
  /system/bt/bta/hf_client/
bta_hf_client_at.cc 1578 unsigned int space_left = local
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.cc 1198 size_t space_left = buf_len - 1; local
    [all...]

Completed in 716 milliseconds