| /bsp/n32/libraries/N32WB452_Firmware_Library/n32wb452_ble_driver/inc/ |
| A D | gapm_util.h | 180 #define GAPM_GET_OP_STATE(operation) \ argument 181 ((operation).state & (GAPM_OP_MASK)) 184 #define GAPM_SET_OP_STATE(operation, new_state) \ argument 185 (operation).state = (((operation).state & ~(GAPM_OP_MASK)) | (new_state)) 189 #define GAPM_IS_OP_FIELD_SET(operation, field) \ argument 190 ((((operation).state) & (GAPM_OP_##field##_MASK)) != 0) 193 #define GAPM_SET_OP_FIELD(operation, field) \ argument 194 ((operation).state) |= (GAPM_OP_##field##_MASK) 197 #define GAPM_CLEAR_OP_FIELD(operation, field) \ argument 198 ((operation).state) &= ~(GAPM_OP_##field##_MASK) [all …]
|
| A D | gapm_task.h | 439 uint8_t operation; member 446 uint8_t operation; member 456 uint8_t operation; member 464 uint8_t operation; member 533 uint8_t operation; member 543 uint8_t operation; member 557 uint8_t operation; member 598 uint8_t operation; member 610 uint8_t operation; member 634 uint8_t operation; member [all …]
|
| A D | gapc_task.h | 330 uint8_t operation; member 338 uint8_t operation; member 390 uint8_t operation; member 420 uint8_t operation; member 573 uint8_t operation; member 690 uint8_t operation; member 789 uint8_t operation; member 826 uint8_t operation; member 852 uint8_t operation; member 862 uint8_t operation; member [all …]
|
| A D | gattc_task.h | 270 uint8_t operation; member 279 uint8_t operation; member 291 uint8_t operation; member 309 uint8_t operation; member 416 uint8_t operation; member 451 uint8_t operation; member 473 uint8_t operation; member 517 uint8_t operation; member 530 uint8_t operation; member 587 uint8_t operation; member [all …]
|
| A D | gapm_int.h | 62 uint8_t operation; member 205 void* operation[GAPM_OP_MAX]; member 317 void gapm_send_error_evt(uint8_t operation, const ke_task_id_t requester, uint8_t status); 333 return gapm_env.operation[op_type]; in gapm_get_operation_ptr() 350 gapm_env.operation[op_type] = op; in gapm_set_operation_ptr() 404 uint8_t gapm_con_create(ke_msg_id_t const msgid, uint8_t operation, struct hci_le_enh_con_cmp_evt c… 468 void gapm_update_state(uint8_t operation, bool busy);
|
| A D | l2cc_task.h | 154 uint8_t operation; member 168 uint8_t operation; member 243 uint8_t operation; member 268 uint8_t operation; member 291 uint8_t operation; member
|
| A D | l2cc.h | 136 uint8_t operation; member 159 uint8_t operation; member 198 void* operation[L2CC_OP_MAX]; member
|
| /bsp/n32/libraries/N32WB452_Firmware_Library/n32wb452_ble_driver/profile/ |
| A D | user.c | 186 user_env->operation = NULL; in user_init() 201 if (user_env->operation != NULL) in user_destroy() 203 ke_free(user_env->operation); in user_destroy() 283 ASSERT_ERR(user_env->operation != NULL); in user_exe_operation() 294 … evt->operation = (user_env->operation->op != USER_DATA_NTF) ? GATTC_INDICATE : GATTC_NOTIFY; in user_exe_operation() 295 evt->length = user_env->operation->length; in user_exe_operation() 296 evt->handle = user_env->operation->handle; in user_exe_operation() 301 user_env->operation->cursor++; in user_exe_operation() 304 user_env->operation->cursor++; in user_exe_operation() 322 ke_free(user_env->operation); in user_exe_operation() [all …]
|
| A D | bass.c | 201 if (bass_env->operation != NULL) in bass_destroy() 203 ke_free(bass_env->operation); in bass_destroy() 261 batt_lvl->operation = GATTC_NOTIFY; in bass_notify_batt_lvl() 385 ASSERT_ERR(bass_env->operation != NULL); in bass_exe_operation() 390 if (bass_env->operation->id == BASS_ENABLE_REQ) in bass_exe_operation() 409 else if (bass_env->operation->id == BASS_BATT_LEVEL_UPD_REQ) in bass_exe_operation() 435 if (bass_env->operation->id == BASS_ENABLE_REQ) in bass_exe_operation() 437 …nable_rsp * rsp = KE_MSG_ALLOC(BASS_ENABLE_RSP, bass_env->operation->src_id,bass_env->operation->d… in bass_exe_operation() 442 else if (bass_env->operation->id == BASS_BATT_LEVEL_UPD_REQ) in bass_exe_operation() 449 ke_free(bass_env->operation); in bass_exe_operation() [all …]
|
| A D | user_task.c | 134 …user_env->operation = (struct user_op *) ke_malloc(sizeof(struct user_op) + param->send_param_l… in user_data_notify_req_handler() 137 user_env->operation->cursor = 0; in user_data_notify_req_handler() 138 user_env->operation->dest_id = src_id; in user_data_notify_req_handler() 139 user_env->operation->conidx = GAP_INVALID_CONIDX; in user_data_notify_req_handler() 143 user_env->operation->op = user_env->ntf_ind_cfg[param->att_idx+1];// USER_DATA_NTF; in user_data_notify_req_handler() 145 user_env->operation->handle = USER_HANDLE(param->att_idx); in user_data_notify_req_handler() 150 user_env->operation->length = param->send_param_length; in user_data_notify_req_handler() 151 … memcpy(&(user_env->operation->data[0]), param->send_param_payload, user_env->operation->length); in user_data_notify_req_handler()
|
| A D | app_task.c | 176 cmd->operation = GAPM_RESET; in gapm_device_ready_ind_handler() 198 ble_log(BLE_DEBUG,"operation:%x\r\n",param->operation); in appm_gapm_cmp_evt_handler() 200 switch (param->operation) in appm_gapm_cmp_evt_handler() 212 cmd->operation = GAPM_SET_DEV_CONFIG; in appm_gapm_cmp_evt_handler() 258 cmd->operation = GAPM_GEN_RAND_NB; in appm_gapm_cmp_evt_handler() 274 cmd->operation = GAPM_GEN_RAND_NB; in appm_gapm_cmp_evt_handler() 287 cmd->operation = GAPM_SET_IRK; in appm_gapm_cmp_evt_handler() 296 ASSERT_INFO(param->status == GAP_ERR_NO_ERROR, param->operation, param->status); in appm_gapm_cmp_evt_handler() 310 dev_cmd->operation = GAPM_GET_DEV_BDADDR; in appm_gapm_cmp_evt_handler() 330 ASSERT_INFO(param->status == GAP_ERR_NO_ERROR, param->operation, param->status); in appm_gapm_cmp_evt_handler() [all …]
|
| A D | app.c | 210 cmd->operation = GAPC_DISCONNECT; in appm_disconnect() 259 cmd->operation = GAPM_CANCEL; in appm_stop_advertising() 269 cmd->operation = GATTC_MTU_EXCH; in appm_set_mtu() 289 cmd->operation = GAPC_UPDATE_PARAMS; in appm_update_param()
|
| A D | prf_utils.c | 86 req->operation = GATTC_READ; in prf_read_char_send() 105 reg->operation = GATTC_REGISTER; in prf_register_atthdl2gatt() 122 reg->operation = GATTC_UNREGISTER; in prf_unregister_atthdl2gatt() 139 svc_req->operation = GATTC_SDP_DISC_SVC; in prf_disc_svc_send() 158 uint16_t handle, uint8_t* value, uint16_t length, uint8_t operation) in prf_gatt_write() argument 171 wr_char->operation = operation; in prf_gatt_write()
|
| A D | bass_task.c | 106 bass_env->operation = ke_param2msg(param); in bass_enable_req_handler() 143 bass_env->operation = ke_param2msg(param); in bass_batt_level_upd_req_handler() 350 if (param->operation == GATTC_NOTIFY) in gattc_cmp_evt_handler()
|
| /bsp/renesas/rzn2l_etherkit/rzn_gen/ |
| A D | common_data.c | 9 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW 14 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW 37 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW, 45 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW, 53 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW, 61 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW,
|
| /bsp/renesas/rzn2l_rsk/rzn_gen/ |
| A D | common_data.c | 9 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW 14 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW 37 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW, 45 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW, 53 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW, 61 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW,
|
| /bsp/renesas/rzt2m_rsk/rzt_gen/ |
| A D | common_data.c | 9 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW 14 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW 37 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW, 45 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW, 53 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW, 61 .operation = IOPORT_EVENT_OUTPUT_OPERATION_LOW,
|
| /bsp/acm32/acm32f0x0-nucleo/libraries/HAL_Driver/Inc/ |
| A D | HAL_AES.h | 63 UINT8 operation, 74 UINT8 operation,
|
| /bsp/acm32/acm32f4xx-nucleo/libraries/HAL_Driver/Inc/ |
| A D | HAL_AES.h | 74 uint8_t operation, 85 uint8_t operation,
|
| /bsp/allwinner/libraries/sunxi-hal/hal/source/spinor/ |
| A D | Kconfig | 47 To improve write performance by merging 4K page erase operation to 48 32K/64K erase operation. This cache layer holds a 64K buffer. It just 49 will cache sequential erase/write operation. There are three ways to 81 operation, we unlock (unprotect) the individual block we want and still
|
| /bsp/ht32/ht32f52352/applications/ |
| A D | test.c | 163 MSH_CMD_EXPORT(sys_run_task, sys run task operation); 226 MSH_CMD_EXPORT(gpio_output_task, gpio output task operation); 313 MSH_CMD_EXPORT(gpio_input_task, gpio input task operation); 660 MSH_CMD_EXPORT(adc_task, adc task operation); 733 MSH_CMD_EXPORT(wdt_task, wdt task operation); 800 MSH_CMD_EXPORT(usbd_task, usbd task operation);
|
| /bsp/ht32/ht32f12366/applications/ |
| A D | test.c | 162 MSH_CMD_EXPORT(sys_run_task, sys run task operation); 225 MSH_CMD_EXPORT(gpio_output_task, gpio output task operation); 312 MSH_CMD_EXPORT(gpio_input_task, gpio input task operation); 659 MSH_CMD_EXPORT(adc_task, adc task operation); 732 MSH_CMD_EXPORT(wdt_task, wdt task operation); 799 MSH_CMD_EXPORT(usbd_task, usbd task operation);
|
| /bsp/renesas/rzn2l_rsk/rzn/fsp/inc/instances/ |
| A D | r_ioport.h | 128 ioport_event_output_operation_t operation; ///< Single port operation select member 138 ioport_event_output_operation_t operation; ///< Port group operation select member
|
| /bsp/renesas/rzt2m_rsk/rzt/fsp/inc/instances/ |
| A D | r_ioport.h | 128 ioport_event_output_operation_t operation; ///< Single port operation select member 138 ioport_event_output_operation_t operation; ///< Port group operation select member
|
| /bsp/renesas/rzn2l_etherkit/rzn/fsp/inc/instances/ |
| A D | r_ioport.h | 128 ioport_event_output_operation_t operation; ///< Single port operation select member 138 ioport_event_output_operation_t operation; ///< Port group operation select member
|