Home | History | Annotate | Download | only in src

Lines Matching refs:my_current

554             OS_802_11_BSSID_EX *my_current;
589 my_current = &my_list->Bssid[0];
594 my_current = (OS_802_11_BSSID_EX *) (((char *) my_current) + my_current->Length);
601 if (event + my_current->Length > end_buf)
611 os_memoryCopy(pCmdInterpret->hOs, iwe.u.ap_addr.sa_data, &my_current->MacAddress, ETH_ALEN);
620 iwe.u.data.length = min((TI_UINT8)my_current->Ssid.SsidLength, (TI_UINT8)32);
622 event = iwe_stream_add_point(event, end_buf, &iwe, my_current->Ssid.Ssid);
624 event = iwe_stream_add_point(&info,event, end_buf, &iwe, my_current->Ssid.Ssid);
629 os_memoryCopy(pCmdInterpret->hOs, (void*)iwe.u.name, (void*)ieee80211_modes[my_current->NetworkTypeInUse], IFNAMSIZ);
638 if (my_current->InfrastructureMode == os802_11IBSS)
640 else if (my_current->InfrastructureMode == os802_11Infrastructure)
653 iwe.u.freq.m = my_current->Configuration.Union.channel;
666 iwe.u.qual.level = my_current->Rssi;
675 if ((my_current->Capabilities >> CAP_PRIVACY_SHIFT) & CAP_PRIVACY_MASK)
692 if (my_current->SupportedRates[j])
694 iwe.u.bitrate.value = ((my_current->SupportedRates[j] & 0x7f) * 500000);
708 sprintf(buf, "Bcn int = %d ms ", my_current->Configuration.BeaconPeriod);
722 while(offset < my_current->IELength)
724 pRsnIes = (OS_802_11_VARIABLE_IEs*)&(my_current->IEs[offset]);
727 os_memoryCopy (pCmdInterpret->hOs, ies + ies_offset, (char *)&(my_current->IEs[offset]), pRsnIes->Length + 2);
743 my_current = (OS_802_11_BSSID_EX *) (((char *) my_current) + my_current->Length);
1421 OS_802_11_BSSID_EX *my_current;
1497 my_current = os_memoryAlloc (pCmdInterpret->hOs,MAX_BEACON_BODY_LENGTH);
1498 if (!my_current) {
1503 pParam->content.pSiteMgrSelectedSiteInfo = my_current;
1518 os_memoryFree(pCmdInterpret->hOs,my_current,MAX_BEACON_BODY_LENGTH);