Home
last modified time | relevance | path

Searched refs:getPresenceStatus (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/map/
DBluetoothMapConvoContactElementTest.java78 assertThat(contactElement.getPresenceStatus()).isEqualTo(TEST_PRESENCE_STATUS); in constructorWithArguments()
116 assertThat(contactElement.getPresenceStatus()).isEqualTo(TEST_PRESENCE_STATUS); in settersAndGetters()
161 assertThat(contactElementFromXml.getPresenceStatus()).isEqualTo(TEST_PRESENCE_STATUS); in encodeToXml_thenDecodeToInstance_returnsCorrectly()
DBluetoothMapAppParamsTest.java149 assertThat(appParamsDecoded.getPresenceStatus()).isEqualTo(TEST_PRESENCE_STATUS); in encodeToBuffer_thenDecode()
242 assertThat(appParams.getPresenceStatus()).isEqualTo(TEST_PRESENCE_STATUS); in settersAndGetters()
DBluetoothMapObexServerTest.java136 when(params.getPresenceStatus()).thenReturn(null); in setOwnerStatus_withAppParamsInvalid()
DBluetoothMapContentObserverTest.java1070 Assert.assertEquals(contactElement.getPresenceStatus(), TEST_STATUS_TEXT); in initContactsList()
2413 Assert.assertEquals(contactElement.getPresenceStatus(), TEST_STATUS_TEXT); in handleContactListChanges_withNullContactForUci()
2484 Assert.assertEquals(contactElement.getPresenceStatus(), TEST_STATUS_TEXT); in handleContactListChanges_withNonNullContactForUci()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapAppParams.java959 if (getPresenceStatus() != null) { in getParamMaxLength()
960 length += getPresenceStatus().getBytes("UTF-8").length; in getParamMaxLength()
1123 if (getPresenceStatus() != null) { in encodeParams()
1125 appParamBuf.put((byte) getPresenceStatus().getBytes("UTF-8").length); in encodeParams()
1126 appParamBuf.put(getPresenceStatus().getBytes()); in encodeParams()
1521 public String getPresenceStatus() { in getPresenceStatus() method in BluetoothMapAppParams
DBluetoothMapConvoContactElement.java112 public String getPresenceStatus() { in getPresenceStatus() method in BluetoothMapConvoContactElement
DBluetoothMapObexServer.java541 + appParams.getPresenceStatus() in onPut()
947 String presenceStatus = appParams.getPresenceStatus(); in setOwnerStatus()
2190 + appParams.getPresenceStatus() in onDelete()
DBluetoothMapContentObserver.java2485 String currentPresenceStatus = contact.getPresenceStatus(); in handleContactListChanges()