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

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dglob.h55 __gl_size_t gl_offs; /* Reserved at beginning of gl_pathv. */
57 char **gl_pathv; /* List of paths matching pattern. */ member in struct:__anon12991
/vbox/src/libs/libxml2-2.6.31/
H A Druntest.c116 char **gl_pathv; /* List of matched pathnames. */ member in struct:__anon17105
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 35 milliseconds