Searched refs:nfslog_buf (Results 1 – 3 of 3) sorted by relevance
114 struct nfslog_buf { struct115 struct nfslog_buf *next; argument116 struct nfslog_buf *prev; argument145 struct nfslog_buf *lbp; argument179 extern struct nfslog_buf *nfslog_open_buf(char *, int *);180 extern void nfslog_close_buf(struct nfslog_buf *, int);181 extern struct nfslog_lr *nfslog_get_logrecord(struct nfslog_buf *);
70 static int nfslog_init_buf(char *, struct nfslog_buf *, int *);71 static void nfslog_free_buf(struct nfslog_buf *, int);72 static struct nfslog_lr *nfslog_read_buffer(struct nfslog_buf *);74 static struct nfslog_lr *remove_lrp_from_lb(struct nfslog_buf *,76 static void insert_lrp_to_lb(struct nfslog_buf *,78 static void nfslog_rewrite_bufheader(struct nfslog_buf *);88 struct nfslog_buf *91 struct nfslog_buf *lbp = NULL; in nfslog_open_buf()98 if ((lbp = malloc(sizeof (struct nfslog_buf))) == NULL) { in nfslog_open_buf()102 bzero(lbp, sizeof (struct nfslog_buf)); in nfslog_open_buf()[all …]
83 struct nfslog_buf *lbp = NULL; in process_buffer()