Lines Matching refs:bcp
3566 strbufcall_t *bcp; in runbufcalls() local
3581 for (bcp = strbcalls.bc_head; bcp; bcp = bcp->bc_next) in runbufcalls()
3591 while ((bcp = strbcalls.bc_head) != NULL && nevent) { in runbufcalls()
3594 if (bcp->bc_size <= count) { in runbufcalls()
3595 bcp->bc_executor = curthread; in runbufcalls()
3597 (*bcp->bc_func)(bcp->bc_arg); in runbufcalls()
3599 bcp->bc_executor = NULL; in runbufcalls()
3601 strbcalls.bc_head = bcp->bc_next; in runbufcalls()
3602 kmem_free(bcp, sizeof (strbufcall_t)); in runbufcalls()
3610 if (bcp->bc_next != NULL) { in runbufcalls()
3611 strbcalls.bc_head = bcp->bc_next; in runbufcalls()
3612 bcp->bc_next = NULL; in runbufcalls()
3613 strbcalls.bc_tail->bc_next = bcp; in runbufcalls()
3614 strbcalls.bc_tail = bcp; in runbufcalls()