Searched refs:p_tree (Results 1 – 2 of 2) sorted by relevance
/titanic_41/usr/src/lib/libshell/common/sh/ |
H A D | tdump.c | 40 static int p_tree(const Shnode_t*); 48 return(p_tree(t)); in sh_tdump() 67 static int p_tree(register const Shnode_t *t) in p_tree() function 77 return(p_tree(t->par.partre)); in p_tree() 84 if(p_tree(t->fork.forktre)<0) in p_tree() 88 if(p_tree(t->if_.iftre)<0) in p_tree() 90 if(p_tree(t->if_.thtre)<0) in p_tree() 92 return(p_tree(t->if_.eltre)); in p_tree() 96 if(p_tree((Shnode_t*)(t->wh.whinc))<0) in p_tree() 104 if(p_tree(t->wh.whtre)<0) in p_tree() [all …]
|
H A D | deparse.c | 54 static void p_tree(const Shnode_t*,int); 70 p_tree(t,tflags); in sh_deparse() 75 static void p_tree(register const Shnode_t *t,register int tflags) in p_tree() function 93 p_tree(t->par.partre,tflags); in p_tree() 109 p_tree(t->fork.forktre,tflags); in p_tree() 123 p_tree(t->fork.forktre,tflags); in p_tree() 140 p_tree(t->if_.iftre,0); in p_tree() 142 p_tree(t->if_.thtre,0); in p_tree() 146 p_tree(t->if_.eltre,0); in p_tree() 169 p_tree(t->wh.whtre,0); in p_tree() [all …]
|