Searched refs:allocated_length (Results 1 – 6 of 6) sorted by relevance
/third_party/toybox/toys/posix/ |
D | uudecode.c | 31 size_t allocated_length; local 38 if ((n = getline(&line, &allocated_length, ifp)) == -1) 56 if (m == 2 || (n = getline(&line, &allocated_length, ifp)) == -1) break;
|
/third_party/toybox/toys/pending/ |
D | userdel.c | 30 size_t allocated_length = 0; in update_groupfiles() local 53 while (getline(&line, &allocated_length, exfp) > 0) { in update_groupfiles()
|
D | crontab.c | 119 size_t allocated_length; in parse_crontab() local 122 for (lno = 1; (len = getline(&line, &allocated_length, fp)) > 0; lno++) { in parse_crontab()
|
D | crond.c | 377 size_t allocated_length = 0; in scan_cronfiles() local 392 while (getline(&line, &allocated_length, fp) > 0) { in scan_cronfiles()
|
/third_party/toybox/lib/ |
D | password.c | 115 size_t allocated_length; in update_password() local 153 while ((n = getline(&line, &allocated_length, exfp)) > 0) { in update_password()
|
/third_party/python/Lib/multiprocessing/ |
D | shared_memory.py | 452 allocated_length = self._allocated_offsets[position + 1] - item_offset 456 if len(encoded_value) > allocated_length: 462 allocated_length,
|