/frameworks/base/wifi/tests/src/android/net/wifi/rtt/ |
D | WifiRttManagerTest.java | 357 ScanResult scan = new ScanResult(); in testResponderPreambleSelection() local 358 scan.BSSID = "00:01:02:03:04:05"; in testResponderPreambleSelection() 359 scan.informationElements = null; in testResponderPreambleSelection() 360 scan.channelWidth = ResponderConfig.CHANNEL_WIDTH_80MHZ; in testResponderPreambleSelection() 362 ResponderConfig config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection() 367 scan.channelWidth = ResponderConfig.CHANNEL_WIDTH_40MHZ; in testResponderPreambleSelection() 369 scan.informationElements = new ScanResult.InformationElement[2]; in testResponderPreambleSelection() 370 scan.informationElements[0] = htCap; in testResponderPreambleSelection() 371 scan.informationElements[1] = vhtCap; in testResponderPreambleSelection() 373 config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection() [all …]
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | DiagReaders.inc | 11 "cannot scan .eh_frame section in input %0", 12 "cannot scan .eh_frame section in input %0.")
|
D | EhFrameReader.h | 65 Token scan(ConstAddress pHandler, 90 EhFrameReader::Token EhFrameReader::scan<true>(ConstAddress pHandler,
|
/frameworks/av/media/libstagefright/id3/ |
D | testid3.cpp | 112 void scan(const char *path) { in scan() function 139 scan(newPath); in scan() 158 scan(argv[i]); in main()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/ |
D | BaseWifiScannerImplTest.java | 245 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in overlappingSingleScanFails() 266 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(false); in singleScanFailOnExecute() 294 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in singleScanFailOnTimeout() 326 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in singleScanFailOnFailedEvent() 381 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in multipleSingleScanSuccess() 454 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in singleScanWhereSupplicantReturnsSomeOldResults() 459 order.verify(mWifiNative).scan(eq(IFACE_NAME), anyInt(), eq(expectedScan), any(List.class)); in singleScanWhereSupplicantReturnsSomeOldResults() 506 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in doSuccessfulSingleScanTest() 520 order.verify(mWifiNative).scan( in expectSuccessfulSingleScan()
|
D | WificondScannerTest.java | 92 verify(mWifiNative, never()).scan(any(), anyInt(), any(), any(List.class)); in singleScanNotIssuedIfNoAvailableChannels() 144 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in lateScanResultsDoNotCauseSpuriousTimerCancellationOrCrash()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | README.txt | 36 …cks the various settings (wifi toggle, airplane toggle, tethering toggle, scan mode toggle) and pr… 40 …ller: Controls whether the open network notification is displayed or not based on the scan results. 48 …s or from a third party app will show up a dialog reminding the user that scan mode will be on eve… 49 …- In the scan mode, the device continues to allow scanning from any app with Wi-Fi turned off. Thi…
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | ScanResultMatchInfoTest.java | 42 ScanDetail scan = createScanDetailForNetwork(conf, "AA:AA:AA:AA:AA:AA"); in testScanResultMatchesWifiConfiguration() local 44 ScanResultMatchInfo.fromScanResult(scan.getScanResult())); in testScanResultMatchesWifiConfiguration() 47 scan = createScanDetailForNetwork(conf, "BB:BB:BB:BB:BB:BB"); in testScanResultMatchesWifiConfiguration() 49 ScanResultMatchInfo.fromScanResult(scan.getScanResult())); in testScanResultMatchesWifiConfiguration()
|
D | WifiMetricsTest.java | 1995 List<ScanDetail> scan = new ArrayList<ScanDetail>(); in testNumConnectableNetworksGeneration() local 1997 scan.add(buildMockScanDetail("PASSPOINT_1", "bssid0", false, false, true, false)); in testNumConnectableNetworksGeneration() 1998 scan.add(buildMockScanDetail("PASSPOINT_2", "bssid1", false, false, true, false)); in testNumConnectableNetworksGeneration() 1999 scan.add(buildMockScanDetail("SSID_B", "bssid2", true, true, false, false)); in testNumConnectableNetworksGeneration() 2000 scan.add(buildMockScanDetail("SSID_B", "bssid3", true, true, false, false)); in testNumConnectableNetworksGeneration() 2001 scan.add(buildMockScanDetail("SSID_C", "bssid4", true, false, false, false)); in testNumConnectableNetworksGeneration() 2002 scan.add(buildMockScanDetail("SSID_D", "bssid5", false, true, false, false)); in testNumConnectableNetworksGeneration() 2003 scan.add(buildMockScanDetail("SSID_E", "bssid6", false, true, false, false)); in testNumConnectableNetworksGeneration() 2004 scan.add(buildMockScanDetail("SSID_F", "bssid7", false, false, false, false)); in testNumConnectableNetworksGeneration() 2005 scan.add(buildMockScanDetail("SSID_G_WEAK", "bssid9", false, false, false, true)); in testNumConnectableNetworksGeneration() [all …]
|
D | WificondControlTest.java | 342 assertFalse(mWificondControl.scan( in testTeardownClientInterfaceClearsHandles() 345 verify(mWifiScannerImpl, never()).scan(any()); in testTeardownClientInterfaceClearsHandles() 727 when(mWifiScannerImpl.scan(any(SingleScanSettings.class))).thenReturn(true); in testScan() 728 assertTrue(mWificondControl.scan( in testScan() 731 verify(mWifiScannerImpl).scan(argThat(new ScanMatcher( in testScan() 741 when(mWifiScannerImpl.scan(any(SingleScanSettings.class))).thenReturn(true); in testScanWithDuplicateHiddenSsids() 748 assertTrue(mWificondControl.scan( in testScanWithDuplicateHiddenSsids() 752 verify(mWifiScannerImpl).scan(argThat(new ScanMatcher( in testScanWithDuplicateHiddenSsids() 762 when(mWifiScannerImpl.scan(any(SingleScanSettings.class))).thenReturn(true); in testScanNullParameters() 763 assertTrue(mWificondControl.scan( in testScanNullParameters() [all …]
|
/frameworks/base/proto/src/ |
D | wifi.proto | 72 // Error codes that a scan can result in. 88 // Could not start a scan because wifi is disabled. 99 // Return code of the scan. 102 // Number of entries that were found in the scan. 181 // Count of times connectivity watchdog confirmed background scan is working 184 // Count of times connectivity watchdog found background scan not working 203 // Total number of scan results 206 // Total number of scan results for open networks 209 // Total number of scan results for legacy personal networks 212 // Total number of scan results for legacy enterprise networks [all …]
|
/frameworks/base/core/java/android/hardware/radio/ |
D | ITuner.aidl | 52 void scan(boolean directionDown, boolean skipSubChannel); in scan() method
|
D | TunerAdapter.java | 141 public int scan(int direction, boolean skipSubChannel) { in scan() method in TunerAdapter 143 mTuner.scan(direction == RadioTuner.DIRECTION_DOWN, skipSubChannel); in scan()
|
D | RadioTuner.java | 160 public abstract int scan(int direction, boolean skipSubChannel); in scan() method in RadioTuner
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/ |
D | TunerSession.java | 144 public void scan(boolean directionDown, boolean skipSubChannel) throws RemoteException { in scan() method in TunerSession 147 int halResult = mHwSession.scan(!directionDown, skipSubChannel); in scan()
|
/frameworks/base/cmds/idmap/ |
D | Android.bp | 21 "scan.cpp",
|
/frameworks/compile/mclinker/lib/LD/ |
D | EhFrameReader.cpp | 44 EhFrameReader::Token EhFrameReader::scan<true>(ConstAddress pHandler, in scan() function in mcld::EhFrameReader 135 Token token = scan<true>(handler, file_off, sect_reg); in read()
|
/frameworks/base/services/core/java/com/android/server/ |
D | EventLogTags.logtags | 155 # Package Manager .apk scan starts: 157 # Package Manager .apk scan starts: 159 # Package Manager .apk scan ends:
|
/frameworks/base/core/proto/android/wifi/ |
D | enums.proto | 37 * scans, and the subsequent reporting of scan results.
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/ |
D | GPBUtilities.m | 1621 const uint8_t *scan = decodeData; 1622 int32_t numEntries = ReadRawVarint32FromData(&scan); 1626 int32_t dataKey = ReadRawVarint32FromData(&scan); 1633 ++scan; 1634 while (*scan != 0) ++scan; 1636 ++scan; 1646 if (*scan == 0) { 1649 ++scan; 1650 NSString *result = [NSString stringWithUTF8String:(const char *)scan]; 1666 for (; *scan != 0; ++scan) { [all …]
|
D | GPBDescriptor.m | 709 const char *scan = valueNames_; 711 offsets[i] = (uint32_t)(scan - valueNames_); 712 while (*scan != '\0') ++scan; 713 ++scan; // Step over the null.
|
/frameworks/rs/script_api/ |
D | Specification.cpp | 227 bool VersionInfo::scan(Scanner* scanner, unsigned int maxApiLevel) { in scan() function in VersionInfo 369 if (!info.scan(scanner, maxApiLevel)) { in scanConstantSpecification() 398 if (!info.scan(scanner, maxApiLevel)) { in scanTypeSpecification() 615 if (!info.scan(scanner, maxApiLevel)) { in scanFunctionSpecification()
|
/frameworks/base/core/java/com/android/internal/alsa/ |
D | AlsaCardsParser.java | 136 public int scan() { in scan() method in AlsaCardsParser
|
D | AlsaDevicesParser.java | 252 public int scan() { in scan() method in AlsaDevicesParser
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/ |
D | Tuner.java | 182 public void scan(boolean directionDown, boolean skipSubChannel) { in scan() method in Tuner
|