Home
last modified time | relevance | path

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

/linux/tools/lib/bpf/
H A Dlibbpf.c13026 const char *search_paths[4] = {}; in resolve_full_path() local
13030 search_paths[0] = getenv("LD_LIBRARY_PATH"); in resolve_full_path()
13031 search_paths[1] = "/usr/lib64:/usr/lib"; in resolve_full_path()
13032 search_paths[2] = arch_specific_lib_paths(); in resolve_full_path()
13033 search_paths[3] = "/lib64:/lib"; in resolve_full_path()
13036 search_paths[0] = getenv("PATH"); in resolve_full_path()
13037 search_paths[1] = "/usr/bin:/usr/sbin"; in resolve_full_path()
13041 for (i = 0; i < ARRAY_SIZE(search_paths); i++) { in resolve_full_path()
13044 if (!search_paths[i]) in resolve_full_path()
13046 for (s = search_paths[i]; s != NULL; s = strchr(s, ':')) { in resolve_full_path()