Home
last modified time | relevance | path

Searched refs:flist_object_p (Results 1 – 3 of 3) sorted by relevance

/titanic_41/usr/src/cmd/fs.d/cachefs/mdbug/
H A Dflist.c49 flist_object_t *flist_object_p; in flist_create() local
51 flist_object_p = (flist_object_t *)calloc(sizeof (flist_object_t), 1); in flist_create()
53 if (flist_object_p == NULL) in flist_create()
56 flist_object_p->f_count = 0; in flist_create()
57 flist_object_p->f_index = 0; in flist_create()
58 return (flist_object_p); in flist_create()
72 flist_destroy(flist_object_t *flist_object_p) in flist_destroy() argument
74 free(flist_object_p); in flist_destroy()
89 fl_push(flist_object_t *flist_object_p, void *ptr) in fl_push() argument
91 if (flist_object_p->f_count < FLIST_SIZE) { in fl_push()
[all …]
H A Dflist.h58 void flist_destroy(flist_object_t *flist_object_p);
59 void fl_push(flist_object_t *flist_object_p, void *);
60 void fl_pop(flist_object_t *flist_object_p);
61 void *fl_top(flist_object_t *flist_object_p);
62 void *fl_next(flist_object_t *flist_object_p);
63 void fl_clear(flist_object_t *flist_object_p);
64 int fl_space(flist_object_t *flist_object_p);
H A Ddbug.c56 static boolean inlist(flist_object_t *flist_object_p, const char *cp);
617 flist_object_t *flist_object_p; in db_push() local
684 flist_object_p = flist_create(); in db_push()
685 retval = listparse(scan, flist_object_p); in db_push()
691 if (flist_object_p->f_count > 0) { in db_push()
694 (char *)fl_top(flist_object_p))); in db_push()
696 flist_destroy(flist_object_p); in db_push()
734 flist_object_p = flist_create(); in db_push()
735 retval = listparse(scan, flist_object_p); in db_push()
742 if (flist_object_p->f_count > 0) { in db_push()
[all …]