Searched refs:fcb (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/auditreduce/
H A Doption.c715 audit_fcb_t *fcb; local
722 * Use a single fcb to do this.
725 fcb = (audit_fcb_t *)a_calloc(1, sizeof (*fcb) + strlen(std));
726 (void) strcpy(fcb->fcb_file, std);
727 fcb->fcb_suffix = fcb->fcb_name = fcb->fcb_file;
728 fcb->fcb_next = NULL;
729 fcb
870 audit_fcb_t *fcb, *fcbp, *fcbprev; local
966 check_file(audit_fcb_t *fcb, int do_check) argument
[all...]
H A Dmain.c356 audit_fcb_t *fcb, *fcbn; local
369 for (fcb = pcb->pcb_first; fcb != NULL; /* */) {
370 fcbn = fcb->fcb_next;
371 free((char *)fcb);
372 fcb = fcbn;
601 audit_fcb_t *fcb; local
605 fcb = pcb->pcb_dfirst;
606 while (fcb != NULL) {
613 if (fcb
[all...]
H A Dproc.c230 * .arg pcb - pcb holding the fcb's (files).
240 audit_fcb_t *fcb; local
246 if ((fcb = pcb->pcb_first) == NULL) {
254 if ((fp = fopen(fcb->fcb_file, "r")) == NULL) {
258 ar, fcb->fcb_file);
269 pcb->pcb_first = fcb->fcb_next;
281 if (check_header(fp, fcb->fcb_name)) {
285 ar, error_str, fcb->fcb_file);
291 ar, fcb->fcb_file);
294 pcb->pcb_first = fcb
[all...]

Completed in 61 milliseconds