Home
last modified time | relevance | path

Searched refs:strv_find_prefix (Results 1 – 6 of 6) sorted by relevance

/systemd-251/src/test/
Dtest-strv.c102 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/
Dstrv.h18 char* strv_find_prefix(char * const *l, const char *name) _pure_;
Dstrv.c39 char* strv_find_prefix(char * const *l, const char *name) { in strv_find_prefix() function
/systemd-251/src/activate/
Dactivate.c135 n = strv_find_prefix(environ, var); in exec_process()
/systemd-251/src/machine/
Dmachinectl.c1362 if (!strv_find_prefix(arg_setenv, "TERM=")) { in shell_machine()
1365 t = strv_find_prefix(environ, "TERM="); in shell_machine()
/systemd-251/src/nspawn/
Dnspawn.c3453 envp[n_env] = strv_find_prefix(environ, "TERM="); in inner_child()