Home
last modified time | relevance | path

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

/bionic/libc/upstream-netbsd/lib/libc/gen/
Dftw.c42 char * const paths[2] = { __UNCONST(path), NULL }; in ftw() local
53 ftsp = fts_open(paths, FTS_COMFOLLOW | FTS_NOCHDIR, NULL); in ftw()
Dnftw.c43 char * const paths[2] = { __UNCONST(path), NULL }; in nftw() local
63 ftsp = fts_open(paths, ftsflags, NULL); in nftw()
/bionic/libc/kernel/tools/
Dutils.py79 def walk_source_files(paths,callback,args,excludes=[]): argument
81 for path in paths:
/bionic/linker/
Dlinker.cpp729 static int open_library_on_path(const char* name, const char* const paths[]) { in open_library_on_path() argument
731 for (size_t i = 0; paths[i] != nullptr; ++i) { in open_library_on_path()
732 int n = __libc_format_buffer(buf, sizeof(buf), "%s/%s", paths[i], name); in open_library_on_path()
734 PRINT("Warning: ignoring very long library path: %s/%s", paths[i], name); in open_library_on_path()