Home
last modified time | relevance | path

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

/glibc-2.36/sysdeps/unix/sysv/linux/alpha/
Doldglob.c32 int gl_offs; /* Slots to reserve in `gl_pathv'. */ member
57 correct.gl_offs = pglob->gl_offs; in __old_glob()
72 pglob->gl_offs = correct.gl_offs; in __old_glob()
95 correct.gl_offs = pglob->gl_offs; in __old_globfree()
/glibc-2.36/posix/
Dglob.c331 pglob->gl_offs = 0; in __glob()
342 if (pglob->gl_offs >= ~((size_t) 0) / sizeof (char *)) in __glob()
345 pglob->gl_pathv = (char **) malloc ((pglob->gl_offs + 1) in __glob()
350 for (i = 0; i <= pglob->gl_offs; ++i) in __glob()
486 oldcount = pglob->gl_pathc + pglob->gl_offs; in __glob()
608 oldcount = pglob->gl_pathc + pglob->gl_offs; in __glob()
914 size_t newcount = pglob->gl_pathc + pglob->gl_offs; in __glob()
1039 &pglob->gl_pathv[old_pathc + pglob->gl_offs], in __glob()
1055 if (pglob->gl_pathc + pglob->gl_offs == oldcount) in __glob()
1061 size_t newcount = pglob->gl_pathc + pglob->gl_offs; in __glob()
[all …]
Dglobtest.c32 g.gl_offs = 0; in main()
60 g.gl_offs = 1; in main()
112 for (i = 0; i < g.gl_offs + g.gl_pathc; ++i) in main()
Dglob.h86 __size_t gl_offs; /* Slots to reserve in `gl_pathv'. */ member
115 __size_t gl_offs; member
Dglobfree.c34 free (pglob->gl_pathv[pglob->gl_offs + i]); in globfree()
Dbug-glob2.c291 gl.gl_offs = 3; in do_test()
Dtst-regex.input4041 * posix/glob.h (glob_t): Use correct types for gl_pathc and gl_offs
/glibc-2.36/include/
Dglob.h21 size_t gl_offs;
/glibc-2.36/conform/data/
Dglob.h-data9 element glob_t size_t gl_offs
/glibc-2.36/manual/
Dpattern.texi198 if the GLOB_DOOFFS flag is used (see gl_offs below).
203 @item gl_offs
212 The @code{gl_offs} field is meaningful only if you use the
318 if the GLOB_DOOFFS flag is used (see gl_offs below).
323 @item gl_offs
332 The @code{gl_offs} field is meaningful only if you use the
560 The @code{gl_offs} field says how many slots to leave.
/glibc-2.36/ChangeLog.old/
DChangeLog.84041 * posix/glob.h (glob_t): Use correct types for gl_pathc and gl_offs
DChangeLog.1612349 copy gl_offs. Patch by Sergey Tikhonov <tsv@solvo.ru>.