Searched refs:strv_find_prefix (Results 1 – 6 of 6) sorted by relevance
/systemd-251/src/test/ |
D | test-strv.c | 102 TEST(strv_find_prefix) { in TEST() argument 103 assert_se(strv_find_prefix((char **)input_table_multiple, "o")); in TEST() 104 assert_se(strv_find_prefix((char **)input_table_multiple, "one")); in TEST() 105 assert_se(strv_find_prefix((char **)input_table_multiple, "")); in TEST() 106 assert_se(!strv_find_prefix((char **)input_table_multiple, "xxx")); in TEST() 107 assert_se(!strv_find_prefix((char **)input_table_multiple, "onee")); in TEST()
|
/systemd-251/src/basic/ |
D | strv.h | 18 char* strv_find_prefix(char * const *l, const char *name) _pure_;
|
D | strv.c | 39 char* strv_find_prefix(char * const *l, const char *name) { in strv_find_prefix() function
|
/systemd-251/src/activate/ |
D | activate.c | 135 n = strv_find_prefix(environ, var); in exec_process()
|
/systemd-251/src/machine/ |
D | machinectl.c | 1362 if (!strv_find_prefix(arg_setenv, "TERM=")) { in shell_machine() 1365 t = strv_find_prefix(environ, "TERM="); in shell_machine()
|
/systemd-251/src/nspawn/ |
D | nspawn.c | 3453 envp[n_env] = strv_find_prefix(environ, "TERM="); in inner_child()
|