HomeSort by relevance Sort by last modified time
    Searched refs:Ssid (Results 1 - 13 of 13) sorted by null

  /hardware/ti/wlan/wl1271/CUDK/os/linux/src/
cu_wext.c 78 bssidList[index-1].Ssid.SsidLength = iwe->u.data.length;
79 os_memcpy(bssidList[index-1].Ssid.Ssid, iwe->u.data.pointer, bssidList[index-1].Ssid.SsidLength);
81 bssidList[index-1].Ssid.Ssid[bssidList[index-1].Ssid.SsidLength] = 0;
178 S32 CuOs_Get_SSID(THandle hCuWext, OS_802_11_SSID* ssid)
183 os_memset(ssid->Ssid, 0, sizeof(OS_802_11_SSID) - sizeof(U32))
    [all...]
  /hardware/ti/wlan/wl1271/Test/
smeDebug.c 187 WLAN_OS_REPORT((" MAC Privacy Rssi Mode Channel SSID\n"));
217 (pBssid->Ssid.Ssid[0] == '\0')?(TI_INT8*)"****":((TI_INT8*)pBssid->Ssid.Ssid) ));
siteMgrDebug.c 319 char ssid[MAX_SSID_LEN + 1]; local
338 len = pSiteEntry->ssid.len;
340 if ( pSiteEntry->ssid.len > MAX_SSID_LEN )
342 WLAN_OS_REPORT(("printPrimarySite. pSiteEntry->ssid.len=%d exceeds the limit %d\n",
343 pSiteEntry->ssid.len, MAX_SSID_LEN));
347 os_memoryCopy(pSiteMgr->hOs, ssid, (void *)pSiteEntry->ssid.str, len);
348 ssid[len] = '\0';
349 WLAN_OS_REPORT(("SSID %s\n\n", ssid));
551 char ssid[MAX_SSID_LEN + 1]; local
1028 char ssid[MAX_SSID_LEN + 1]; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_ralink.h 256 INT SsidLength; // length of SSID field below, in bytes;
258 UCHAR Ssid[NDIS_802_11_LENGTH_SSID]; // SSID information field
267 NDIS_802_11_SSID Ssid; // SSID
289 NDIS_802_11_SSID Ssid; // SSID
driver_ralink.c 122 static int wpa_driver_ralink_get_ssid(void *priv, u8 *ssid)
149 iwr.u.essid.pointer = (caddr_t) ssid;
163 os_memcpy(ssid_str, ssid, ssid_len);
174 entry = wpa_s->conf->ssid;
177 os_memcmp(ssid_str, entry->ssid, ssid_len) == 0 &&
224 const u8 *ssid, size_t ssid_len)
237 os_memcpy(buf->Ssid, ssid, ssid_len);
593 //wpa_printf(MSG_DEBUG, "The current ssid - (%s), eapol_flag = %d.\n",
594 // wpa_ssid_txt(wpa_s->current_ssid->ssid, wpa_s->current_ssid->ssid_len),wpa_s->current_ssid->eapol_flags)
696 UCHAR ssid[MAX_LEN_OF_SSID]; member in struct:PACKED
    [all...]
driver_ndis.c 93 UCHAR Ssid[NDIS_802_11_LENGTH_SSID];
167 NDIS_802_11_SSID Ssid;
626 static int wpa_driver_ndis_get_ssid(void *priv, u8 *ssid)
634 wpa_printf(MSG_DEBUG, "NDIS: Failed to get SSID");
642 os_memcpy(ssid, buf.Ssid, buf.SsidLength);
648 const u8 *ssid, size_t ssid_len)
654 os_memcpy(buf.Ssid, ssid, ssid_len);
657 * force SSID to be changed to a random one in order to enable radio a
677 char ssid[32]; local
    [all...]
  /hardware/ti/wlan/wl1271/utils/
