Home
last modified time | relevance | path

Searched refs:p_bt_msg (Results 1 – 3 of 3) sorted by relevance

/hal_infineon-latest/btstack-integration/COMPONENT_BTSS-IPC/platform/ipc/
Dcybt_host_stack_platform_interface.c76 uint8_t *p_bt_msg; in host_stack_get_acl_to_lower_buffer() local
78 p_bt_msg = cybt_platform_hci_get_buffer(HCI_PACKET_TYPE_ACL, size); in host_stack_get_acl_to_lower_buffer()
80 if(NULL == p_bt_msg) in host_stack_get_acl_to_lower_buffer()
85 return (p_bt_msg); in host_stack_get_acl_to_lower_buffer()
132 uint8_t *p_bt_msg; in host_stack_send_iso_to_lower() local
148 p_bt_msg = cybt_platform_hci_get_buffer(HCI_PACKET_TYPE_ISO, len); in host_stack_send_iso_to_lower()
150 if(NULL == p_bt_msg) in host_stack_send_iso_to_lower()
156 memcpy(p_bt_msg, p_data, len); in host_stack_send_iso_to_lower()
158 result = cybt_platform_hci_write(HCI_PACKET_TYPE_ISO, p_bt_msg, len); in host_stack_send_iso_to_lower()
175 uint8_t *p_bt_msg; in host_stack_send_cmd_to_lower() local
[all …]
Dcybt_bt_task.c89 cybt_result_t cybt_send_msg_to_bt_task(void *p_bt_msg, in cybt_send_msg_to_bt_task() argument
96 if(NULL == p_bt_msg /* npal || bt_task_queue == 0*/) in cybt_send_msg_to_bt_task()
101 …if((cybt_platform_get_event_id(p_bt_msg) == BT_EVT_CORE_HCI) && (BT_TASK_QUEUE_UTIL_HIGH_THRESHHOL… in cybt_send_msg_to_bt_task()
107 result = cy_rtos_put_queue(&bt_task_queue, (void *) &p_bt_msg, 0, is_from_isr); in cybt_send_msg_to_bt_task()
/hal_infineon-latest/btstack-integration/COMPONENT_BTSS-IPC/platform/ipc/include/
Dcybt_platform_task.h165 cybt_result_t cybt_send_msg_to_bt_task(void *p_bt_msg,