Searched refs:racctp (Results 1 – 2 of 2) sorted by relevance
| /f-stack/freebsd/kern/ |
| H A D | kern_racct.c | 455 racct_create(struct racct **racctp) in racct_create() argument 461 SDT_PROBE1(racct, , racct, create, racctp); in racct_create() 463 KASSERT(*racctp == NULL, ("racct already allocated")); in racct_create() 465 *racctp = uma_zalloc(racct_zone, M_WAITOK | M_ZERO); in racct_create() 469 racct_destroy_locked(struct racct **racctp) in racct_destroy_locked() argument 476 SDT_PROBE1(racct, , racct, destroy, racctp); in racct_destroy_locked() 479 KASSERT(racctp != NULL, ("NULL racctp")); in racct_destroy_locked() 480 KASSERT(*racctp != NULL, ("NULL racct")); in racct_destroy_locked() 482 racct = *racctp; in racct_destroy_locked() 495 *racctp = NULL; in racct_destroy_locked()
|
| /f-stack/freebsd/sys/ |
| H A D | racct.h | 189 void racct_create(struct racct **racctp); 190 void racct_destroy(struct racct **racctp);
|