Home
last modified time | relevance | path

Searched refs:chatState (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapConvoContactElement.java82 int chatState, in BluetoothMapConvoContactElement() argument
91 this.mChatState = chatState; in BluetoothMapConvoContactElement()
164 public void setChatState(int chatState) { in setChatState() argument
165 this.mChatState = chatState; in setChatState()
168 public void setChatState(String chatState) { in setChatState() argument
169 this.mChatState = Integer.valueOf(chatState); in setChatState()
DBluetoothMapContentObserver.java656 public int chatState = BluetoothMapContract.ChatState.UNKNOWN; field in BluetoothMapContentObserver.Event
764 int chatState) { in Event() argument
785 if (chatState != BluetoothMapContract.ChatState.UNKNOWN) { in Event()
786 this.chatState = chatState; in Event()
883 if (chatState != 0) { in encode()
885 xmlEvtReport.attribute("", "chat_state", String.valueOf(chatState)); in encode()
1476 int chatState = c.getInt(cInfo.mContactColChatState); in initContactsList() local
1487 chatState, in initContactsList()
2373 int chatState = c.getInt(cInfo.mContactColChatState); in handleContactListChanges() local
2422 chatState, in handleContactListChanges()
[all …]
DBluetoothMapObexServer.java949 int chatState = appParams.getChatState(); in setOwnerStatus() local
955 && chatState == BluetoothMapAppParams.INVALID_VALUE_PARAMETER in setOwnerStatus()
969 if (chatState != BluetoothMapAppParams.INVALID_VALUE_PARAMETER in setOwnerStatus()
971 extras.putInt(BluetoothMapContract.EXTRA_CHAT_STATE, chatState); in setOwnerStatus()
/packages/modules/Bluetooth/android/app/lib/mapapi/com/android/bluetooth/mapapi/
DBluetoothMapIMProvider.java673 int chatState = extras.getInt(BluetoothMapContract.EXTRA_CHAT_STATE); in call() local
675 ret = setOwnerStatus(presenceState, presenceStatus, lastActive, chatState, convoId); in call()
716 int chatState, in setOwnerStatus() argument
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/mapapi/
DBluetoothMapIMProviderTest.java495 final int chatState = 5; // 0x0000 to 0x00FF in call_setOwnerStatusMethod_success() local
502 extras.putInt(BluetoothMapContract.EXTRA_CHAT_STATE, chatState); in call_setOwnerStatusMethod_success()
507 .setOwnerStatus(presenceState, presenceStatus, lastActive, chatState, convoId); in call_setOwnerStatusMethod_success()
775 int chatState, in setOwnerStatus() argument
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/map/
DEventTest.java205 assertThat(event.chatState).isEqualTo(TEST_CHAT_STATE); in constructor_forExtendedEventTypeOnePointTwo_withConversationEvents()