Lines Matching refs:_Nullable
42 struct _ftsent * _Nullable fts_cur; /* current node */
43 struct _ftsent * _Nullable fts_child; /* linked list of children */
44 struct _ftsent * _Nullable * _Nullable fts_array; /* sort array */
46 char * _Nullable fts_path; /* path for this descent */
50 int (* _Nullable fts_compar)(); /* compare function */
68 struct _ftsent * _Nullable fts_cycle; /* cycle node */
69 struct _ftsent * _Nullable fts_parent; /* parent directory */
70 struct _ftsent * _Nullable fts_link; /* next file in directory */
72 void * _Nullable fts_pointer; /* local address value */
73 char * _Nullable fts_accpath; /* access path */
74 char * _Nullable fts_path; /* root path */
114 struct stat * _Nullable fts_statp; /* stat(2) information */
120 FTSENT* _Nullable fts_children(FTS* _Nonnull __fts, int __options);
122 FTS* _Nullable fts_open(char* _Nonnull const* _Nonnull __path, int __options, int (* _Nullable __comparator)(const FTSENT* _Nonnull * _Nonnull __lhs, const FTSENT* _Nonnull * _Nonnull __rhs));
123 FTSENT* _Nullable fts_read(FTS* _Nonnull __fts);