Lines Matching full:handle
47 #define GLOB_FIRST_FAILED(handle) ((handle) != 0)
48 #define GLOB_NEXT_NAME(handle,fndp) _dos_findnext(fndp)
49 #define GLOB_NAME_DONE(handle)
51 #define DECL_GLOB_NAME(fnd,drive,dir,fname,ext,handle) \
57 int handle;
62 #define GLOB_FIRST_FAILED(handle) ((handle) == -1)
63 #define GLOB_NEXT_NAME(handle,fndp) _findnext(handle, fndp)
64 #define GLOB_NAME_DONE(handle) _findclose(handle)
66 #define DECL_GLOB_NAME(fnd,drive,dir,fname,ext,handle) \
72 intptr_t handle;
78 #define GLOB_FIRST_FAILED(handle) ((handle) != 0)
79 #define GLOB_NEXT_NAME(handle,fndp) findnext(fndp)
80 #define GLOB_NAME_DONE(handle)
82 #define DECL_GLOB_NAME(fnd,drive,dir,fname,ext,handle) \
88 int handle;