HomeSort by relevance Sort by last modified time
    Searched defs:gl_pathv (Results 1 - 7 of 7) sorted by null

  /external/openssh/openbsd-compat/
glob.h 54 int gl_offs; /* Reserved at beginning of gl_pathv. */
56 char **gl_pathv; /* List of paths matching pattern. */ member in struct:__anon26781
57 struct stat **gl_statv; /* Stat entries corresponding to gl_pathv */
  /ndk/sources/host-tools/make-3.81/glob/
glob.h 123 char **gl_pathv; /* List of matched pathnames. */ member in struct:__anon35941
124 __size_t gl_offs; /* Slots to reserve in `gl_pathv'. */
145 char **gl_pathv; member in struct:__anon35942
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
glob.h 93 char **gl_pathv; /* List of matched pathnames. */ member in struct:__anon40123
94 __size_t gl_offs; /* Slots to reserve in `gl_pathv'. */
122 char **gl_pathv; member in struct:__anon40124
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
glob.h 93 char **gl_pathv; /* List of matched pathnames. */ member in struct:__anon41713
94 __size_t gl_offs; /* Slots to reserve in `gl_pathv'. */
122 char **gl_pathv; member in struct:__anon41714
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
glob.h 93 char **gl_pathv; /* List of matched pathnames. */ member in struct:__anon43228
94 __size_t gl_offs; /* Slots to reserve in `gl_pathv'. */
122 char **gl_pathv; member in struct:__anon43229
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_platform_limits_posix.h 194 char **gl_pathv; member in struct:__sanitizer::__sanitizer_glob_t
  /external/chromium_org/third_party/libxml/src/
runtest.c 116 char **gl_pathv; /* List of matched pathnames. */ member in struct:__anon14920
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[ret->gl_pathc] == NULL
    [all...]

Completed in 685 milliseconds