Searched refs:ChatManager (Results 1 – 3 of 3) sorted by relevance
/aosp12/packages/services/Telephony/testapps/TestRcsApp/TestApp/src/com/google/android/sample/rcsclient/ |
H A D | ChatActivity.java | 42 import com.google.android.sample.rcsclient.util.ChatManager; 143 ChatManager.getInstance(getApplicationContext(), mSubId).initChatSession( in initChatButton() 171 if (!ChatManager.getInstance(getApplicationContext(), mSubId).isRegistered() in initChatButton() 197 Uri result = ChatManager.getInstance(getApplicationContext(), mSubId).addNewMessage( in sendChatMessage() 198 mNewMessage.getText().toString(), ChatManager.SELF, mDestNumber); in sendChatMessage() 201 ChatManager.getInstance(getApplicationContext(), in sendChatMessage() 209 ChatManager.getInstance(getApplicationContext(), mSubId).updateMsgResult( in sendChatMessage() 216 ChatManager.getInstance(getApplicationContext(), mSubId).updateMsgResult( in sendChatMessage() 267 return ChatManager.SELF.equals( in messageFromSelf() 297 ChatManager.getInstance(getApplicationContext(), mSubId).terminateSession(mDestNumber); in onDestroy()
|
H A D | ContactListActivity.java | 41 import com.google.android.sample.rcsclient.util.ChatManager; 133 ChatManager chatManager = ChatManager.getInstance(this, subId); in dispose() 204 ChatManager chatManager = ChatManager.getInstance(this, subId); in initSipDelegate()
|
/aosp12/packages/services/Telephony/testapps/TestRcsApp/TestApp/src/com/google/android/sample/rcsclient/util/ |
H A D | ChatManager.java | 57 public class ChatManager { class 62 private static HashMap<Integer, ChatManager> sChatManagerInstances = new HashMap<>(); 74 private ChatManager(Context context, int subId) { in ChatManager() method in ChatManager 118 public static ChatManager getInstance(Context context, int subId) { in getInstance() 123 ChatManager chatManager = new ChatManager(context, subId); in getInstance()
|