Home
last modified time | relevance | path

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

/packages/modules/SdkExtensions/derive_classpath/
Dderive_classpath.cpp124 glob_t glob_result; in GlobClasspathFragments() local
125 const int ret = glob((glob_pattern_prefix + pattern).c_str(), GLOB_MARK, nullptr, &glob_result); in GlobClasspathFragments()
127 globfree(&glob_result); in GlobClasspathFragments()
132 for (size_t i = 0; i < glob_result.gl_pathc; i++) { in GlobClasspathFragments()
133 std::string path = glob_result.gl_pathv[i]; in GlobClasspathFragments()
144 globfree(&glob_result); in GlobClasspathFragments()