Searched defs:end (Results 1 - 7 of 7) sorted by relevance
/lxc/src/lxc/tools/ |
H A D | lxc_create.c | 40 char *end; local 42 ret = strtoull(s, &end, 0); 43 if (end == s) 48 while (isblank(*end)) 49 end++; 50 if (*end == '\0') 52 else if (*end == 'b' || *end == 'B') 54 else if (*end == 'k' || *end [all...] |
H A D | lxc_clone.c | 45 char *end; local 47 ret = strtoull(s, &end, 0); 48 if (end == s) 53 while (isblank(*end)) 54 end++; 55 if (*end == '\0') 57 else if (*end == 'b' || *end == 'B') 59 else if (*end == 'k' || *end [all...] |
H A D | lxc_info.c | 137 char *end = NULL; local 139 val = strtoull(iobuf, &end, 0); 141 if (*end == '\0' || *end == '\n')
|
H A D | lxc_copy.c | 527 char *end; local 529 ret = strtoull(s, &end, 0); 530 if (end == s) { 535 while (isblank(*end)) 536 end++; 537 if (*end == '\0') { 539 } else if (*end == 'b' || *end == 'B') { 541 } else if (*end == 'k' || *end [all...] |
/lxc/src/lxc/cgroups/ |
H A D | cgfsng.c | 344 unsigned end = start; local 348 end = strtoul(range + 1, NULL, 0); 349 if (!(start <= end)) { 354 if (end >= nbits) { 359 while (start <= end)
|
H A D | cgmanager.c | 1362 char *slist, *end, *p, *saveptr = NULL, **tmp; local 1371 end = strchr(slist, ':'); 1372 if (!end) 1374 *end = '\0';
|
/lxc/src/lxc/ |
H A D | lxccontainer.c | 1802 /* close the read-end of the pipe */ 1831 /* close the write-end of the pipe, thus sending EOF to the reader */ 1836 /* close the write-end of the pipe */ 1855 /* close the read-end of the pipe */ 1894 /* close the read-end of the pipe */ 1953 /* close the write-end of the pipe, thus sending EOF to the reader */ 1958 /* close the write-end of the pipe */ 1974 /* close the read-end of the pipe */ 3975 * sure that the stuff on the end is zero, i.e. that they didn't ask us 3980 unsigned char *end; local [all...] |
Completed in 293 milliseconds