/systemd/src/libudev/ |
H A D | libudev-device-internal.h | 45 struct udev_list properties; member in struct:udev_device
|
/systemd/src/nspawn/ |
H A D | nspawn-register.c | 39 char **properties, 166 STRV_FOREACH(i, properties) { 29 register_machine( const char *machine_name, pid_t pid, const char *directory, sd_id128_t uuid, int local_ifindex, const char *slice, CustomMount *mounts, unsigned n_mounts, int kill_signal, char **properties, bool keep_unit, const char *service) argument
|
/systemd/src/login/ |
H A D | logind-user-dbus.c | 381 int user_send_changed(User *u, const char *properties, ...) { argument 394 l = strv_from_stdarg_alloca(properties);
|
H A D | logind-seat-dbus.c | 458 int seat_send_changed(Seat *s, const char *properties, ...) { argument 471 l = strv_from_stdarg_alloca(properties);
|
H A D | logind-session-dbus.c | 639 int session_send_changed(Session *s, const char *properties, ...) { argument 652 l = strv_from_stdarg_alloca(properties);
|
H A D | loginctl.c | 450 return log_error_errno(r, "Could not get properties: %m"); 578 return log_error_errno(r, "Could not get properties: %m"); 650 return log_error_errno(r, "Could not get properties: %m"); 803 return log_error_errno(r, "Failed to get properties: %s", bus_error_message(&error, r)); 852 bool properties, new_line = false; local 859 properties = !strstr(argv[0], "status"); 866 if (properties) 895 if (properties) 908 bool properties, new_line = false; local 915 properties 968 bool properties, new_line = false; local [all...] |
/systemd/src/libsystemd/sd-device/ |
H A D | device-internal.h | 32 OrderedHashmap *properties; member in struct:sd_device 34 uint64_t properties_generation; /* changes whenever the properties are changed */ 37 /* the subset of the properties that should be written to the db*/ 59 char **properties_strv; /* the properties hashmap as a strv */
|
H A D | sd-device.c | 83 ordered_hashmap_free_free_free(device->properties); 97 OrderedHashmap **properties; local 103 properties = &device->properties_db; 105 properties = &device->properties; 111 r = ordered_hashmap_ensure_allocated(properties, &string_hash_ops); 123 old_value = ordered_hashmap_get2(*properties, key, (void**) &old_key); 125 r = ordered_hashmap_replace(*properties, key, value); 135 value = ordered_hashmap_remove2(*properties, _key, (void**) &key); 1514 ordered_hashmap_iterate(device->properties, [all...] |
/systemd/src/machine/ |
H A D | machine.c | 353 static int machine_start_scope(Machine *m, sd_bus_message *properties, sd_bus_error *error) { argument 373 r = manager_start_scope(m->manager, scope, m->leader, SPECIAL_MACHINE_SLICE, description, properties, error, &job); 392 int machine_start(Machine *m, sd_bus_message *properties, sd_bus_error *error) { argument 408 r = machine_start_scope(m, properties, error);
|
H A D | machinectl.c | 668 return log_error_errno(r, "Could not get properties: %m"); 693 log_error_errno(r, "Could not get properties: %m"); 702 bool properties, new_line = false; local 708 properties = !strstr(argv[0], "status"); 712 if (properties && argc <= 1) { 742 if (properties) 856 return log_error_errno(r, "Could not get properties: %m"); 920 return log_error_errno(r, "Could not get properties: %m"); 942 log_error_errno(r, "Could not get properties: %m"); 951 bool properties, new_lin local [all...] |
/systemd/src/libsystemd/sd-hwdb/ |
H A D | sd-hwdb.c | 53 OrderedHashmap *properties; member in struct:sd_hwdb 147 * Silently ignore all properties which do not start with a 155 r = ordered_hashmap_ensure_allocated(&hwdb->properties, &string_hash_ops); 159 r = ordered_hashmap_replace(hwdb->properties, key, (char*)value); 351 ordered_hashmap_free(hwdb->properties); 397 ordered_hashmap_clear(hwdb->properties); 425 value = ordered_hashmap_get(hwdb->properties, key); 462 ordered_hashmap_iterate(hwdb->properties, &hwdb->properties_iterator, &v, &k);
|
/systemd/src/run/ |
H A D | run.c | 414 static int transient_unit_set_properties(sd_bus_message *m, char **properties) { argument 422 STRV_FOREACH(i, properties) {
|
/systemd/src/udev/ |
H A D | udevd.c | 86 struct udev_list properties; member in struct:Manager 315 udev_list_cleanup(&manager->properties); 458 &manager->properties, 988 udev_list_entry_add(&manager->properties, key, NULL); 991 udev_list_entry_add(&manager->properties, key, val); 1526 udev_list_init(manager->udev, &manager->properties, true);
|