Lines Matching refs:lbuf
183 struct lbuf { struct
230 static struct lbuf *nxtlbf; /* ptr to next lbuf to be assigned */
231 static struct lbuf **flist; /* ptr to list of lbuf pointers */
232 static struct lbuf *gstat(char *, int, struct ditem *);
236 static void pentry(struct lbuf *);
243 static void pem(struct lbuf **, struct lbuf **, int);
248 static int compar(struct lbuf **pp1, struct lbuf **pp2);
249 static void record_ancestry(char *, struct stat *, struct lbuf *,
356 static int get_sysxattr(char *, struct lbuf *);
357 static void set_sysattrb_display(char *, boolean_t, struct lbuf *);
358 static void set_sysattrtm_display(char *, struct lbuf *);
360 static void print_time(struct lbuf *);
361 static void format_attrtime(struct lbuf *);
362 static void *xmalloc(size_t, struct lbuf *);
363 static void free_sysattr(struct lbuf *);
407 struct lbuf *ep; in main()
408 struct lbuf lb; in main()
1010 if (((flist = malloc(maxfils * sizeof (struct lbuf *))) == NULL) || in main()
1011 ((nxtlbf = malloc(quantn * sizeof (struct lbuf))) == NULL)) { in main()
1087 qsort(flist, (unsigned)nargs, sizeof (struct lbuf *), in main()
1133 struct lbuf *ap; in pdirectory()
1165 sizeof (struct lbuf *), in pdirectory()
1201 pem(struct lbuf **slp, struct lbuf **lp, int tot_flag) in pem()
1205 struct lbuf **ep; in pem()
1245 pentry(struct lbuf *ap) in pentry()
1247 struct lbuf *p; in pentry()
1544 struct lbuf *ep; in rddir()
1623 record_ancestry(char *file, struct stat *pstatb, struct lbuf *rep, in record_ancestry()
1701 grp_mask_to_mode(struct lbuf *p) in grp_mask_to_mode()
1762 static struct lbuf *
1766 struct lbuf *rep; in gstat()
1786 maxfils * sizeof (struct lbuf *))) == NULL) || in gstat()
1788 sizeof (struct lbuf))) == NULL)) { in gstat()
1810 (void) memset((void *) rep, 0, sizeof (struct lbuf)); in gstat()
2273 compar(struct lbuf **pp1, struct lbuf **pp2) in compar()
2275 struct lbuf *p1, *p2; in compar()
2443 get_sysxattr(char *fname, struct lbuf *rep) in get_sysxattr()
2494 set_sysattrb_display(char *name, boolean_t val, struct lbuf *rep) in set_sysattrb_display()
2532 set_sysattrtm_display(char *name, struct lbuf *rep) in set_sysattrtm_display()
2576 format_attrtime(struct lbuf *p) in format_attrtime()
2608 print_time(struct lbuf *p) in print_time()
3089 free_sysattr(struct lbuf *p) in free_sysattr()
3112 xmalloc(size_t size, struct lbuf *p) in xmalloc()