Home | History | Annotate | Download | only in mllite

Lines Matching refs:start_cb

31     inv_start_cb_func start_cb[INV_MAX_START_CB];
46 * @param[in] start_cb function to remove from start notification
49 inv_error_t inv_unregister_mpl_start_notification(inv_error_t (*start_cb)(void))
54 if (inv_start_cb.start_cb[kk] == start_cb) {
57 memmove(&inv_start_cb.start_cb[kk],
58 &inv_start_cb.start_cb[kk+1],
69 * @param[in] start_cb Function callback that will be called when inv_start_mpl() is
73 inv_error_t inv_register_mpl_start_notification(inv_error_t (*start_cb)(void))
78 inv_start_cb.start_cb[inv_start_cb.num_cb] = start_cb;
95 result = inv_start_cb.start_cb[kk]();