Home
last modified time | relevance | path

Searched refs:CallComposerPictureTransfer (Results 1 – 5 of 5) sorted by relevance

/aosp12/packages/services/Telephony/tests/src/com/android/phone/callcomposer/
H A DPictureManagerTest.java63 @Mock CallComposerPictureTransfer mockPictureTransfer;
107 manager.handleUploadToServer(new CallComposerPictureTransfer.Factory() { in testPictureUpload()
109 public CallComposerPictureTransfer create(Context context, int subscriptionId, in testPictureUpload()
116 ArgumentCaptor<CallComposerPictureTransfer.PictureCallback> callbackCaptor = in testPictureUpload()
117 ArgumentCaptor.forClass(CallComposerPictureTransfer.PictureCallback.class); in testPictureUpload()
165 manager.handleUploadToServer(new CallComposerPictureTransfer.Factory() { in testPictureUploadWithAuthRefresh()
174 ArgumentCaptor<CallComposerPictureTransfer.PictureCallback> callbackCaptor = in testPictureUploadWithAuthRefresh()
204 manager.handleDownloadFromServer(new CallComposerPictureTransfer.Factory() { in testPictureDownload()
213 ArgumentCaptor<CallComposerPictureTransfer.PictureCallback> callbackCaptor = in testPictureDownload()
243 manager.handleDownloadFromServer(new CallComposerPictureTransfer.Factory() { in testPictureDownloadWithAuthRefresh()
[all …]
/aosp12/packages/services/Telephony/src/com/android/phone/callcomposer/
H A DCallComposerPictureManager.java121 public void handleUploadToServer(CallComposerPictureTransfer.Factory transferFactory, in handleUploadToServer()
142 CallComposerPictureTransfer transfer = transferFactory.create(mContext, in handleUploadToServer()
146 transfer.setCallback(new CallComposerPictureTransfer.PictureCallback() { in handleUploadToServer()
182 public void handleDownloadFromServer(CallComposerPictureTransfer.Factory transferFactory, in handleDownloadFromServer()
193 CallComposerPictureTransfer transfer = transferFactory.create(mContext, in handleDownloadFromServer()
197 transfer.setCallback(new CallComposerPictureTransfer.PictureCallback() { in handleDownloadFromServer()
H A DCallComposerPictureTransfer.java66 public class CallComposerPictureTransfer { class
67 private static final String TAG = CallComposerPictureTransfer.class.getSimpleName();
78 default CallComposerPictureTransfer create(Context context, int subscriptionId, String url, in create()
80 return new CallComposerPictureTransfer(context, subscriptionId, url, executorService); in create()
106 private CallComposerPictureTransfer(Context context, int subscriptionId, String url, in CallComposerPictureTransfer() method in CallComposerPictureTransfer
/aosp12/packages/services/Telephony/src/com/android/services/telephony/
H A DTelephonyConnection.java90 import com.android.phone.callcomposer.CallComposerPictureTransfer;
1238 manager.handleDownloadFromServer(new CallComposerPictureTransfer.Factory() {}, in onCallFilteringCompleted()
/aosp12/packages/services/Telephony/src/com/android/phone/
H A DPhoneInterfaceManager.java201 import com.android.phone.callcomposer.CallComposerPictureTransfer;
7407 new CallComposerPictureTransfer.Factory() {}, in uploadCallComposerPicture()