/titanic_50/usr/src/lib/libast/common/include/ |
H A D | fts.h | 98 typedef struct Ftsent FTSENT; typedef 105 FTSENT* fts_cycle; /* offender if cycle */ 106 FTSENT* fts_link; /* next child */ 107 FTSENT* fts_parent; /* parent directory */ 151 extern FTSENT* fts_children(FTS*, int); 154 extern int fts_local(FTSENT*); 155 extern int fts_notify(int(*)(FTS*, FTSENT*, void*), void*); 156 extern FTS* fts_open(char* const*, int, int(*)(FTSENT* const*, FTSENT* const*)); 157 extern FTSENT* fts_read(FTS*); 158 extern int fts_set(FTS*, FTSENT*, int);
|
H A D | ftwalk.h | 49 #define FTSENT Ftw_t /* <fts.h> internal */ macro
|
/titanic_50/usr/src/lib/libast/amd64/include/ast/ |
H A D | fts.h | 107 typedef struct Ftsent FTSENT; typedef 114 FTSENT* fts_cycle; /* offender if cycle */ 115 FTSENT* fts_link; /* next child */ 116 FTSENT* fts_parent; /* parent directory */ 161 extern __MANGLE__ FTSENT* fts_children __PROTO__((FTS*, int)); 164 extern __MANGLE__ int fts_local __PROTO__((FTSENT*)); 165 extern __MANGLE__ int fts_notify __PROTO__((int(*)(FTS*, FTSENT*, __V_*), __V_*)); 166 extern __MANGLE__ FTS* fts_open __PROTO__((char* const*, int, int(*)(FTSENT* const*, FTSENT* const*… 167 extern __MANGLE__ FTSENT* fts_read __PROTO__((FTS*)); 168 extern __MANGLE__ int fts_set __PROTO__((FTS*, FTSENT*, int));
|
H A D | ftwalk.h | 58 #define FTSENT Ftw_t /* <fts.h> internal */ macro
|
/titanic_50/usr/src/lib/libast/sparc/include/ast/ |
H A D | fts.h | 107 typedef struct Ftsent FTSENT; typedef 114 FTSENT* fts_cycle; /* offender if cycle */ 115 FTSENT* fts_link; /* next child */ 116 FTSENT* fts_parent; /* parent directory */ 161 extern __MANGLE__ FTSENT* fts_children __PROTO__((FTS*, int)); 164 extern __MANGLE__ int fts_local __PROTO__((FTSENT*)); 165 extern __MANGLE__ int fts_notify __PROTO__((int(*)(FTS*, FTSENT*, __V_*), __V_*)); 166 extern __MANGLE__ FTS* fts_open __PROTO__((char* const*, int, int(*)(FTSENT* const*, FTSENT* const*… 167 extern __MANGLE__ FTSENT* fts_read __PROTO__((FTS*)); 168 extern __MANGLE__ int fts_set __PROTO__((FTS*, FTSENT*, int));
|
H A D | ftwalk.h | 58 #define FTSENT Ftw_t /* <fts.h> internal */ macro
|
/titanic_50/usr/src/lib/libast/sparcv9/include/ast/ |
H A D | fts.h | 107 typedef struct Ftsent FTSENT; typedef 114 FTSENT* fts_cycle; /* offender if cycle */ 115 FTSENT* fts_link; /* next child */ 116 FTSENT* fts_parent; /* parent directory */ 161 extern __MANGLE__ FTSENT* fts_children __PROTO__((FTS*, int)); 164 extern __MANGLE__ int fts_local __PROTO__((FTSENT*)); 165 extern __MANGLE__ int fts_notify __PROTO__((int(*)(FTS*, FTSENT*, __V_*), __V_*)); 166 extern __MANGLE__ FTS* fts_open __PROTO__((char* const*, int, int(*)(FTSENT* const*, FTSENT* const*… 167 extern __MANGLE__ FTSENT* fts_read __PROTO__((FTS*)); 168 extern __MANGLE__ int fts_set __PROTO__((FTS*, FTSENT*, int));
|
H A D | ftwalk.h | 58 #define FTSENT Ftw_t /* <fts.h> internal */ macro
|
/titanic_50/usr/src/lib/libast/i386/include/ast/ |
H A D | fts.h | 107 typedef struct Ftsent FTSENT; typedef 114 FTSENT* fts_cycle; /* offender if cycle */ 115 FTSENT* fts_link; /* next child */ 116 FTSENT* fts_parent; /* parent directory */ 161 extern __MANGLE__ FTSENT* fts_children __PROTO__((FTS*, int)); 164 extern __MANGLE__ int fts_local __PROTO__((FTSENT*)); 165 extern __MANGLE__ int fts_notify __PROTO__((int(*)(FTS*, FTSENT*, __V_*), __V_*)); 166 extern __MANGLE__ FTS* fts_open __PROTO__((char* const*, int, int(*)(FTSENT* const*, FTSENT* const*… 167 extern __MANGLE__ FTSENT* fts_read __PROTO__((FTS*)); 168 extern __MANGLE__ int fts_set __PROTO__((FTS*, FTSENT*, int));
|
H A D | ftwalk.h | 58 #define FTSENT Ftw_t /* <fts.h> internal */ macro
|
/titanic_50/usr/src/lib/libast/common/misc/ |
H A D | fts.c | 46 FTSENT* parent; /* top parent */ \ 47 FTSENT* todo; /* todo list */ \ 48 FTSENT* top; /* top element */ \ 49 FTSENT* root; \ 50 FTSENT* bot; /* bottom element */ \ 51 FTSENT* free; /* free element */ \ 52 FTSENT* diroot; \ 53 FTSENT* curdir; \ 54 FTSENT* current; /* current element */ \ 55 FTSENT* previous; /* previous current */ \ [all …]
|
H A D | ftwalk.c | 56 register FTSENT* e; in ftwalk() 63 FTSENT* x; in ftwalk() 64 FTSENT* dd[2]; in ftwalk() 81 if (!(e = newof(0, FTSENT, 1, ns))) in ftwalk()
|
/titanic_50/usr/src/lib/libcmd/common/ |
H A D | fts_fix.c | 40 FTSENT* 43 FTSENT* oe; in _fts_read() 45 static FTSENT* ne; in _fts_read() 47 if ((oe = _ast_fts_read(fts)) && ast.version < 20100102L && (ne || (ne = newof(0, FTSENT, 1, 0)))) in _fts_read()
|
H A D | cksum.c | 134 int (*sort)(FTSENT* const*, FTSENT* const*); 424 order(FTSENT* const* f1, FTSENT* const* f2) in order() 449 FTSENT* ent; in b_cksum()
|
H A D | fts_fix.h | 46 extern FTSENT* fts_read(FTS*);
|
H A D | rm.c | 105 rm(State_t* state, register FTSENT* ent) in rm() 343 FTSENT* ent; in b_rm()
|
H A D | chmod.c | 158 register FTSENT*ent; in b_chmod()
|
H A D | cp.c | 218 visit(State_t* state, register FTSENT* ent) in visit() 234 FTSENT* sub; in visit() 663 FTSENT* ent; in b_cp()
|
H A D | chgrp.c | 221 register FTSENT*ent; in b_chgrp()
|
/titanic_50/usr/src/lib/libdll/common/ |
H A D | dllscan.c | 39 FTSENT* ent; \ 178 vercmp(FTSENT* const* ap, FTSENT* const* bp) in vercmp()
|
/titanic_50/usr/src/lib/libshell/common/sh/ |
H A D | main.c | 86 static int fts_sigcheck(FTS* fp, FTSENT* ep, void* context) in fts_sigcheck()
|
/titanic_50/usr/src/lib/libast/common/ |
H A D | RELEASE | 590 misc/fts.c: add FTSENT.stack to eliminate getlist() recursion
|