Searched defs:paths (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/upstream-netbsd/lib/libc/gen/
H A Dftw.c42 char * const paths[2] = { __UNCONST(path), NULL }; local
53 ftsp = fts_open(paths, FTS_COMFOLLOW | FTS_NOCHDIR, NULL);
H A Dnftw.c43 char * const paths[2] = { __UNCONST(path), NULL }; local
63 ftsp = fts_open(paths, ftsflags, NULL);
/bionic/linker/
H A Dlinker.cpp702 static int open_library_on_path(const char* name, const char* const paths[]) { argument
704 for (size_t i = 0; paths[i] != NULL; ++i) {
705 int n = __libc_format_buffer(buf, sizeof(buf), "%s/%s", paths[i], name);
707 PRINT("Warning: ignoring very long library path: %s/%s", paths[i], name);
721 // If the name contains a slash, we should attempt to open it directly and not search the paths.
733 // Otherwise we try LD_LIBRARY_PATH first, and fall back to the built-in well known paths.

Completed in 122 milliseconds