Home | History | Annotate | Download | only in src

Lines Matching refs:my_current

636             OS_802_11_BSSID_EX *my_current;
694 my_current = &my_list->Bssid[0];
699 my_current = (OS_802_11_BSSID_EX *) (((char *) my_current) + my_current->Length);
705 if (event + my_current->Length > end_buf)
715 os_memoryCopy(pCmdInterpret->hOs, iwe.u.ap_addr.sa_data, &my_current->MacAddress, ETH_ALEN);
726 iwe.u.data.length = min((TI_UINT8)my_current->Ssid.SsidLength, (TI_UINT8)32);
729 event = iwe_stream_add_point(event, end_buf, &iwe, my_current->Ssid.Ssid);
731 event = iwe_stream_add_point(&info,event, end_buf, &iwe, my_current->Ssid.Ssid);
737 os_memoryCopy(pCmdInterpret->hOs, (void*)iwe.u.name, (void*)ieee80211_modes[my_current->NetworkTypeInUse], IFNAMSIZ);
748 if (my_current->InfrastructureMode == os802_11IBSS)
750 else if (my_current->InfrastructureMode == os802_11Infrastructure)
764 iwe.u.freq.m = my_current->Configuration.Union.channel;
779 iwe.u.qual.level = my_current->Rssi;
790 if ((my_current->Capabilities >> CAP_PRIVACY_SHIFT) & CAP_PRIVACY_MASK)
834 sprintf(buf, "Bcn int = %d ms ", my_current->Configuration.BeaconPeriod);
846 while(offset < my_current->IELength)
849 pIE = (OS_802_11_VARIABLE_IEs*)&(my_current->IEs[offset]);
854 event = iwe_stream_add_point(event, end_buf, &iwe, (char *)&(my_current->IEs[offset]));
856 event = iwe_stream_add_point(&info, event, end_buf, &iwe, (char *)&(my_current->IEs[offset]));
861 my_current = (OS_802_11_BSSID_EX *) (((char *) my_current) + my_current->Length);
1576 OS_802_11_BSSID_EX *my_current;
1657 my_current = os_memoryAlloc (pCmdInterpret->hOs,MAX_BEACON_BODY_LENGTH);
1658 if (!my_current) {
1663 pParam->content.pSiteMgrSelectedSiteInfo = my_current;
1678 os_memoryFree(pCmdInterpret->hOs,my_current,MAX_BEACON_BODY_LENGTH);