HomeSort by relevance Sort by last modified time
    Searched refs:testAndClear (Results 1 - 3 of 3) sorted by null

  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
BitMaskTest.java 27 * Test that checkoff.testAndClear works as advertised
34 Assert.assertTrue(checkoff.testAndClear(0x10)); // First time, bit should be there
35 Assert.assertFalse(checkoff.testAndClear(0x10)); // Second time, should be gone
36 Assert.assertFalse(checkoff.testAndClear(0x100)); // This bit was not set
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
BitMask.java 35 public boolean testAndClear(int maskBit) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiVendorHal.java 561 if (in.testAndClear(WifiScanner.REPORT_EVENT_AFTER_EACH_SCAN)) {
564 if (in.testAndClear(WifiScanner.REPORT_EVENT_FULL_SCAN_RESULT)) {
567 if (in.testAndClear(WifiScanner.REPORT_EVENT_NO_BATCH)) {
    [all...]

Completed in 179 milliseconds