HomeSort by relevance Sort by last modified time
    Searched refs:checkoff (Results 1 - 5 of 5) 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
32 BitMask checkoff = new BitMask(0x53); local
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
37 Assert.assertEquals(0x43, checkoff.value); // These should be left
  /external/ltp/testcases/kernel/syscalls/pread/
pread01.c 281 * "checkoff" is the offset at which we believe we should be at.
284 void l_seek(int fdesc, off_t offset, int whence, off_t checkoff)
288 if ((offloc = lseek(fdesc, offset, whence)) != checkoff) {
290 (int64_t) offloc, (int64_t) checkoff);
  /external/ltp/testcases/kernel/syscalls/pwrite/
pwrite01.c 246 * "checkoff" is the offset at which we believe we should be at.
249 void l_seek(int fdesc, off_t offset, int whence, off_t checkoff)
253 if ((offloc = lseek(fdesc, offset, whence)) != checkoff) {
255 (int64_t) offloc, (int64_t) checkoff);
pwrite04.c 238 * "checkoff" is the offset at which we believe we should be at.
241 void l_seek(int fdesc, off_t offset, int whence, off_t checkoff)
245 if ((offloc = lseek(fdesc, offset, whence)) != checkoff) {
248 offloc, fdesc, offset, whence, checkoff, errno);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiVendorHal.java 1124 BitMask checkoff = new BitMask(rttManagerPreamble); local
1143 BitMask checkoff = new BitMask(halPreamble); local
1162 BitMask checkoff = new BitMask(rttManagerBandwidth); local
1190 BitMask checkoff = new BitMask(rttBw); local
1721 BitMask checkoff = new BitMask(wifiDebugRingBufferFlag); local
    [all...]

Completed in 1371 milliseconds