Home | History | Annotate | Download | only in Sta_Management

Lines Matching defs:pBuf

224 	char				*pBuf;
259 pBuf = (char *)&(pBuffer->infoElements);
274 ((dot11_SSID_t *)(pBuf))->hdr[0] = DOT11_SSID_ELE_ID;
275 ((dot11_SSID_t *)(pBuf))->hdr[1] = pSsid->len;
276 os_memoryCopy(pSiteMgr->hOs, pBuf + sizeof(dot11_eleHdr_t), (void *)pSsid->str, pSsid->len);
278 pBuf += sizeof(dot11_eleHdr_t) + pSsid->len;
281 pDot11Rates = (dot11_RATES_t *) pBuf;
331 pBuf += pDot11Rates->hdr[1] + sizeof(dot11_eleHdr_t);
339 pDot11Rates = (dot11_RATES_t *) (pBuf + suppRatesLen);
345 pBuf += suppRatesLen + extSuppRatesLen;
350 StaCap_GetHtCapabilitiesIe (pSiteMgr->hStaCap, (TI_UINT8 *)pBuf, &len);
352 pBuf += len;
357 ((dot11_WSC_t *)pBuf)->hdr[0] = DOT11_WSC_PARAM_ELE_ID;
358 ((dot11_WSC_t *)pBuf)->hdr[1] = pSiteMgr->uWscIeSize + DOT11_OUI_LEN;
359 pBuf += sizeof(dot11_eleHdr_t);
360 os_memoryCopy(pSiteMgr->hOs, pBuf, &WSCOuiIe, DOT11_OUI_LEN);
362 pBuf + DOT11_OUI_LEN,
366 pBuf += sizeof(dot11_eleHdr_t) + pSiteMgr->uWscIeSize + DOT11_OUI_LEN;
399 TI_UINT8 *pBuf;
437 pBuf = (TI_UINT8 *)pBuffer->timeStamp;
443 pBuf += TIME_STAMP_LEN;
446 COPY_WLAN_WORD(pBuf, &pPrimarySite->beaconInterval);
448 pBuf += FIX_FIELD_LEN;
451 COPY_WLAN_WORD(pBuf, &pPrimarySite->capabilities);
453 pBuf += FIX_FIELD_LEN;
470 ((dot11_SSID_t *)(pBuf))->hdr[0] = DOT11_SSID_ELE_ID;
471 ((dot11_SSID_t *)(pBuf))->hdr[1] = pPrimarySite->ssid.len;
472 os_memoryCopy(pSiteMgr->hOs, pBuf + sizeof(dot11_eleHdr_t), (void *)pPrimarySite->ssid.str, pPrimarySite->ssid.len);
474 pBuf += sizeof(dot11_eleHdr_t) + pPrimarySite->ssid.len;
479 pDot11Rates = (dot11_RATES_t *) pBuf;
502 pBuf += pDot11Rates->hdr[1] + sizeof(dot11_eleHdr_t);
510 pBuf += pDot11Rates->hdr[1] + sizeof(dot11_eleHdr_t);
515 ((dot11_DS_PARAMS_t *)(pBuf))->hdr[0] = DOT11_DS_PARAMS_ELE_ID;
516 ((dot11_DS_PARAMS_t *)(pBuf))->hdr[1] = DOT11_DS_PARAMS_ELE_LEN;
517 ((dot11_DS_PARAMS_t *)(pBuf))->currChannel = pPrimarySite->channel;
519 pBuf += sizeof(dot11_eleHdr_t) + DOT11_DS_PARAMS_ELE_LEN;
522 ((dot11_IBSS_PARAMS_t *)(pBuf))->hdr[0] = DOT11_IBSS_PARAMS_ELE_ID;
523 ((dot11_IBSS_PARAMS_t *)(pBuf))->hdr[1] = DOT11_IBSS_PARAMS_ELE_LEN;
524 COPY_WLAN_WORD(&((dot11_IBSS_PARAMS_t *)(pBuf))->atimWindow, &pPrimarySite->atimWindow);
526 pBuf += sizeof(dot11_eleHdr_t) + DOT11_IBSS_PARAMS_ELE_LEN;
542 *pBuf = DOT11_COUNTRY_ELE_ID;
543 pBuf++;
545 *pBuf = (TI_UINT8)(pCountry->len);
546 pBuf++;
550 that there are no gaps in the output structure (pBuf). */
552 os_memoryCopy(pSiteMgr->hOs, pBuf , &pCountry->countryIE.CountryString, DOT11_COUNTRY_STRING_LEN);
553 pBuf += DOT11_COUNTRY_STRING_LEN;
559 *(pBuf + j ) = pCountry->countryIE.tripletChannels[i].firstChannelNumber;
560 *(pBuf + j + 1) = pCountry->countryIE.tripletChannels[i].maxTxPowerLevel;
561 *(pBuf + j + 2) = pCountry->countryIE.tripletChannels[i].numberOfChannels;
564 pBuf += (pCountry->len - DOT11_COUNTRY_STRING_LEN);
573 pdot11Erp = (dot11_ERP_t *) pBuf;
584 pBuf += pdot11Erp->hdr[1] + sizeof(dot11_eleHdr_t);
592 pDot11Rates = (dot11_RATES_t *) pBuf;
597 pBuf += pDot11Rates->hdr[1] + sizeof(dot11_eleHdr_t);