Searched defs:rc (Results 1 - 10 of 10) sorted by relevance
/lxc/src/lxc/tools/ |
H A D | lxc_execute.c | 128 int rc; local 130 rc = asprintf(&rcfile, "%s/%s/config", my_args.lxcpath[0], my_args.name); 131 if (rc == -1) {
|
H A D | lxc_start.c | 268 int rc; local 270 rc = asprintf(&rcfile, "%s/%s/config", lxcpath, my_args.name); 271 if (rc == -1) {
|
H A D | lxc_info.c | 151 int rc,netnr; local 179 rc = lxc_read_from_file(path, buf, sizeof(buf)); 180 if (rc > 0) { 188 rc = lxc_read_from_file(path, buf, sizeof(buf)); 189 if (rc > 0) {
|
H A D | lxc_top.c | 172 int rc; local 174 rc = read(fd, in_char, sizeof(*in_char)); 175 if (rc <= 0)
|
/lxc/src/lxc/ |
H A D | lxc_monitord.c | 156 int rc; local 159 rc = read(fd, buf, sizeof(buf)); 160 if (rc > 0 && !strncmp(buf, "quit", 4))
|
H A D | start.c | 497 int i, rc; local 509 rc = asprintf(&namespaces[namespace_count], "%s:/proc/%d/fd/%d", 511 if (rc == -1) {
|
H A D | network.c | 932 int rc; local 937 rc = snprintf(path, MAXPATHLEN, "/proc/sys/net/%s/conf/%s/forwarding", 939 if (rc >= MAXPATHLEN)
|
H A D | utils.c | 107 int rc; local 116 rc = snprintf(pathname, MAXPATHLEN, "%s/%s", dirname, direntp->d_name); 117 if (rc < 0 || rc >= MAXPATHLEN) {
|
H A D | conf.c | 457 int rc; local 458 rc = snprintf(buffer + ret, len, " %s", argsin[i]); 459 if (rc < 0 || rc >= len) { 463 ret += rc; 508 int rc; local 509 rc = snprintf(buffer + ret, len, " %s", p); 510 if (rc < 0 || rc >= len) { 514 ret += rc; [all...] |
/lxc/src/lxc/cgroups/ |
H A D | cgfs.c | 174 int rc; local 183 rc = snprintf(pathname, MAXPATHLEN, "%s/%s", dirname, direntp->d_name); 184 if (rc < 0 || rc >= MAXPATHLEN) {
|
Completed in 39 milliseconds