Searched refs:exec_path (Results 1 – 10 of 10) sorted by relevance
/linux/tools/lib/subcmd/ |
A D | help.c | 199 char *exec_path = get_argv_exec_path(); in load_command_list() local 201 if (exec_path) { in load_command_list() 202 list_commands_in_dir(main_cmds, exec_path, prefix); in load_command_list() 214 if (!exec_path || strcmp(path, exec_path)) in load_command_list() 227 free(exec_path); in load_command_list() 244 char *exec_path = get_argv_exec_path(); in list_commands() local 245 printf("available %s in '%s'\n", title, exec_path); in list_commands() 247 mput_char('-', strlen(title) + strlen(exec_path)); in list_commands() 251 free(exec_path); in list_commands()
|
A D | exec-cmd.c | 21 const char *exec_path, const char *exec_path_env) in exec_cmd_init() argument 25 subcmd_config.exec_path = exec_path; in exec_cmd_init() 103 void set_argv_exec_path(const char *exec_path) in set_argv_exec_path() argument 105 argv_exec_path = exec_path; in set_argv_exec_path() 109 setenv(subcmd_config.exec_path_env, exec_path, 1); in set_argv_exec_path() 125 return system_path(subcmd_config.exec_path); in get_argv_exec_path()
|
A D | exec-cmd.h | 6 const char *exec_path, const char *exec_path_env); 8 extern void set_argv_exec_path(const char *exec_path);
|
A D | subcmd-config.h | 8 const char *exec_path; member
|
A D | subcmd-config.c | 9 .exec_path = UNDEFINED,
|
/linux/tools/perf/tests/ |
A D | attr.c | 186 char *exec_path; in test__attr() local 195 exec_path = get_argv_exec_path(); in test__attr() 196 if (exec_path == NULL) in test__attr() 200 snprintf(path_dir, PATH_MAX, "%s/tests", exec_path); in test__attr() 202 free(exec_path); in test__attr()
|
A D | dlfilter-test.c | 222 char *exec_path; in get_dlfilters_path() local 228 exec_path = get_argv_exec_path(); in get_dlfilters_path() 229 if (!exec_path) in get_dlfilters_path() 231 snprintf(path, sizeof(path), "%s/dlfilters/dlfilter-test-api-v0.so", exec_path); in get_dlfilters_path() 232 free(exec_path); in get_dlfilters_path()
|
A D | builtin-test.c | 303 char *exec_path; in shell_tests__dir() local 316 exec_path = get_argv_exec_path(); in shell_tests__dir() 317 scnprintf(path, size, "%s/tests/shell", exec_path); in shell_tests__dir() 318 free(exec_path); in shell_tests__dir()
|
/linux/tools/perf/util/ |
A D | dlfilter.c | 295 char *exec_path; in find_dlfilter() local 310 exec_path = get_argv_exec_path(); in find_dlfilter() 311 if (!exec_path) in find_dlfilter() 313 snprintf(path, sizeof(path), "%s/dlfilters/%s", exec_path, file); in find_dlfilter() 314 free(exec_path); in find_dlfilter() 599 char *exec_path; in list_available_dlfilters() local 605 exec_path = get_argv_exec_path(); in list_available_dlfilters() 606 if (!exec_path) in list_available_dlfilters() 608 snprintf(path, sizeof(path), "%s/dlfilters", exec_path); in list_available_dlfilters() 612 free(exec_path); in list_available_dlfilters()
|
/linux/tools/perf/ |
A D | builtin-script.c | 2783 char *exec_path = get_argv_exec_path(); in find_script() local 2785 if (!exec_path) in find_script() 2788 exec_path, scripting_ops->dirname, script); in find_script() 2789 free(exec_path); in find_script()
|
Completed in 19 milliseconds