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

/external/openssh/openbsd-compat/
H A Dglob.h54 int gl_offs; /* Reserved at beginning of gl_pathv. */
56 char **gl_pathv; /* List of paths matching pattern. */ member in struct:__anon23452
57 struct stat **gl_statv; /* Stat entries corresponding to gl_pathv */
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_posix.h194 char **gl_pathv; member in struct:__sanitizer::__sanitizer_glob_t
/external/chromium_org/third_party/libxml/src/
H A Druntest.c116 char **gl_pathv; /* List of matched pathnames. */ member in struct:__anon11689
117 size_t gl_offs; /* Slots to reserve in 'gl_pathv'. */
152 ret->gl_pathv = (char **) malloc(nb_paths * sizeof(char *));
153 if (ret->gl_pathv == NULL) {
158 ret->gl_pathv[ret->gl_pathc] = strdup(directory);
159 if (ret->gl_pathv[ret->gl_pathc] == NULL)
166 char **tmp = realloc(ret->gl_pathv, nb_paths * 2 * sizeof(char *));
169 ret->gl_pathv = tmp;
173 ret->gl_pathv[ret->gl_pathc] = strdup(directory);
174 if (ret->gl_pathv[re
[all...]

Completed in 49 milliseconds