Searched refs:expectedFlags (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/ |
D | BluetoothTestUtils.java | 65 public FlagReceiver(int expectedFlags) { in FlagReceiver() argument 66 mExpectedFlags = expectedFlags; in FlagReceiver() 102 public BluetoothReceiver(int expectedFlags) { in BluetoothReceiver() argument 103 super(expectedFlags); in BluetoothReceiver() 156 public PairReceiver(BluetoothDevice device, int passkey, byte[] pin, int expectedFlags) { in PairReceiver() argument 157 super(expectedFlags); in PairReceiver() 215 public ConnectProfileReceiver(BluetoothDevice device, int profile, int expectedFlags) { in ConnectProfileReceiver() argument 216 super(expectedFlags); in ConnectProfileReceiver() 269 public ConnectPanReceiver(BluetoothDevice device, int role, int expectedFlags) { in ConnectPanReceiver() argument 270 super(device, BluetoothProfile.PAN, expectedFlags); in ConnectPanReceiver() [all …]
|
/frameworks/base/core/tests/coretests/src/android/view/ |
D | ViewInvalidateTest.java | 100 int expectedFlags = 0; in validateInvalFlags() local 102 expectedFlags |= expectedFlag; in validateInvalFlags() 106 assertEquals(String.format("expect %x, observed %x", expectedFlags, observedFlags), in validateInvalFlags() 107 expectedFlags, observedFlags); in validateInvalFlags()
|
/frameworks/native/services/inputflinger/tests/ |
D | InputDispatcher_test.cpp | 665 int32_t expectedFlags) { in consumeEvent() argument 680 EXPECT_EQ(expectedFlags, keyEvent.getFlags()); in consumeEvent() 686 EXPECT_EQ(expectedFlags, motionEvent.getFlags()); in consumeEvent() 815 void consumeKeyDown(int32_t expectedDisplayId, int32_t expectedFlags = 0) { in consumeKeyDown() argument 817 expectedFlags); in consumeKeyDown() 820 void consumeKeyUp(int32_t expectedDisplayId, int32_t expectedFlags = 0) { in consumeKeyUp() argument 821 consumeEvent(AINPUT_EVENT_TYPE_KEY, AKEY_EVENT_ACTION_UP, expectedDisplayId, expectedFlags); in consumeKeyUp() 825 int32_t expectedFlags = 0) { in consumeMotionCancel() argument 827 expectedFlags); in consumeMotionCancel() 831 int32_t expectedFlags = 0) { in consumeMotionMove() argument [all …]
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | LockTaskControllerTest.java | 590 int expectedFlags = STATUS_BAR_MASK_LOCKED in testUpdateLockTaskFeatures() local 593 verify(mStatusBarService).disable(eq(expectedFlags), any(IBinder.class), in testUpdateLockTaskFeatures() 605 expectedFlags = STATUS_BAR_MASK_LOCKED in testUpdateLockTaskFeatures() 610 verify(mStatusBarService).disable(eq(expectedFlags), any(IBinder.class), in testUpdateLockTaskFeatures()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/ |
D | ImsServiceControllerTest.java | 126 int expectedFlags = Context.BIND_AUTO_CREATE | Context.BIND_FOREGROUND_SERVICE in testBindService() local 128 verify(mMockContext).bindService(intentCaptor.capture(), any(), eq(expectedFlags)); in testBindService()
|
/frameworks/base/core/java/android/util/proto/ |
D | ProtoOutputStream.java | 2208 public static int checkFieldId(long fieldId, long expectedFlags) { in checkFieldId() argument 2211 final long expectedCount = expectedFlags & FIELD_COUNT_MASK; in checkFieldId() 2212 final long expectedType = expectedFlags & FIELD_TYPE_MASK; in checkFieldId()
|