Lines Matching refs:handle
54 void Capture_close(Capture_Handle handle) in Capture_close() argument
56 handle->fxnTablePtr->closeFxn(handle); in Capture_close()
62 int_fast16_t Capture_control(Capture_Handle handle, uint_fast16_t cmd, in Capture_control() argument
65 return (handle->fxnTablePtr->controlFxn(handle, cmd, arg)); in Capture_control()
95 Capture_Handle handle = NULL; in Capture_open() local
105 handle = (Capture_Handle) &(Capture_config[index]); in Capture_open()
106 handle = handle->fxnTablePtr->openFxn(handle, params); in Capture_open()
109 return (handle); in Capture_open()
123 int32_t Capture_start(Capture_Handle handle) in Capture_start() argument
125 return (handle->fxnTablePtr->startFxn(handle)); in Capture_start()
131 void Capture_stop(Capture_Handle handle) in Capture_stop() argument
133 handle->fxnTablePtr->stopFxn(handle); in Capture_stop()