Searched refs:wps (Results 1 – 1 of 1) sorted by relevance
136 vector<uint8_t>* wps) { in AddWPSElement() argument137 wps->push_back(type >> 8); // type MSByte in AddWPSElement()138 wps->push_back(type); // type LSByte in AddWPSElement()140 wps->push_back((value.size() >> 8) & 0xff); // length MSByte in AddWPSElement()141 wps->push_back(value.size() & 0xff); // length LSByte in AddWPSElement()142 wps->insert(wps->end(), value.begin(), value.end()); in AddWPSElement()479 vector<uint8_t> wps; in TEST_F() local480 AddWPSElement(IEEE_80211::kWPSElementManufacturer, "foo", &wps); in TEST_F()481 wps.resize(wps.size() - 1); // Cause an underrun in the data. in TEST_F()483 IEEE_80211::kOUIMicrosoftWPS, wps, &ies); in TEST_F()[all …]