[go: nahoru, domu]

Searched refs:pList (Results 1 - 5 of 5) sorted by relevance

/drivers/staging/vt6655/
H A Dioctl.c59 PSBSSIDList pList; local
306 pList = (PSBSSIDList)kmalloc(sizeof(SBSSIDList) + (sList.uItem * sizeof(SBSSIDItem)),
308 if (pList == NULL) {
312 pList->uItem = sList.uItem;
317 pList->sBSSIDList[ii].uChannel = pBSS->uChannel;
318 pList->sBSSIDList[ii].wBeaconInterval = pBSS->wBeaconInterval;
319 pList->sBSSIDList[ii].wCapInfo = pBSS->wCapInfo;
321 pList->sBSSIDList[ii].uRSSI = (unsigned int)ldBm;
322 memcpy(pList->sBSSIDList[ii].abyBSSID, pBSS->abyBSSID, WLAN_BSSID_LEN);
324 memset(pList
[all...]
/drivers/net/wireless/ath/ath9k/
H A Deeprom.c56 bool ath9k_hw_get_lower_upper_index(u8 target, u8 *pList, u16 listSize, argument
61 if (target <= pList[0]) {
65 if (target >= pList[listSize - 1]) {
71 if (pList[i] == target) {
75 if (target < pList[i + 1]) {
H A Deeprom.h664 bool ath9k_hw_get_lower_upper_index(u8 target, u8 *pList, u16 listSize,
/drivers/staging/rtl8192e/
H A Drtllib_rx.c450 struct list_head *pList = &pTS->RxPendingPktList; local
452 while (pList->next != &pTS->RxPendingPktList) {
454 list_entry(pList->next, struct rx_reorder_entry,
456 pList = pList->next;
458 ((struct rx_reorder_entry *)list_entry(pList->next,
464 pReorderEntry->List.next = pList->next;
466 pReorderEntry->List.prev = pList;
467 pList->next = &pReorderEntry->List;
/drivers/staging/rtl8192u/ieee80211/
H A Dieee80211_rx.c521 struct list_head *pList = &pTS->RxPendingPktList; local
522 while(pList->next != &pTS->RxPendingPktList)
524 if( SN_LESS(pReorderEntry->SeqNum, ((PRX_REORDER_ENTRY)list_entry(pList->next,RX_REORDER_ENTRY,List))->SeqNum) )
526 pList = pList->next;
528 else if( SN_EQUAL(pReorderEntry->SeqNum, ((PRX_REORDER_ENTRY)list_entry(pList->next,RX_REORDER_ENTRY,List))->SeqNum) )
537 pReorderEntry->List.next = pList->next;
539 pReorderEntry->List.prev = pList;
540 pList->next = &pReorderEntry->List;

Completed in 419 milliseconds