Searched defs:bandwidth (Results 1 - 4 of 4) sorted by relevance
/systemd/src/core/ |
H A D | cgroup.h | 65 uint64_t bandwidth; member in struct:CGroupBlockIODeviceBandwidth
|
H A D | load-fragment.c | 3105 const char *bandwidth; local 3128 bandwidth = rvalue + n; 3129 bandwidth += strspn(bandwidth, WHITESPACE); 3131 if (!*bandwidth) { 3132 log_syntax(unit, LOG_ERR, filename, line, 0, "Expected space separated pair of device node and bandwidth. Ignoring."); 3145 r = parse_size(bandwidth, 1000, &bytes); 3157 b->bandwidth = bytes;
|
/systemd/src/shared/ |
H A D | bus-util.c | 1616 const char *path, *bandwidth, *e; local 1622 bandwidth = e+1; 1633 r = parse_size(bandwidth, 1000, &bytes); 1635 log_error("Failed to parse byte value %s.", bandwidth);
|
/systemd/src/systemctl/ |
H A D | systemctl.c | 4341 uint64_t bandwidth; local 4347 while ((r = sd_bus_message_read(m, "(st)", &path, &bandwidth)) > 0) 4348 printf("%s=%s %" PRIu64 "\n", name, strna(path), bandwidth);
|
Completed in 982 milliseconds