Home
last modified time | relevance | path

Searched refs:getPriority (Results 1 – 14 of 14) sorted by relevance

/system/chre/core/tests/
Drequest_multiplexer_test.cc45 int getPriority() const { in getPriority() function in DummyRequest
60 EXPECT_EQ(multiplexer.getCurrentMaximalRequest().getPriority(), 0); in TEST()
70 EXPECT_EQ(multiplexer.getCurrentMaximalRequest().getPriority(), 10); in TEST()
83 EXPECT_EQ(multiplexer.getCurrentMaximalRequest().getPriority(), 10); in TEST()
92 EXPECT_EQ(multiplexer.getCurrentMaximalRequest().getPriority(), 10); in TEST()
103 EXPECT_EQ(multiplexer.getRequests()[index].getPriority(), 10); in TEST()
104 EXPECT_EQ(multiplexer.getCurrentMaximalRequest().getPriority(), 10); in TEST()
124 EXPECT_EQ(multiplexer.getRequests()[index].getPriority(), 10); in TEST()
125 EXPECT_EQ(multiplexer.getCurrentMaximalRequest().getPriority(), 10); in TEST()
134 EXPECT_EQ(multiplexer.getRequests()[index].getPriority(), 5); in TEST()
[all …]
/system/bt/binder/android/bluetooth/
DIBluetoothPbapClient.aidl33 int getPriority(in BluetoothDevice device); in getPriority() method
DIBluetoothSap.aidl36 int getPriority(in BluetoothDevice device); in getPriority() method
DIBluetoothMap.aidl36 int getPriority(in BluetoothDevice device); in getPriority() method
DIBluetoothA2dpSink.aidl35 int getPriority(in BluetoothDevice device); in getPriority() method
DIBluetoothHearingAid.aidl36 int getPriority(in BluetoothDevice device); in getPriority() method
DIBluetoothMapClient.aidl36 int getPriority(in BluetoothDevice device); in getPriority() method
DIBluetoothHidHost.aidl34 int getPriority(in BluetoothDevice device); in getPriority() method
DIBluetoothA2dp.aidl38 int getPriority(in BluetoothDevice device); in getPriority() method
DIBluetoothHeadset.aidl46 int getPriority(in BluetoothDevice device); in getPriority() method
DIBluetoothHeadsetClient.aidl36 int getPriority(in BluetoothDevice device); in getPriority() method
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
DCountryZoneTree.java69 || priorityCandidate.getPriority() < zoneInfo.getPriority()) { in initNodePriority()
72 } else if (priorityCandidate.getPriority() == zoneInfo.getPriority()) { in initNodePriority()
101 .map(z -> z.getZoneId() + "(" + z.getPriority() + ")") in getZoneInfosString()
166 int priority = timeZoneMapping.getPriority(); in create()
DZoneInfo.java97 public int getPriority() { in getPriority() method in ZoneInfo
/system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/zonetree/
DZoneInfoTest.java49 assertEquals(5, zoneInfo.getPriority()); in testCreate()