Lines Matching defs:_ftsent
98 typedef struct _ftsent { struct
99 struct _ftsent *fts_cycle; /* cycle node */ argument
100 struct _ftsent *fts_parent; /* parent directory */ argument
101 struct _ftsent *fts_link; /* next file in directory */ argument
102 long fts_number; /* local numeric value */
103 void *fts_pointer; /* local address value */
104 char *fts_accpath; /* access path */
105 char *fts_path; /* root path */
106 int fts_errno; /* errno for this node */
107 int fts_symfd; /* fd for symlink */
108 unsigned short fts_pathlen; /* strlen(fts_path) */
109 unsigned short fts_namelen; /* strlen(fts_name) */
111 ino_t fts_ino; /* inode */
112 dev_t fts_dev; /* device */
113 nlink_t fts_nlink; /* link count */
117 short fts_level; /* depth (-1 to N) */
150 typedef struct _ftsent64 { argument