Home
last modified time | relevance | path

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

/ndk/sources/host-tools/ndk-depends/
Dndk-depends.cc839 glob_t the_glob; in AddHostLdSoConfPaths() local
840 memset(&the_glob, 0, sizeof(the_glob)); in AddHostLdSoConfPaths()
841 int ret = ::glob(pattern.c_str(), 0, NULL, &the_glob); in AddHostLdSoConfPaths()
845 for (size_t n = 0; n < the_glob.gl_pathc; ++n) { in AddHostLdSoConfPaths()
846 filepath.assign(the_glob.gl_pathv[n]); in AddHostLdSoConfPaths()
851 globfree(&the_glob); in AddHostLdSoConfPaths()