Home
last modified time | relevance | path

Searched refs:arg_properties (Results 1 – 4 of 4) sorted by relevance

/systemd-251/src/udev/
Dudevadm-info.c48 static char **arg_properties = NULL; variable
77 STATIC_DESTRUCTOR_REGISTER(arg_properties, strv_freep);
452 if (arg_properties && !strv_contains(arg_properties, key)) in query_device()
700 if (isempty(optarg) && !arg_properties) { in info_main()
701 arg_properties = new0(char*, 1); in info_main()
702 if (!arg_properties) in info_main()
705 r = strv_split_and_extend(&arg_properties, optarg, ",", true); in info_main()
/systemd-251/src/systemctl/
Dsystemctl.c65 char **arg_properties = NULL; variable
117 STATIC_DESTRUCTOR_REGISTER(arg_properties, strv_freep);
552 if (isempty(optarg) && !arg_properties) { in systemctl_parse_argv()
553 arg_properties = new0(char*, 1); in systemctl_parse_argv()
554 if (!arg_properties) in systemctl_parse_argv()
566 if (strv_consume(&arg_properties, TAKE_PTR(prop)) < 0) in systemctl_parse_argv()
Dsystemctl.h50 extern char **arg_properties;
Dsystemctl-show.c2034 …r = bus_message_print_all_properties(reply, print_property, arg_properties, arg_print_flags, &foun… in show_one()
2038 STRV_FOREACH(pp, arg_properties) in show_one()