Home
last modified time | relevance | path

Searched refs:SSID (Results 1 – 25 of 90) sorted by relevance

1234

/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUMachineModuleInfo.h55 Optional<uint8_t> getSyncScopeInclusionOrdering(SyncScope::ID SSID) const { in getSyncScopeInclusionOrdering() argument
56 if (SSID == SyncScope::SingleThread || in getSyncScopeInclusionOrdering()
57 SSID == getSingleThreadOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
59 else if (SSID == getWavefrontSSID() || in getSyncScopeInclusionOrdering()
60 SSID == getWavefrontOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
62 else if (SSID == getWorkgroupSSID() || in getSyncScopeInclusionOrdering()
63 SSID == getWorkgroupOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
65 else if (SSID == getAgentSSID() || in getSyncScopeInclusionOrdering()
66 SSID == getAgentOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
68 else if (SSID == SyncScope::System || in getSyncScopeInclusionOrdering()
[all …]
DSIMemoryLegalizer.cpp219 toSIAtomicScope(SyncScope::ID SSID, SIAtomicAddrSpace InstrScope) const;
478 SIMemOpAccess::toSIAtomicScope(SyncScope::ID SSID, in toSIAtomicScope() argument
480 if (SSID == SyncScope::System) in toSIAtomicScope()
484 if (SSID == MMI->getAgentSSID()) in toSIAtomicScope()
488 if (SSID == MMI->getWorkgroupSSID()) in toSIAtomicScope()
492 if (SSID == MMI->getWavefrontSSID()) in toSIAtomicScope()
496 if (SSID == SyncScope::SingleThread) in toSIAtomicScope()
500 if (SSID == MMI->getSystemOneAddressSpaceSSID()) in toSIAtomicScope()
504 if (SSID == MMI->getAgentOneAddressSpaceSSID()) in toSIAtomicScope()
508 if (SSID == MMI->getWorkgroupOneAddressSpaceSSID()) in toSIAtomicScope()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUMachineModuleInfo.h55 Optional<uint8_t> getSyncScopeInclusionOrdering(SyncScope::ID SSID) const { in getSyncScopeInclusionOrdering() argument
56 if (SSID == SyncScope::SingleThread || in getSyncScopeInclusionOrdering()
57 SSID == getSingleThreadOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
59 else if (SSID == getWavefrontSSID() || in getSyncScopeInclusionOrdering()
60 SSID == getWavefrontOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
62 else if (SSID == getWorkgroupSSID() || in getSyncScopeInclusionOrdering()
63 SSID == getWorkgroupOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
65 else if (SSID == getAgentSSID() || in getSyncScopeInclusionOrdering()
66 SSID == getAgentOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
68 else if (SSID == SyncScope::System || in getSyncScopeInclusionOrdering()
[all …]
DSIMemoryLegalizer.cpp215 toSIAtomicScope(SyncScope::ID SSID, SIAtomicAddrSpace InstrScope) const;
452 SIMemOpAccess::toSIAtomicScope(SyncScope::ID SSID, in toSIAtomicScope() argument
454 if (SSID == SyncScope::System) in toSIAtomicScope()
458 if (SSID == MMI->getAgentSSID()) in toSIAtomicScope()
462 if (SSID == MMI->getWorkgroupSSID()) in toSIAtomicScope()
466 if (SSID == MMI->getWavefrontSSID()) in toSIAtomicScope()
470 if (SSID == SyncScope::SingleThread) in toSIAtomicScope()
474 if (SSID == MMI->getSystemOneAddressSpaceSSID()) in toSIAtomicScope()
478 if (SSID == MMI->getAgentOneAddressSpaceSSID()) in toSIAtomicScope()
482 if (SSID == MMI->getWorkgroupOneAddressSpaceSSID()) in toSIAtomicScope()
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowWifiConfigurationTest.java28 wifiConfiguration.SSID = "SSID"; in shouldCopy()
48 assertThat(copy.SSID).isEqualTo("SSID"); in shouldCopy()
72 wifiConfiguration.SSID = "SSID"; in shouldCopy_sdk18()
81 assertThat(copy.SSID).isEqualTo("SSID"); in shouldCopy_sdk18()
93 wifiConfiguration.SSID = "SSID"; in shouldCopy_sdk21()
99 assertThat(copy.SSID).isEqualTo("SSID"); in shouldCopy_sdk21()
109 wifiConfiguration.SSID = "SSID"; in shouldCopy_sdk23()
116 assertThat(copy.SSID).isEqualTo("SSID"); in shouldCopy_sdk23()
126 wifiConfiguration.SSID = "SSID"; in toStringDoesntCrash()
DShadowWifiManagerTest.java409 wifiConfiguration.SSID = "SSID"; in reconnect_setsConnectionInfo()
424 config.SSID = "SSID"; in reconnect_shouldEnableDhcp()
439 config.SSID = "SSID"; in reconnect_updatesConnectivityManager()
471 wifiConfiguration.SSID = "foo"; in connect_setsConnectionInfo()
DShadowScanResultTest.java18 assertThat(scanResult.SSID).isEqualTo("SSID"); in shouldConstruct()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowScanResult.java14 …public static ScanResult newInstance(String SSID, String BSSID, String caps, int level, int freque… in newInstance() argument
16 scanResult.SSID = SSID; in newInstance()
27 .append("SSID: ").append(valueOrNone(realObject.SSID)) in toString()
DShadowWifiManager.java212 String ssid = isQuoted(wifiConfiguration.SSID) in connect()
213 ? stripQuotes(wifiConfiguration.SSID) in connect()
214 : wifiConfiguration.SSID; in connect()
251 wifiConfiguration.SSID = ""; in connect()
/external/autotest/client/site_tests/network_RoamWifiEndToEnd/
Dnetwork_RoamWifiEndToEnd.py36 if service['Name'] == self.SSID:
47 raise error.TestFail('Network with ssid=%s is not found', self.SSID)
63 raise error.TestFail('Network with ssid=%s is not found', self.SSID)
81 self.SSID = ssid
/external/python/pyasn1-modules/pyasn1_modules/
Drfc3770.py38 class SSID(univ.OctetString): class
41 SSID.subtypeSpec = constraint.ValueSizeConstraint(1, 32)
47 SSIDList.componentType = SSID()
Drfc4334.py44 class SSID(univ.OctetString): class
49 componentType = SSID()
/external/autotest/server/cros/chaos_lib/
Dchaos_analyzer_usage.txt35 … ff:ff:ff:ff:ff:ff 802.11 121 Probe Request, SN=218, FN=0, Flags=........C, SSID=wnr854t_g_ch5_wpa2
36 … ff:ff:ff:ff:ff:ff 802.11 121 Probe Request, SN=219, FN=0, Flags=........C, SSID=wnr854t_g_ch5_wpa2
37 … ff:ff:ff:ff:ff:ff 802.11 121 Probe Request, SN=220, FN=0, Flags=........C, SSID=wnr854t_g_ch5_wpa2
38 … ff:ff:ff:ff:ff:ff 802.11 121 Probe Request, SN=225, FN=0, Flags=........C, SSID=wnr854t_g_ch5_wpa2
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
Dwpa_passphrase.sgml14 <refpurpose>Generate a WPA PSK from an ASCII passphrase for a SSID</refpurpose>
30 and SSID are used to generate a 256-bit PSK.</para>
39 <para>The SSID whose passphrase should be derived.</para>
Dwpa_cli.sgml97 CTRL-REQ-PASSWORD-1:Password needed for SSID foobar
104 CTRL-REQ-OTP-2:Challenge 1235663 needed for SSID foobar
289 <para>configure identity for an SSID</para>
296 <para>configure password for an SSID</para>
303 <para>configure pin for an SSID</para>
310 <para>configure one-time-password for an SSID</para>
317 <para>set preferred BSSID for an SSID</para>
/external/autotest/server/site_tests/network_WiFi_HiddenScan/
Dcontrol15 a) the specific hidden SSID, and b) the broadcast SSID.
/external/autotest/server/site_tests/apmanager_SimpleConnect/
Dcontrol.default13 apmanager with default configurations (SSID will be generated during test).
17 # Using default configuration provided by apmanager. SSID will be generated
/external/mesa3d/src/amd/llvm/
Dac_llvm_helper.cpp321 unsigned SSID = llvm::unwrap(ctx->context)->getOrInsertSyncScopeID(sync_scope); local
324 llvm::AtomicOrdering::SequentiallyConsistent, SSID));
330 unsigned SSID = llvm::unwrap(ctx->context)->getOrInsertSyncScopeID(sync_scope); local
335 llvm::AtomicOrdering::SequentiallyConsistent, SSID));
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstructions.h192 SyncScope::ID SSID = SyncScope::System,
195 MaybeAlign Align, AtomicOrdering Order, SyncScope::ID SSID,
223 AtomicOrdering Order, SyncScope::ID SSID = SyncScope::System,
226 isVolatile, Align, Order, SSID, InsertBefore) {}
228 AtomicOrdering Order, SyncScope::ID SSID, BasicBlock *InsertAtEnd) in LoadInst() argument
230 isVolatile, Align, Order, SSID, InsertAtEnd) {} in LoadInst()
271 return SSID; in getSyncScopeID()
275 void setSyncScopeID(SyncScope::ID SSID) { in setSyncScopeID() argument
276 this->SSID = SSID; in setSyncScopeID()
282 SyncScope::ID SSID = SyncScope::System) {
[all …]
/external/llvm-project/llvm/include/llvm/IR/
DInstructions.h204 SyncScope::ID SSID = SyncScope::System,
207 Align Align, AtomicOrdering Order, SyncScope::ID SSID,
242 return SSID; in getSyncScopeID()
246 void setSyncScopeID(SyncScope::ID SSID) { in setSyncScopeID() argument
247 this->SSID = SSID; in setSyncScopeID()
253 SyncScope::ID SSID = SyncScope::System) {
255 setSyncScopeID(SSID);
295 SyncScope::ID SSID; variable
329 AtomicOrdering Order, SyncScope::ID SSID = SyncScope::System,
332 AtomicOrdering Order, SyncScope::ID SSID, BasicBlock *InsertAtEnd);
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineMemOperand.h160 unsigned SSID : 8; // SyncScope::ID member
187 SyncScope::ID SSID = SyncScope::System,
242 return static_cast<SyncScope::ID>(AtomicInfo.SSID); in getSyncScopeID()
/external/llvm-project/llvm/include/llvm/CodeGen/
DMachineMemOperand.h161 unsigned SSID : 8; // SyncScope::ID member
187 SyncScope::ID SSID = SyncScope::System,
250 return static_cast<SyncScope::ID>(AtomicInfo.SSID); in getSyncScopeID()
/external/autotest/server/site_tests/network_WiFi_RoamSuspend/
Dcontrol11 to join a new AP (new frequency, new BSSID, but same SSID as previously
/external/autotest/server/site_tests/network_WiFi_RoamSuspendSSID/
Dcontrol.none12 SSID disappears during suspend.
/external/autotest/server/site_tests/network_WiFi_WakeOnSSID/
Dcontrol16 appearance of a whitelisted SSID if it previously suspended disconnected.

1234