Lines Matching refs:pRingBufferEntry

128     wifi_ring_buffer_entry *pRingBufferEntry;  in process_log_extscan_capabilities()  local
137 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_log_extscan_capabilities()
138 memset(pRingBufferEntry, 0, SCAN_CAP_ENTRY_SIZE); in process_log_extscan_capabilities()
140 (pRingBufferEntry + 1); in process_log_extscan_capabilities()
216 status = update_connectivity_ring_buf(info, pRingBufferEntry, tot_len); in process_log_extscan_capabilities()
227 wifi_ring_buffer_entry *pRingBufferEntry; in process_bt_coex_scan_event() local
233 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_bt_coex_scan_event()
234 memset(pRingBufferEntry, 0, RING_BUF_ENTRY_SIZE); in process_bt_coex_scan_event()
236 (pRingBufferEntry + 1); in process_bt_coex_scan_event()
269 status = update_connectivity_ring_buf(info, pRingBufferEntry, tot_len); in process_bt_coex_scan_event()
281 wifi_ring_buffer_entry *pRingBufferEntry; in process_bt_coex_event() local
290 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_bt_coex_event()
291 memset(pRingBufferEntry, 0, RING_BUF_ENTRY_SIZE); in process_bt_coex_event()
293 (pRingBufferEntry + 1); in process_bt_coex_event()
389 status = update_connectivity_ring_buf(info, pRingBufferEntry, tot_len); in process_bt_coex_event()
401 wifi_ring_buffer_entry *pRingBufferEntry; in process_extscan_event() local
407 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_extscan_event()
408 memset(pRingBufferEntry, 0, RING_BUF_ENTRY_SIZE); in process_extscan_event()
410 (pRingBufferEntry + 1); in process_extscan_event()
531 status = update_connectivity_ring_buf(info, pRingBufferEntry, tot_len); in process_extscan_event()
543 wifi_ring_buffer_entry *pRingBufferEntry; in process_addba_success_event() local
551 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_addba_success_event()
552 memset(pRingBufferEntry, 0, RING_BUF_ENTRY_SIZE); in process_addba_success_event()
554 (pRingBufferEntry + 1); in process_addba_success_event()
575 status = update_connectivity_ring_buf(info, pRingBufferEntry, tot_len); in process_addba_success_event()
587 wifi_ring_buffer_entry *pRingBufferEntry; in process_addba_failed_event() local
595 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_addba_failed_event()
596 memset(pRingBufferEntry, 0, RING_BUF_ENTRY_SIZE); in process_addba_failed_event()
598 (pRingBufferEntry + 1); in process_addba_failed_event()
619 status = update_connectivity_ring_buf(info, pRingBufferEntry, tot_len); in process_addba_failed_event()
631 wifi_ring_buffer_entry *pRingBufferEntry; in process_roam_event() local
637 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_roam_event()
638 memset(pRingBufferEntry, 0, RING_BUF_ENTRY_SIZE); in process_roam_event()
640 (pRingBufferEntry + 1); in process_roam_event()
762 status = update_connectivity_ring_buf(info, pRingBufferEntry, tot_len); in process_roam_event()
811 wifi_ring_buffer_entry *pRingBufferEntry; in process_beacon_received_event() local
819 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_beacon_received_event()
820 memset(pRingBufferEntry, 0, RING_BUF_ENTRY_SIZE); in process_beacon_received_event()
822 (pRingBufferEntry + 1); in process_beacon_received_event()
838 status = update_connectivity_ring_buf(info, pRingBufferEntry, tot_len); in process_beacon_received_event()
1051 wifi_ring_buffer_entry *pRingBufferEntry; in process_wlan_pe_event() local
1059 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_wlan_pe_event()
1060 memset(pRingBufferEntry, 0, RING_BUF_ENTRY_SIZE); in process_wlan_pe_event()
1062 (pRingBufferEntry + 1); in process_wlan_pe_event()
1088 status = update_connectivity_ring_buf(info, pRingBufferEntry, tot_len); in process_wlan_pe_event()
1100 wifi_ring_buffer_entry *pRingBufferEntry; in process_wlan_eapol_event() local
1108 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_wlan_eapol_event()
1109 memset(pRingBufferEntry, 0, RING_BUF_ENTRY_SIZE); in process_wlan_eapol_event()
1111 (pRingBufferEntry + 1); in process_wlan_eapol_event()
1141 status = update_connectivity_ring_buf(info, pRingBufferEntry, tot_len); in process_wlan_eapol_event()
1155 wifi_ring_buffer_entry *pRingBufferEntry; in process_wakelock_event() local
1170 pRingBufferEntry = (wifi_ring_buffer_entry *)malloc( in process_wakelock_event()
1172 if (pRingBufferEntry == NULL) { in process_wakelock_event()
1177 pRingBufferEntry = (wifi_ring_buffer_entry *)wl_ring_buffer; in process_wakelock_event()
1180 pPowerEvent = (wifi_power_event *)(pRingBufferEntry + 1); in process_wakelock_event()
1194 pRingBufferEntry->entry_size = entry_size; in process_wakelock_event()
1195 pRingBufferEntry->flags = RING_BUFFER_ENTRY_FLAGS_HAS_BINARY | in process_wakelock_event()
1197 pRingBufferEntry->type = ENTRY_TYPE_POWER_EVENT; in process_wakelock_event()
1199 pRingBufferEntry->timestamp = time.tv_usec + time.tv_sec * 1000 * 1000; in process_wakelock_event()
1205 (u8*)pRingBufferEntry, in process_wakelock_event()
1213 if ((u8 *)pRingBufferEntry != wl_ring_buffer) { in process_wakelock_event()
1215 free(pRingBufferEntry); in process_wakelock_event()
1246 wifi_ring_buffer_entry *pRingBufferEntry; in process_wlan_low_resource_failure() local
1253 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_wlan_low_resource_failure()
1254 memset(pRingBufferEntry, 0, RING_BUF_ENTRY_SIZE); in process_wlan_low_resource_failure()
1256 (pRingBufferEntry + 1); in process_wlan_low_resource_failure()
1275 status = update_connectivity_ring_buf(info, pRingBufferEntry, tot_len); in process_wlan_low_resource_failure()
1286 wifi_ring_buffer_entry *pRingBufferEntry = in update_stats_to_ring_buf() local
1290 pRingBufferEntry->entry_size = size - sizeof(wifi_ring_buffer_entry); in update_stats_to_ring_buf()
1291 pRingBufferEntry->flags = RING_BUFFER_ENTRY_FLAGS_HAS_BINARY | in update_stats_to_ring_buf()
1293 pRingBufferEntry->type = ENTRY_TYPE_PKT; in update_stats_to_ring_buf()
1295 pRingBufferEntry->timestamp = time.tv_usec + time.tv_sec * 1000 * 1000; in update_stats_to_ring_buf()
1301 (u8*)pRingBufferEntry, in update_stats_to_ring_buf()
1382 wifi_ring_buffer_entry *pRingBufferEntry = info->rx_aggr_pkts; in populate_rx_aggr_stats() local
1387 pps_entry = (wifi_ring_per_packet_status_entry *)(pRingBufferEntry + 1); in populate_rx_aggr_stats()
1395 index += pRingBufferEntry->entry_size; in populate_rx_aggr_stats()
1396 status = update_stats_to_ring_buf(info, (u8 *)pRingBufferEntry, in populate_rx_aggr_stats()
1397 pRingBufferEntry->entry_size); in populate_rx_aggr_stats()
1406 pRingBufferEntry = (wifi_ring_buffer_entry *)((u8 *)pRingBufferEntry in populate_rx_aggr_stats()
1408 + pRingBufferEntry->entry_size); in populate_rx_aggr_stats()
1420 wifi_ring_buffer_entry *pRingBufferEntry; in parse_rx_stats() local
1454 pRingBufferEntry = (wifi_ring_buffer_entry *)((u8 *)info->rx_aggr_pkts in parse_rx_stats()
1463 pRingBufferEntry->entry_size = len_ring_buffer_entry; in parse_rx_stats()
1465 (wifi_ring_per_packet_status_entry *)(pRingBufferEntry + 1); in parse_rx_stats()
1653 wifi_ring_buffer_entry *pRingBufferEntry = in parse_tx_stats() local
1657 (wifi_ring_per_packet_status_entry *)(pRingBufferEntry + 1); in parse_tx_stats()
1759 (u8 *)pRingBufferEntry, in parse_tx_stats()
1804 (u8 *)pRingBufferEntry, in parse_tx_stats()