Searched defs:range (Results 1 - 5 of 5) sorted by relevance

/lxc/src/lxc/tools/
H A Dlxc_usernsexec.c66 printf(" uid-maps: [u|g|b]:ns_id:host_id:range\n");
70 printf(" range: how many ids to map\n");
150 long host_id, ns_id, range; local
155 ret = sscanf(map, "%c:%ld:%ld:%ld", &which, &ns_id, &host_id, &range);
172 newmap->range = range;
231 newmap->range = atol(p2+1);
/lxc/src/lxc/cgroups/
H A Dcgfsng.c346 char *range = strchr(token, '-'); local
347 if (range)
348 end = strtoul(range + 1, NULL, 0);
/lxc/src/lxc/
H A Dconf.h169 unsigned long hostid, nsid, range; member in struct:id_map
H A Dconfile.c1509 unsigned long hostid, nsid, range; local
1533 ret = sscanf(value, "%c %lu %lu %lu", &type, &nsid, &hostid, &range);
1537 INFO("read uid map: type %c nsid %lu hostid %lu range %lu", type, nsid, hostid, range);
1547 idmap->range = range;
H A Dutils.c1038 uid_t nsid, hostid, range; local
1044 if (sscanf(line, "%u %u %u", &nsid, &hostid, &range) != 3)
1046 if (hostid <= orig && hostid + range > orig) {

Completed in 38 milliseconds