Lines Matching refs:packet
1002 HTC_PACKET *packet; in extract_htc_pm_packets() local
1008 ITERATE_OVER_LIST_ALLOW_REMOVE(&endpoint->TxQueue.QueueHead, packet, in extract_htc_pm_packets()
1010 if (packet->PktInfo.AsTx.Tag == HTC_TX_PACKET_TAG_AUTO_PM) { in extract_htc_pm_packets()
1011 HTC_PACKET_REMOVE(&endpoint->TxQueue, packet); in extract_htc_pm_packets()
1012 HTC_PACKET_ENQUEUE(queue, packet); in extract_htc_pm_packets()
1124 HTC_PACKET *packet; in extract_htc_system_resume_pkts() local
1130 ITERATE_OVER_LIST_ALLOW_REMOVE(&endpoint->TxQueue.QueueHead, packet, in extract_htc_system_resume_pkts()
1132 if (packet->PktInfo.AsTx.Tag == HTC_TX_PACKET_SYSTEM_RESUME) { in extract_htc_system_resume_pkts()
1133 HTC_PACKET_REMOVE(&endpoint->TxQueue, packet); in extract_htc_system_resume_pkts()
1134 HTC_PACKET_ENQUEUE(queue, packet); in extract_htc_system_resume_pkts()
2839 HTC_PACKET *packet; in htc_flush_endpoint_txlookupQ() local
2849 packet = htc_packet_dequeue(&endpoint->TxLookupQueue); in htc_flush_endpoint_txlookupQ()
2851 if (packet) { in htc_flush_endpoint_txlookupQ()
2853 packet->Status = QDF_STATUS_E_CANCELED; in htc_flush_endpoint_txlookupQ()
2854 send_packet_completion(target, packet); in htc_flush_endpoint_txlookupQ()
2856 qdf_mem_free(packet); in htc_flush_endpoint_txlookupQ()