osDot11.h 89 TI_UINT8 Ssid[32];
227 OS_802_11_SSID Ssid;
248 OS_802_11_SSID Ssid;
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
scanResultTable.c 299 /* Verify that the SSID IE is available (if not return NOK) */
302 TRACE6(pScanResultTable->hReport, REPORT_SEVERITY_WARNING, "scanResultTable_UpdateEntry: can't add site %02d:%02d:%02d:%02d:%02d:%02d" " because SSID IE is NULL\n", pBssid[ 0 ], pBssid[ 1 ], pBssid[ 2 ], pBssid[ 3 ], pBssid[ 4 ], pBssid[ 5 ]);
306 /* use temporary SSID structure, and verify SSID length */
310 TRACE2(pScanResultTable->hReport, REPORT_SEVERITY_WARNING, "scanResultTable_UpdateEntry: SSID len=%d out of range. replaced by %d\n", tTempSsid.len, MAX_SSID_LEN);
320 /* check if the SSID:BSSID pair already exists in the table */
429 * \brief retreives an entry according to its SSID and BSSID
434 * \param pSsid - SSID to search for
443 TRACE6(pScanResultTable->hReport, REPORT_SEVERITY_INFORMATION , "scanResultTable_GetBySsidBssidPair: Searching for SSID BSSID %02x:%02x:%02x:%02x:%02x:%02x\n", (*pBssid)[ 0 ], (*pBssid)[ 1 ], (*pBssid)[ 2 ], (*pBssid)[ 3 ], (*pBssid)[ 4 ], (*pBssid)[ 5 ]);
448 /* if the BSSID and SSID match *
    [all...]
siteMgr.c 125 /* 1. no checking Ptrs for NULL; no checking ssid.len for limit & for zero */
127 3. ... but there it contains pSite->ssid.str[pSite->ssid.len] = '\0'; Which of the DEFINEs is correct?*/
129 pSite->ssid.len = pFrameInfo->content.iePacket.pSsid->hdr[1]; \
130 if (pSite->ssid.len > MAX_SSID_LEN) { \
132 "UPDATE_SSID. pSite->ssid.len=%d exceeds the limit. Set to limit value %d\n", \
133 pSite->ssid.len, MAX_SSID_LEN); \
135 pSite->ssid.len = MAX_SSID_LEN; \
138 (void *)pSite->ssid.str, \
140 pSite->ssid.len);
    [all...]
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
CmdInterpretWext.c 557 /* In either case - we need to disconnect, so prepare "junk" SSID */
724 /* Add SSID */
727 iwe.u.data.length = min((TI_UINT8)my_current->Ssid.SsidLength, (TI_UINT8)32);
730 event = iwe_stream_add_point(event, end_buf, &iwe, my_current->Ssid.Ssid);
732 event = iwe_stream_add_point(&info,event, end_buf, &iwe, my_current->Ssid.Ssid);
    [all...]
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
cu_cmd.c 590 char* PrintSSID(OS_802_11_SSID* ssid)
593 if(ssid->SsidLength > MAX_SSID_LEN)
596 os_error_printf(CU_MSG_ERROR, (PS8)"PrintSSID. ssid->SsidLength=%d exceeds the limit %d\n",
597 ssid->SsidLength, MAX_SSID_LEN);
598 /*WLAN_OS_REPORT(("PrintSSID. ssid->SsidLength=%d exceeds the limit %d\n",
599 ssid->SsidLength, MAX_SSID_LEN));*/
600 ssid->SsidLength = MAX_SSID_LEN;
602 os_memcpy((PVOID)ssidBuf, (PVOID) ssid->Ssid, ssid->SsidLength);
995 OS_802_11_SSID ssid; local
1185 OS_802_11_SSID ssid; local
1255 OS_802_11_SSID ssid; local
1273 OS_802_11_SSID ssid; local
1278 OS_802_11_SSID ssid; local
1546 OS_802_11_SSID ssid; local
1972 OS_802_11_SSID ssid; local
2397 OS_802_11_SSID ssid; local
    [all...]
wpa_core.c 533 S32 WpaCore_SetSsid(THandle hWpaCore, OS_802_11_SSID* ssid, TMacAddr bssid)
545 os_error_printf(CU_MSG_ERROR, (PS8)"Failed to connect to %s\n", ssid->Ssid); \
582 /* Set the SSID */
583 os_sprintf(cmd, (PS8)"SET_NETWORK %d ssid \"%s\"", NetworkID, ssid->Ssid);
907 os_error_printf(CU_MSG_ERROR, (PS8)"Failed to disconnect from current ssid\n");
920 os_error_printf(CU_MSG_ERROR, (PS8)"Failed to disconnect from current ssid\n");
929 os_error_printf(CU_MSG_ERROR, (PS8)"Failed to disconnect from current ssid\n")
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_ndis.c 87 UCHAR Ssid[NDIS_802_11_LENGTH_SSID];
161 NDIS_802_11_SSID Ssid;
661 static int wpa_driver_ndis_get_ssid(void *priv, u8 *ssid)
669 wpa_printf(MSG_DEBUG, "NDIS: Failed to get SSID");
677 os_memcpy(ssid, buf.Ssid, buf.SsidLength);
683 const u8 *ssid, size_t ssid_len)
689 os_memcpy(buf.Ssid, ssid, ssid_len);
692 * force SSID to be changed to a random one in order to enable radio a
712 char ssid[32]; local
    [all...]

Completed in 502 milliseconds