Lines Matching refs:lbuf
185 struct lbuf { struct
232 static struct lbuf *nxtlbf; /* ptr to next lbuf to be assigned */
233 static struct lbuf **flist; /* ptr to list of lbuf pointers */
234 static struct lbuf *gstat(char *, int, struct ditem *);
240 static void pentry(struct lbuf *);
247 static void pem(struct lbuf **, struct lbuf **, int);
252 static int compar(struct lbuf **pp1, struct lbuf **pp2);
253 static void record_ancestry(char *, struct stat *, struct lbuf *,
360 static int get_sysxattr(char *, struct lbuf *);
361 static void set_sysattrb_display(char *, boolean_t, struct lbuf *);
362 static void set_sysattrtm_display(char *, struct lbuf *);
364 static void print_time(struct lbuf *);
365 static void format_attrtime(struct lbuf *);
366 static void *xmalloc(size_t, struct lbuf *);
367 static void free_sysattr(struct lbuf *);
411 struct lbuf *ep; in main()
412 struct lbuf lb; in main()
1014 if (((flist = malloc(maxfils * sizeof (struct lbuf *))) == NULL) || in main()
1015 ((nxtlbf = malloc(quantn * sizeof (struct lbuf))) == NULL)) { in main()
1091 qsort(flist, (unsigned)nargs, sizeof (struct lbuf *), in main()
1137 struct lbuf *ap; in pdirectory()
1169 sizeof (struct lbuf *), in pdirectory()
1205 pem(struct lbuf **slp, struct lbuf **lp, int tot_flag) in pem()
1209 struct lbuf **ep; in pem()
1249 pentry(struct lbuf *ap) in pentry()
1251 struct lbuf *p; in pentry()
1573 struct lbuf *ep; in rddir()
1652 record_ancestry(char *file, struct stat *pstatb, struct lbuf *rep, in record_ancestry()
1730 grp_mask_to_mode(struct lbuf *p) in grp_mask_to_mode()
1791 static struct lbuf *
1795 struct lbuf *rep; in gstat()
1815 maxfils * sizeof (struct lbuf *))) == NULL) || in gstat()
1817 sizeof (struct lbuf))) == NULL)) { in gstat()
1839 (void) memset((void *) rep, 0, sizeof (struct lbuf)); in gstat()
2364 compar(struct lbuf **pp1, struct lbuf **pp2) in compar()
2366 struct lbuf *p1, *p2; in compar()
2534 get_sysxattr(char *fname, struct lbuf *rep) in get_sysxattr()
2585 set_sysattrb_display(char *name, boolean_t val, struct lbuf *rep) in set_sysattrb_display()
2623 set_sysattrtm_display(char *name, struct lbuf *rep) in set_sysattrtm_display()
2667 format_attrtime(struct lbuf *p) in format_attrtime()
2699 print_time(struct lbuf *p) in print_time()
3180 free_sysattr(struct lbuf *p) in free_sysattr()
3203 xmalloc(size_t size, struct lbuf *p) in xmalloc()