Home
last modified time | relevance | path

Searched refs:ie (Results 1 – 25 of 58) sorted by relevance

123

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/
DInformationElementUtilTest.java480 InformationElement ie, in verifyCapabilityStringFromIe() argument
485 InformationElement[] ies = new InformationElement[] { ie }; in verifyCapabilityStringFromIe()
487 new InformationElement[] {ie}, beaconCap, isOweSupported, capsStr, unknownAkmMap); in verifyCapabilityStringFromIe()
491 InformationElement ie, String capsStr) { in verifyCapabilityStringFromIeWithoutOweSupported() argument
492 verifyCapabilityStringFromIe(ie, 0x1 << 4, false, capsStr, null); in verifyCapabilityStringFromIeWithoutOweSupported()
496 InformationElement ie, String capsStr, SparseIntArray unknownAkmMap) { in verifyCapabilityStringFromIeWithOweSupported() argument
497 verifyCapabilityStringFromIe(ie, 0x1 << 4, true, capsStr, unknownAkmMap); in verifyCapabilityStringFromIeWithOweSupported()
506 InformationElement ie = new InformationElement(); in buildCapabilities_rsnElement() local
507 ie.id = InformationElement.EID_RSN; in buildCapabilities_rsnElement()
508 ie.bytes = new byte[] { (byte) 0x01, (byte) 0x00, (byte) 0x00, (byte) 0x0F, in buildCapabilities_rsnElement()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DInformationElementUtil.java199 InformationElement ie = new InformationElement(); in parseInformationElements() local
200 ie.id = eid; in parseInformationElements()
201 ie.idExt = eidExt; in parseInformationElements()
208 ie.bytes = Arrays.copyOfRange(defrag.bytes, 3, defrag.bytes.length); in parseInformationElements()
212 ie.bytes = new byte[elementLength]; in parseInformationElements()
213 data.get(ie.bytes); in parseInformationElements()
215 infoElements.add(ie); in parseInformationElements()
229 for (InformationElement ie : ies) { in getRoamingConsortiumIE()
230 if (ie.id == InformationElement.EID_ROAMING_CONSORTIUM) { in getRoamingConsortiumIE()
232 roamingConsortium.from(ie); in getRoamingConsortiumIE()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DNetworkDetail.java233 for (ScanResult.InformationElement ie : infoElements) { in NetworkDetail()
234 iesFound.add(ie.id); in NetworkDetail()
235 switch (ie.id) { in NetworkDetail()
237 ssidOctets = ie.bytes; in NetworkDetail()
240 bssLoad.from(ie); in NetworkDetail()
243 htOperation.from(ie); in NetworkDetail()
246 vhtOperation.from(ie); in NetworkDetail()
249 htCapabilities.from(ie); in NetworkDetail()
252 vhtCapabilities.from(ie); in NetworkDetail()
255 interworking.from(ie); in NetworkDetail()
[all …]
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DScanResults.java85 ScanResult.InformationElement ie = new ScanResult.InformationElement(); in generateSsidIe() local
86 ie.id = ScanResult.InformationElement.EID_SSID; in generateSsidIe()
87 ie.bytes = ssid.getBytes(Charset.forName("UTF-8")); in generateSsidIe()
88 return ie; in generateSsidIe()
126 ScanResult.InformationElement[] ie; in generateNativeResults() local
128 ie = new ScanResult.InformationElement[1]; in generateNativeResults()
129 ie[0] = generateSsidIe(ssid); in generateNativeResults()
131 ie = new ScanResult.InformationElement[0]; in generateNativeResults()
134 NetworkDetail nd = new NetworkDetail(bssid, ie, anqpLines, freq); in generateNativeResults()
140 ie, anqpLines, generateIERawDatafromScanResultIE(ie)); in generateNativeResults()
DAvailableNetworkNotifierTest.java120 InformationElement ie = new InformationElement(); in testConnectToUnknownAkmNetwork() local
121 ie.id = InformationElement.EID_SSID; in testConnectToUnknownAkmNetwork()
122 ie.bytes = ssid.getBytes(StandardCharsets.UTF_8); in testConnectToUnknownAkmNetwork()
123 result.informationElements = new InformationElement[] { ie }; in testConnectToUnknownAkmNetwork()
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
DImapConnection.java189 } catch (ImapException ie) { in doLogin()
190 LogUtils.d(TAG, "ImapException", ie); in doLogin()
191 String status = ie.getStatus(); in doLogin()
192 String statusMessage = ie.getStatusMessage(); in doLogin()
193 String alertText = ie.getAlertText(); in doLogin()
224 throw new AuthenticationFailedException(alertText, ie); in doLogin()
228 throw new MessagingException(alertText, ie); in doLogin()
/packages/apps/Settings/src/com/android/settings/applications/
DProcessStatsDetail.java254 for (int ie = 0; ie < mApp.mEntries.size(); ie++) { in fillProcessesSection()
255 ProcStatsEntry entry = mApp.mEntries.get(ie); in fillProcessesSection()
264 for (int ie = 0; ie < entries.size(); ie++) { in fillProcessesSection()
265 ProcStatsEntry entry = entries.get(ie); in fillProcessesSection()
/packages/modules/DnsResolver/
Dres_stats.cpp53 int ie = 0; // internal errors in android_net_res_stats_aggregate() local
77 ++ie; in android_net_res_stats_aggregate()
90 *internal_errors = ie; in android_net_res_stats_aggregate()
/packages/modules/AdServices/sdksandbox/tests/testutils/src/android/app/sdksandbox/testutils/
DSdkLifecycleHelper.java48 } catch (InterruptedException ie) { in unloadSdk()
49 throw new RuntimeException(ie); in unloadSdk()
/packages/modules/Wifi/framework/java/android/net/wifi/rtt/
DResponderConfig.java443 for (ScanResult.InformationElement ie : scanResult.informationElements) { in fromScanResult()
444 if (ie.id == EID_HT_CAPABILITIES) { in fromScanResult()
446 } else if (ie.id == EID_VHT_CAPABILITIES) { in fromScanResult()
448 } else if (ie.id == EID_EXTENSION_PRESENT && ie.idExt == EID_EXT_HE_CAPABILITIES) { in fromScanResult()
450 } else if (ie.id == EID_EXTENSION_PRESENT && ie.idExt == EID_EXT_EHT_CAPABILITIES) { in fromScanResult()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DInCallServiceFixture.java193 } catch (InterruptedException ie) { in waitForUpdate()
207 } catch (InterruptedException ie) { in waitUntilNumCalls()
/packages/services/AlternativeNetworkAccess/tests/src/com/android/ons/
DONSBaseTest.java51 } catch (InterruptedException ie) { in waitUntilReady()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/util/
DScanResultUtilTest.java802 InformationElement ie = new InformationElement(); in createIE() local
803 ie.id = id; in createIE()
804 ie.bytes = bytes; in createIE()
805 return ie; in createIE()
/packages/apps/Nfc/testutils/src/com/android/nfc/emulator/
DBaseEmulatorActivity.java197 } catch (InterruptedException ie) { in ensurePreferredService()
218 } catch (InterruptedException ie) { in waitForObserveModeEnabled()
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DOffloadHardwareInterface.java216 } catch (IOException ie) { in createConntrackSocket()
227 } catch (IOException ie) { in createConntrackSocket()
/packages/apps/Settings/src/com/android/settings/wifi/dpp/
DWifiQrCode.java83 } catch (IllegalArgumentException ie) { in WifiQrCode()
/packages/modules/Bluetooth/apex/
Dkey.pem45 wROy/pQPCjFg/Dsmq7v7txlDAOp106ZDvGvyrq3hNqzno3llqdMilGy1bwl+C+ie
/packages/modules/Connectivity/tests/cts/hostside-network-policy/app/src/com/android/cts/netpolicy/hostside/
DNetworkCallbackTest.java161 } catch (InterruptedException ie) { in drainAndWaitForIdle()
162 Log.e(TAG, "Interrupted while draining callback queue", ie); in drainAndWaitForIdle()
/packages/services/Telecomm/src/com/android/server/telecom/
DInCallTonePlayer.java464 } catch (InterruptedException ie) { in playMediaTone()
465 Log.e(this, ie, "playMediaTone: tone playback interrupted."); in playMediaTone()
DPhoneStateBroadcaster.java144 } catch (IllegalStateException ie) { in sendOutgoingEmergencyCallEvent()
/packages/modules/Wifi/service/java/com/android/server/wifi/scanner/
DWifiScanningServiceImpl.java597 for (ScanResult.InformationElement ie : vendorIesList) { in getVendorIesBytesFromVendorIesList()
598 if ((len + WifiScanner.WIFI_IE_HEAD_LEN + ie.bytes.length) in getVendorIesBytesFromVendorIesList()
603 len += WifiScanner.WIFI_IE_HEAD_LEN + ie.bytes.length; in getVendorIesBytesFromVendorIesList()
608 for (ScanResult.InformationElement ie : vendorIesList) { in getVendorIesBytesFromVendorIesList()
609 if ((index + WifiScanner.WIFI_IE_HEAD_LEN + ie.bytes.length) in getVendorIesBytesFromVendorIesList()
613 vendorIes[index] = (byte) ie.id; in getVendorIesBytesFromVendorIesList()
614 vendorIes[index + 1] = (byte) ie.bytes.length; in getVendorIesBytesFromVendorIesList()
615 System.arraycopy(ie.bytes, 0, vendorIes, index + WifiScanner.WIFI_IE_HEAD_LEN, in getVendorIesBytesFromVendorIesList()
616 ie.bytes.length); in getVendorIesBytesFromVendorIesList()
617 index += WifiScanner.WIFI_IE_HEAD_LEN + ie.bytes.length; in getVendorIesBytesFromVendorIesList()
[all …]
/packages/modules/NetworkStack/tests/unit/src/android/net/shared/
DProvisioningConfigurationTest.java75 final ScanResultInfo.InformationElement ie = in makeScanResultInfo() local
79 Collections.singletonList(ie)); in makeScanResultInfo()
/packages/services/Telecomm/src/com/android/server/telecom/voip/
DCallEventCallbackAckTransaction.java140 } catch (InterruptedException ie) { in processTransaction()
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
DCellBroadcastAlertReminderTest.java80 } catch (InterruptedException ie) { in waitUntilReady()
/packages/modules/NetworkStack/common/networkstackclient/src/android/net/shared/
DProvisioningConfiguration.java438 for (InformationElement ie : mInformationElements) { in toString()
439 str.append("[").append(ie.toString()).append("]"); in toString()

123