Searched defs:weight (Results 1 - 7 of 7) sorted by relevance
/systemd/src/core/ |
H A D | cgroup.h | 59 uint64_t weight; member in struct:CGroupBlockIODeviceWeight
|
H A D | dbus-cgroup.c | 53 r = sd_bus_message_append(reply, "(st)", w->path, w->weight); 300 uint64_t weight; local 302 r = sd_bus_message_read(message, "t", &weight); 306 if (!CGROUP_BLKIO_WEIGHT_IS_OK(weight)) 310 c->blockio_weight = weight; 313 if (weight == CGROUP_BLKIO_WEIGHT_INVALID) 316 unit_write_drop_in_private_format(u, mode, name, "BlockIOWeight=%" PRIu64, weight); 322 uint64_t weight; local 324 r = sd_bus_message_read(message, "t", &weight); 328 if (CGROUP_BLKIO_WEIGHT_IS_OK(weight)) 435 uint64_t weight; local [all...] |
H A D | load-fragment.c | 3004 uint64_t *weight = data; local 3011 r = cg_blkio_weight_parse(rvalue, weight); 3013 log_syntax(unit, LOG_ERR, filename, line, r, "Block IO weight '%s' invalid. Ignoring.", rvalue); 3035 const char *weight; local 3052 weight = rvalue + n; 3053 weight += strspn(weight, WHITESPACE); 3055 if (isempty(weight)) { 3056 log_syntax(unit, LOG_ERR, filename, line, 0, "Expected block device and device weight. Ignoring."); 3069 r = cg_blkio_weight_parse(weight, [all...] |
/systemd/src/resolve/ |
H A D | resolve-tool.c | 628 uint16_t priority, weight, port; local 631 r = sd_bus_message_read(reply, "qqqs", &priority, &weight, &port, &hostname); 640 printf("%*s%s %s:%u [priority=%u, weight=%u]\n", 644 priority, weight);
|
H A D | resolved-dns-rr.h | 135 uint16_t weight; member in struct:DnsResourceRecord::__anon231::__anon233
|
/systemd/src/shared/ |
H A D | bus-util.c | 1647 const char *path, *weight, *e; local 1653 weight = e+1; 1664 r = safe_atou64(weight, &u); 1666 log_error("Failed to parse %s value %s.", field, weight);
|
/systemd/src/systemctl/ |
H A D | systemctl.c | 4322 uint64_t weight; local 4328 while ((r = sd_bus_message_read(m, "(st)", &path, &weight)) > 0) 4329 printf("%s=%s %" PRIu64 "\n", name, strna(path), weight);
|
Completed in 53 milliseconds