Lines Matching defs:list
28 #define DECL_GLOB_LIST(list) char **list; char **pp; argument
29 #define GLOB_LIST(filename,list) list = _fnexplode(filename) argument
30 #define GLOB_LIST_FAILED(list) list == NULL argument
31 #define SCAN_GLOB_LIST(list,p) pp = list; *pp != NULL; pp++ argument
32 #define INIT_GLOB_LIST(list,p) p = *pp argument
33 #define GLOB_LIST_DONE(list) _fnexplodefree(list) argument
38 #define DECL_GLOB_LIST(list) glob_t list; size_t i; argument
39 #define GLOB_LIST(filename,list) glob(filename,GLOB_NOCHECK,0,&list) argument
40 #define GLOB_LIST_FAILED(list) 0 argument
41 #define SCAN_GLOB_LIST(list,p) i = 0; i < list.gl_pathc; i++ argument
42 #define INIT_GLOB_LIST(list,p) p = list.gl_pathv[i] argument
43 #define GLOB_LIST_DONE(list) globfree(&list) argument