Home
last modified time | relevance | path

Searched refs:whd_buffer_t (Results 1 – 25 of 32) sorted by relevance

12

/hal_infineon-3.6.0/wifi-host-driver/WiFi_Host_Driver/src/include/
Dwhd_cdc_bdc.h117 whd_buffer_t ioctl_response;
152 whd_buffer_t send_buffer_hnd,
153 whd_buffer_t *response_buffer_hnd);
156 whd_buffer_t send_buffer_hnd,
157 whd_buffer_t *response_buffer_hnd);
160 whd_buffer_t *buffer,
163 whd_result_t whd_network_send_ethernet_data(whd_interface_t ifp, whd_buffer_t buffer);
166 whd_buffer_t *buffer,
169 void whd_process_cdc(whd_driver_t whd_driver, whd_buffer_t buffer);
171 void whd_process_bdc(whd_driver_t whd_driver, whd_buffer_t buffer);
[all …]
Dwhd_buffer_api.h62 whd_result_t whd_host_buffer_get(whd_driver_t whd_driver, whd_buffer_t *buffer, whd_buffer_dir_t di…
80 whd_result_t whd_buffer_release(whd_driver_t whd_driver, whd_buffer_t buffer, whd_buffer_dir_t dire…
94 uint8_t *whd_buffer_get_current_piece_data_pointer(whd_driver_t whd_driver, whd_buffer_t buffer);
109 uint16_t whd_buffer_get_current_piece_size(whd_driver_t whd_driver, whd_buffer_t buffer);
123 whd_result_t whd_buffer_set_size(whd_driver_t whd_driver, whd_buffer_t buffer, uint16_t size);
145 whd_result_t whd_buffer_add_remove_at_front(whd_driver_t whd_driver, whd_buffer_t *buffer, int32_t …
Dwhd_sdpcm.h68 whd_buffer_t send_queue_head[5];
69 whd_buffer_t send_queue_tail[5];
99 extern void whd_sdpcm_process_rx_packet(whd_driver_t whd_driver, whd_buffer_t buffer);
106 extern whd_result_t whd_sdpcm_get_packet_to_send(whd_driver_t whd_driver, whd_buffer_t *buffer);
112 extern whd_result_t whd_send_to_bus(whd_driver_t whd_driver, whd_buffer_t buffer,
Dwhd_network_if.h70 whd_result_t whd_network_process_ethernet_data(whd_interface_t ifp, whd_buffer_t buffer);
/hal_infineon-3.6.0/wifi-host-driver/WiFi_Host_Driver/inc/
Dwhd_network_types.h79 …whd_result_t (*whd_host_buffer_get)(whd_buffer_t *buffer, whd_buffer_dir_t direction, uint16_t siz…
97 void (*whd_buffer_release)(whd_buffer_t buffer, whd_buffer_dir_t direction);
111 uint8_t *(*whd_buffer_get_current_piece_data_pointer)(whd_buffer_t buffer);
126 uint16_t (*whd_buffer_get_current_piece_size)(whd_buffer_t buffer);
139 whd_result_t (*whd_buffer_set_size)(whd_buffer_t buffer, uint16_t size);
161 whd_result_t (*whd_buffer_add_remove_at_front)(whd_buffer_t *buffer, int32_t add_remove_amount);
202 void (*whd_network_process_ethernet_data)(whd_interface_t ifp, whd_buffer_t buffer);
222 extern whd_result_t whd_network_send_ethernet_data(whd_interface_t ifp, whd_buffer_t buffer);
/hal_infineon-3.6.0/whd-bsp-integration/
Dcy_network_buffer.h79 whd_result_t cy_host_buffer_get(whd_buffer_t* buffer, whd_buffer_dir_t direction,
94 void cy_buffer_release(whd_buffer_t buffer, whd_buffer_dir_t direction);
106 uint8_t* cy_buffer_get_current_piece_data_pointer(whd_buffer_t buffer);
119 uint16_t cy_buffer_get_current_piece_size(whd_buffer_t buffer);
130 whd_result_t cy_buffer_set_size(whd_buffer_t buffer, uint16_t size);
151 whd_result_t cy_buffer_add_remove_at_front(whd_buffer_t* buffer, int32_t add_remove_amount);
180 void cy_network_process_ethernet_data(whd_interface_t interface, whd_buffer_t buffer);
/hal_infineon-3.6.0/whd-bsp-integration/COMPONENT_CAT4/
Dcy_map_hostbuffer.c45 return (cy_rslt_t)cy_host_buffer_get((whd_buffer_t*)buffer, (whd_buffer_dir_t)direction, in host_buffer_get()
55 cy_buffer_release((whd_buffer_t)buffer, (whd_buffer_dir_t)direction); in host_buffer_release()
64 return cy_buffer_get_current_piece_data_pointer((whd_buffer_t)buffer); in host_buffer_get_current_piece_data_pointer()
73 return cy_buffer_get_current_piece_size((whd_buffer_t)buffer); in host_buffer_get_current_piece_size()
82 return (cy_rslt_t)cy_buffer_set_size((whd_buffer_t)buffer, size); in host_buffer_set_size()
91 return (cy_rslt_t)cy_buffer_add_remove_at_front((whd_buffer_t*)buffer, add_remove_amount); in host_buffer_add_remove_at_front()
/hal_infineon-3.6.0/wifi-host-driver/WiFi_Host_Driver/src/
Dwhd_buffer_api.c63 whd_result_t whd_host_buffer_get(whd_driver_t whd_driver, whd_buffer_t *buffer, whd_buffer_dir_t di… in whd_host_buffer_get()
93 whd_result_t whd_buffer_release(whd_driver_t whd_driver, whd_buffer_t buffer, whd_buffer_dir_t dire… in whd_buffer_release()
120 uint8_t *whd_buffer_get_current_piece_data_pointer(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_buffer_get_current_piece_data_pointer()
147 uint16_t whd_buffer_get_current_piece_size(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_buffer_get_current_piece_size()
173 whd_result_t whd_buffer_set_size(whd_driver_t whd_driver, whd_buffer_t buffer, uint16_t size) in whd_buffer_set_size()
207 whd_result_t whd_buffer_add_remove_at_front(whd_driver_t whd_driver, whd_buffer_t *buffer, int32_t … in whd_buffer_add_remove_at_front()
Dwhd_sdpcm.c213 static whd_buffer_t whd_sdpcm_get_next_buffer_in_queue(whd_driver_t whd_driver, whd_buffer_t buffe…
214 static void whd_sdpcm_set_next_buffer_in_queue(whd_driver_t whd_driver, whd_buffer_t buf…
215 whd_buffer_t prev_buffer);
250 sdpcm_info->send_queue_head[ac] = (whd_buffer_t)NULL; in whd_sdpcm_init()
251 sdpcm_info->send_queue_tail[ac] = (whd_buffer_t)NULL; in whd_sdpcm_init()
290whd_buffer_t buf = whd_sdpcm_get_next_buffer_in_queue(whd_driver, sdpcm_info->send_queue_head[ac]); in whd_sdpcm_quit()
333 void whd_sdpcm_process_rx_packet(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_sdpcm_process_rx_packet()
475 whd_result_t whd_sdpcm_get_packet_to_send(whd_driver_t whd_driver, whd_buffer_t *buffer) in whd_sdpcm_get_packet_to_send()
576 whd_result_t whd_send_to_bus(whd_driver_t whd_driver, whd_buffer_t buffer, in whd_send_to_bus()
668 static whd_buffer_t whd_sdpcm_get_next_buffer_in_queue(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_sdpcm_get_next_buffer_in_queue()
[all …]
Dwhd_wifi_api.c441 whd_buffer_t buffer; in whd_wifi_set_channel()
500 whd_buffer_t buffer; in whd_wifi_get_channel()
501 whd_buffer_t response; in whd_wifi_get_channel()
527 whd_buffer_t buffer; in whd_wifi_enable_supplicant()
555 whd_buffer_t buffer; in whd_wifi_set_supplicant_key_timeout()
574 whd_buffer_t buffer; in whd_wifi_set_passphrase()
606 whd_buffer_t buffer; in whd_wifi_sae_password()
637 whd_buffer_t buffer; in whd_wifi_enable_sup_set_passphrase()
673 whd_buffer_t buffer; in whd_wifi_set_pmk()
709 whd_buffer_t buffer; in whd_wifi_set_pmksa()
[all …]
Dwhd_cdc_bdc.c194 whd_buffer_t send_buffer_hnd, in whd_cdc_send_ioctl()
195 whd_buffer_t *response_buffer_hnd) in whd_cdc_send_ioctl()
342 whd_buffer_t send_buffer_hnd, in whd_cdc_send_iovar()
343 whd_buffer_t *response_buffer_hnd) in whd_cdc_send_iovar()
364 whd_buffer_t *buffer, in whd_cdc_get_iovar_buffer()
401 whd_result_t whd_network_send_ethernet_data(whd_interface_t ifp, whd_buffer_t buffer) in whd_network_send_ethernet_data()
483 whd_buffer_t *buffer, in whd_cdc_get_ioctl_buffer()
509 void whd_process_cdc(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_process_cdc()
566 void whd_process_bdc(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_process_bdc()
617 void whd_process_bdc_event(whd_driver_t whd_driver, whd_buffer_t buffer, uint16_t size) in whd_process_bdc_event()
Dwhd_clm.c46 whd_buffer_t buffer; in whd_download_wifi_clm_image()
141 whd_buffer_t buffer; in whd_process_clm_data()
142 whd_buffer_t response; in whd_process_clm_data()
Dwhd_ap.c187 whd_buffer_t response; in whd_wifi_init_ap()
188 whd_buffer_t buffer; in whd_wifi_init_ap()
568 whd_buffer_t buffer; in whd_wifi_start_ap()
607 whd_buffer_t buffer; in whd_wifi_stop_ap()
608 whd_buffer_t response; in whd_wifi_stop_ap()
Dwhd_events.c53 static uint8_t *whd_management_alloc_event_msgs_buffer(whd_interface_t ifp, whd_buffer_t *buffer);
254 static uint8_t *whd_management_alloc_event_msgs_buffer(whd_interface_t ifp, whd_buffer_t *buffer) in whd_management_alloc_event_msgs_buffer()
351 whd_buffer_t buffer; in whd_management_set_event_handler()
446 whd_buffer_t buffer; in whd_wifi_set_event_handler()
Dwhd_thread.c125 whd_buffer_t tmp_buf_hnd = NULL; in whd_thread_send_one_packet()
170 whd_buffer_t recv_buffer; in whd_thread_receive_one_packet()
Dwhd_network_if.c71 whd_result_t whd_network_process_ethernet_data(whd_interface_t ifp, whd_buffer_t buffer) in whd_network_process_ethernet_data()
Dwhd_wifi.c58 whd_buffer_t buffer; in whd_wifi_set_mac_address()
/hal_infineon-3.6.0/whd-bsp-integration/COMPONENT_LWIP/
Dcy_network_buffer_lwip.c55 whd_result_t cy_host_buffer_get(whd_buffer_t* buffer, whd_buffer_dir_t direction, in cy_host_buffer_get()
103 void cy_buffer_release(whd_buffer_t buffer, whd_buffer_dir_t direction) in cy_buffer_release()
113 uint8_t* cy_buffer_get_current_piece_data_pointer(whd_buffer_t buffer) in cy_buffer_get_current_piece_data_pointer()
124 uint16_t cy_buffer_get_current_piece_size(whd_buffer_t buffer) in cy_buffer_get_current_piece_size()
135 whd_result_t cy_buffer_set_size(whd_buffer_t buffer, uint16_t size) in cy_buffer_set_size()
157 whd_result_t cy_buffer_add_remove_at_front(whd_buffer_t* buffer, int32_t add_remove_amount) in cy_buffer_add_remove_at_front()
/hal_infineon-3.6.0/wifi-host-driver/WiFi_Host_Driver/src/bus_protocols/
Dwhd_bus_spi_protocol.h59 extern whd_result_t whd_bus_spi_send_buffer(whd_driver_t whd_driver, whd_buffer_t buffer);
63 extern whd_result_t whd_bus_spi_read_frame(whd_driver_t whd_driver, whd_buffer_t *buffer);
Dwhd_bus.h47 typedef whd_result_t (*whd_bus_read_frame_t)(whd_driver_t whd_driver, whd_buffer_t *buffer);
69 typedef whd_result_t (*whd_bus_send_buffer_t)(whd_driver_t whd_driver, whd_buffer_t buffer);
Dwhd_bus_protocol_interface.h105 extern whd_result_t whd_bus_send_buffer(whd_driver_t whd_driver, whd_buffer_t buffer);
111 extern whd_result_t whd_bus_read_frame(whd_driver_t whd_driver, whd_buffer_t *buffer);
Dwhd_bus_m2m_protocol.c86 static whd_result_t whd_bus_m2m_send_buffer(whd_driver_t whd_driver, whd_buffer_t buffer);
90 static whd_result_t whd_bus_m2m_read_frame(whd_driver_t whd_driver, whd_buffer_t *buffer);
250 static whd_result_t whd_bus_m2m_send_buffer(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_bus_m2m_send_buffer()
273 static whd_result_t whd_bus_m2m_read_frame(whd_driver_t whd_driver, whd_buffer_t *buffer) in whd_bus_m2m_read_frame()
Dwhd_bus_sdio_protocol.h177 extern whd_result_t whd_bus_sdio_send_buffer(whd_driver_t whd_driver, whd_buffer_t buffer);
186 extern whd_result_t whd_bus_sdio_read_frame(whd_driver_t whd_driver, whd_buffer_t *buffer);
Dwhd_bus.c120 whd_result_t whd_bus_send_buffer(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_bus_send_buffer()
130 whd_result_t whd_bus_read_frame(whd_driver_t whd_driver, whd_buffer_t *buffer) in whd_bus_read_frame()
Dwhd_bus_spi_protocol.c146 … whd_bus_function_t function, uint32_t address, whd_buffer_t buffer);
263 whd_result_t whd_bus_spi_send_buffer(whd_driver_t whd_driver, whd_buffer_t buffer) in whd_bus_spi_send_buffer()
281 … whd_bus_function_t function, uint32_t address, whd_buffer_t buffer) in whd_bus_spi_transfer_buffer()
471 whd_result_t whd_bus_spi_read_frame(whd_driver_t whd_driver, whd_buffer_t *buffer) in whd_bus_spi_read_frame()

12