Home
last modified time | relevance | path

Searched refs:scan (Results 1 – 25 of 57) sorted by relevance

123

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DREADME.txt17 …cks the various settings (wifi toggle, airplane toggle, tethering toggle, scan mode toggle) and pr…
21 …ller: Controls whether the open network notification is displayed or not based on the scan results.
29 …s or from a third party app will show up a dialog reminding the user that scan mode will be on eve…
30 …- 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/scanner/
DBaseWifiScannerImplTest.java215 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in overlappingSingleScanFails()
238 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(false); in singleScanFailOnExecute()
268 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in singleScanFailOnTimeout()
302 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in singleScanFailOnFailedEvent()
356 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in multipleSingleScanSuccess()
426 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in singleScanWhereSupplicantReturnsSomeOldResults()
431 order.verify(mWifiNative).scan(eq(expectedScan), any(Set.class)); in singleScanWhereSupplicantReturnsSomeOldResults()
478 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in doSuccessfulSingleScanTest()
492 order.verify(mWifiNative).scan(eq(expectedScan), eq(expectedHiddenNetIds)); in expectSuccessfulSingleScan()
DSupplicantWifiScannerTest.java322 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(false); in backgroundScanStartFailed()
357 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in backgroundScanEventFailed()
404 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in pauseWhileWaitingToStartNextScanAndResumeScan()
458 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in pauseWhileScanningAndResumeScan()
465 order.verify(mWifiNative).scan(eq(expectedPeriods[0].getScanFreqs()), any(Set.class)); in pauseWhileScanningAndResumeScan()
531 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in pauseWhileWaitingToStartNextScanAndStartNewScan()
569 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in doSuccessfulTest()
626 order.verify(mWifiNative).scan(eq(scanFreqs), eq(networkIds)); in expectSuccessfulBackgroundScan()
652 order.verify(mWifiNative).scan(eq(scanFreqs), eq(networkIds)); in expectFailedScanStart()
660 order.verify(mWifiNative).scan(eq(scanFreqs), eq(networkIds)); in expectFailedEventScan()
DSupplicantPnoScannerTest.java281 when(mWifiNative.scan(any(Set.class), any(Set.class))).thenReturn(true); in startSuccessfulPnoScan()
335 order.verify(mWifiNative).scan(eq(expectedScanFreqs), eq(expectedHiddenNetIds)); in expectSuccessfulSingleScanWithHwPnoEnabled()
357 order.verify(mWifiNative).scan(any(Set.class), any(Set.class)); in expectSuccessfulSwPnoScan()
/frameworks/compile/mclinker/include/mcld/LD/
DDiagReaders.inc11 "cannot scan .eh_frame section in input %0",
12 "cannot scan .eh_frame section in input %0.")
DEhFrameReader.h65 Token scan(ConstAddress pHandler,
90 EhFrameReader::Token EhFrameReader::scan<true>(ConstAddress pHandler,
/frameworks/av/media/libstagefright/id3/
Dtestid3.cpp112 void scan(const char *path) { in scan() function
139 scan(newPath); in scan()
160 scan(argv[i]); in main()
/frameworks/opt/net/wifi/service/proto/
Dwifi.proto72 // 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
/frameworks/base/cmds/idmap/
DAndroid.mk18 LOCAL_SRC_FILES := idmap.cpp create.cpp scan.cpp inspect.cpp
/frameworks/base/docs/html/guide/topics/connectivity/
Dbluetooth-le.jd243 as a parameter. You must implement this callback, because that is how scan
248 <li>Never scan on a loop, and set a time limit on your scan. A device that was
249 previously available may have moved out of range, and continuing to scan drains
253 <p>The following snippet shows how to start and stop a scan:</p>
269 // Stops scanning after a pre-defined scan period.
290 <p>If you want to scan for only specific types of peripherals, you can instead
297 which is the interface used to deliver BLE scan results:</p>
302 // Device scan callback.
319 <p class="note"><strong>Note:</strong> You can only scan for Bluetooth LE devices
320 <em>or</em> scan for Classic Bluetooth devices, as described in
[all …]
/frameworks/av/include/radio/
DIRadio.h46 virtual status_t scan(radio_direction_t direction, bool skipSubChannel) = 0;
DRadio.h59 status_t scan(radio_direction_t direction, bool skipSubChannel);
/frameworks/av/radio/
DRadio.cpp180 status_t Radio::scan(radio_direction_t direction, bool skipSubchannel) in scan() function in android::Radio
186 return mIRadio->scan(direction, skipSubchannel); in scan()
DIRadio.cpp122 virtual status_t scan(radio_direction_t direction, bool skipSubChannel) in scan() function in android::BpRadio
277 status_t status = scan(direction, skipSubChannel); in onTransact()
/frameworks/base/core/java/com/android/internal/alsa/
DAlsaCardsParser.java107 public void scan() { in scan() method in AlsaCardsParser
185 scan(); in getDefaultUsbCard()
DAlsaDevicesParser.java253 public void scan() { in scan() method in AlsaDevicesParser
/frameworks/base/core/java/android/hardware/radio/
DRadioTuner.java155 public abstract int scan(int direction, boolean skipSubChannel); in scan() method in RadioTuner
DRadioModule.java71 public native int scan(int direction, boolean skipSubChannel); in scan() method in RadioModule
/frameworks/base/services/core/java/com/android/server/
DEventLogTags.logtags144 # Package Manager .apk scan starts:
146 # Package Manager .apk scan starts:
148 # Package Manager .apk scan ends:
/frameworks/compile/mclinker/lib/LD/
DEhFrameReader.cpp44 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/rs/api/
DSpecification.cpp227 bool VersionInfo::scan(Scanner* scanner, unsigned int maxApiLevel) { in scan() function in VersionInfo
368 if (!info.scan(scanner, maxApiLevel)) { in scanConstantSpecification()
394 if (!info.scan(scanner, maxApiLevel)) { in scanTypeSpecification()
611 if (!info.scan(scanner, maxApiLevel)) { in scanFunctionSpecification()
/frameworks/av/services/radio/
DRadioService.h152 virtual status_t scan(radio_direction_t direction, bool skipSubChannel);
DRadioService.cpp794 status_t RadioService::ModuleClient::scan(radio_direction_t direction, bool skipSubChannel) in scan() function in android::RadioService::ModuleClient
800 status = (status_t)mTuner->scan(mTuner, direction, skipSubChannel); in scan()
/frameworks/base/docs/html/design/patterns/
Dhelp.jd109 <h4>Help me scan, not read</h4>
110 <p>People don't read help from start to finish. They scan around, looking for a piece of informatio…
113 <p>What's better than a screen that's easy to scan? A screen that requires no scanning at all becau…
/frameworks/base/services/usb/java/com/android/server/usb/
DUsbAlsaManager.java135 mCardsParser.scan(); in UsbAlsaManager()
307 mDevicesParser.scan(); in selectAudioCard()

123