Lines Matching refs:lbuf

184 struct	lbuf	{  struct
236 static struct lbuf *nxtlbf; /* ptr to next lbuf to be assigned */
237 static struct lbuf **flist; /* ptr to list of lbuf pointers */
238 static struct lbuf *gstat(char *, int, struct ditem *);
242 static void pentry(struct lbuf *);
249 static void pem(struct lbuf **, struct lbuf **, int);
254 static int compar(struct lbuf **pp1, struct lbuf **pp2);
258 static void record_ancestry(char *, struct stat *, struct lbuf *,
365 static int get_sysxattr(char *, struct lbuf *);
366 static void set_sysattrb_display(char *, boolean_t, struct lbuf *);
367 static void set_sysattrtm_display(char *, struct lbuf *);
369 static void print_time(struct lbuf *);
370 static void format_attrtime(struct lbuf *);
371 static void *xmalloc(size_t, struct lbuf *);
372 static void free_sysattr(struct lbuf *);
416 struct lbuf *ep; in main()
417 struct lbuf lb; in main()
1020 if (((flist = malloc(maxfils * sizeof (struct lbuf *))) == NULL) || in main()
1021 ((nxtlbf = malloc(quantn * sizeof (struct lbuf))) == NULL)) { in main()
1097 qsort(flist, (unsigned)nargs, sizeof (struct lbuf *), in main()
1143 struct lbuf *ap; in pdirectory()
1175 sizeof (struct lbuf *), in pdirectory()
1211 pem(struct lbuf **slp, struct lbuf **lp, int tot_flag) in pem()
1215 struct lbuf **ep; in pem()
1255 pentry(struct lbuf *ap) in pentry()
1257 struct lbuf *p; in pentry()
1551 struct lbuf *ep; in rddir()
1630 record_ancestry(char *file, struct stat *pstatb, struct lbuf *rep, in record_ancestry()
1708 grp_mask_to_mode(struct lbuf *p) in grp_mask_to_mode()
1769 static struct lbuf *
1773 struct lbuf *rep; in gstat()
1793 maxfils * sizeof (struct lbuf *))) == NULL) || in gstat()
1795 sizeof (struct lbuf))) == NULL)) { in gstat()
1817 (void) memset((void *) rep, 0, sizeof (struct lbuf)); in gstat()
2280 compar(struct lbuf **pp1, struct lbuf **pp2) in compar()
2282 struct lbuf *p1, *p2; in compar()
2529 get_sysxattr(char *fname, struct lbuf *rep) in get_sysxattr()
2580 set_sysattrb_display(char *name, boolean_t val, struct lbuf *rep) in set_sysattrb_display()
2618 set_sysattrtm_display(char *name, struct lbuf *rep) in set_sysattrtm_display()
2662 format_attrtime(struct lbuf *p) in format_attrtime()
2694 print_time(struct lbuf *p) in print_time()
3175 free_sysattr(struct lbuf *p) in free_sysattr()
3198 xmalloc(size_t size, struct lbuf *p) in xmalloc()