Home
last modified time | relevance | path

Searched refs:empty_or_dash_to_null (Results 1 – 8 of 8) sorted by relevance

/systemd-251/src/locale/
Dkeymap-util.c498 if (!streq_ptr(c->x11_layout, empty_or_dash_to_null(a[1])) || in vconsole_convert_to_x11()
499 !streq_ptr(c->x11_model, empty_or_dash_to_null(a[2])) || in vconsole_convert_to_x11()
500 !streq_ptr(c->x11_variant, empty_or_dash_to_null(a[3])) || in vconsole_convert_to_x11()
501 !streq_ptr(c->x11_options, empty_or_dash_to_null(a[4]))) { in vconsole_convert_to_x11()
503 … if (free_and_strdup(&c->x11_layout, empty_or_dash_to_null(a[1])) < 0 || in vconsole_convert_to_x11()
504 … free_and_strdup(&c->x11_model, empty_or_dash_to_null(a[2])) < 0 || in vconsole_convert_to_x11()
505 … free_and_strdup(&c->x11_variant, empty_or_dash_to_null(a[3])) < 0 || in vconsole_convert_to_x11()
506 … free_and_strdup(&c->x11_options, empty_or_dash_to_null(a[4])) < 0) in vconsole_convert_to_x11()
/systemd-251/src/import/
Dimport.c138 path = empty_or_dash_to_null(argv[1]); in import_tar()
141 local = empty_or_dash_to_null(argv[2]); in import_tar()
210 path = empty_or_dash_to_null(argv[1]); in import_raw()
213 local = empty_or_dash_to_null(argv[2]); in import_raw()
Dimport-fs.c109 path = empty_or_dash_to_null(argv[1]); in import_fs()
112 local = empty_or_dash_to_null(argv[2]); in import_fs()
Dexport.c81 path = empty_or_dash_to_null(path); in export_tar()
157 path = empty_or_dash_to_null(path); in export_raw()
Dpull.c117 local = empty_or_dash_to_null(argv[2]); in pull_tar()
190 local = empty_or_dash_to_null(argv[2]); in pull_raw()
/systemd-251/src/integritysetup/
Dintegritysetup-generator.c165 …r = create_disk(name, device_path, empty_or_dash_to_null(key_file), empty_or_dash_to_null(options)… in add_integritytab_devices()
/systemd-251/src/machine/
Dmachinectl.c1850 path = empty_or_dash_to_null(argv[1]); in import_tar()
1853 local = empty_or_dash_to_null(argv[2]); in import_tar()
1913 path = empty_or_dash_to_null(argv[1]); in import_raw()
1916 local = empty_or_dash_to_null(argv[2]); in import_raw()
1976 path = empty_or_dash_to_null(argv[1]); in import_fs()
1979 local = empty_or_dash_to_null(argv[2]); in import_fs()
2050 path = empty_or_dash_to_null(path); in export_tar()
2092 path = empty_or_dash_to_null(path); in export_raw()
2142 local = empty_or_dash_to_null(local); in pull_tar()
2198 local = empty_or_dash_to_null(local); in pull_raw()
/systemd-251/src/basic/
Dstring-util.h78 static inline const char *empty_or_dash_to_null(const char *p) { in empty_or_dash_to_null() function