Lines Matching refs:new_ccb
4525 union ccb *new_ccb; in xpt_alloc_ccb() local
4527 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_WAITOK); in xpt_alloc_ccb()
4528 return (new_ccb); in xpt_alloc_ccb()
4534 union ccb *new_ccb; in xpt_alloc_ccb_nowait() local
4536 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_NOWAIT); in xpt_alloc_ccb_nowait()
4537 return (new_ccb); in xpt_alloc_ccb_nowait()
4558 union ccb *new_ccb; in xpt_get_ccb_nowait() local
4560 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_NOWAIT); in xpt_get_ccb_nowait()
4561 if (new_ccb == NULL) in xpt_get_ccb_nowait()
4565 return (new_ccb); in xpt_get_ccb_nowait()
4571 union ccb *new_ccb; in xpt_get_ccb() local
4574 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_WAITOK); in xpt_get_ccb()
4578 return (new_ccb); in xpt_get_ccb()