Searched refs:paths (Results 1 – 4 of 4) sorted by relevance
/bionic/libc/upstream-netbsd/lib/libc/gen/ |
D | ftw.c | 42 char * const paths[2] = { __UNCONST(path), NULL }; in ftw() local 53 ftsp = fts_open(paths, FTS_COMFOLLOW | FTS_NOCHDIR, NULL); in ftw()
|
D | nftw.c | 43 char * const paths[2] = { __UNCONST(path), NULL }; in nftw() local 63 ftsp = fts_open(paths, ftsflags, NULL); in nftw()
|
/bionic/libc/kernel/tools/ |
D | utils.py | 79 def walk_source_files(paths,callback,args,excludes=[]): argument 81 for path in paths:
|
/bionic/linker/ |
D | linker.cpp | 729 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()
|