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