Searched refs:capture (Results 1 - 25 of 43) sorted by relevance

12

/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
H A DCrossProfileIntentFiltersHelper.java195 IntentFilter capture = new IntentFilter();
196 capture.addAction(MediaStore.ACTION_IMAGE_CAPTURE);
197 capture.addAction(MediaStore.ACTION_IMAGE_CAPTURE_SECURE);
198 capture.addAction(MediaStore.ACTION_VIDEO_CAPTURE);
199 capture.addAction(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
200 capture.addAction(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
201 capture.addAction(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
202 capture.addAction(MediaStore.INTENT_ACTION_VIDEO_CAMERA);
203 capture.addCategory(Intent.CATEGORY_DEFAULT);
204 pm.addCrossProfileIntentFilter(capture, managedProfileUserI
[all...]
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastConfigServiceTest.java111 captorStart.capture(), captorEnd.capture(), captorType.capture());
130 captorStart.capture(), captorEnd.capture(), captorType.capture());
H A DCellBroadcastAlertDialogTest.java113 verify(mMockedNotificationManager, times(1)).notify(mInt.capture(),
114 mNotification.capture());
H A DCellBroadcastBootupConfigTest.java158 mStartIds.capture(), mEndIds.capture(), mTypes.capture());
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DCallerInfoLookupHelperTest.java121 queryListenerCaptor.capture(), logSessionCaptor.capture());
132 eq(CONTACTS_PHOTO_URI), imageListenerCaptor.capture(), logSessionCaptor.capture());
158 eq(URI1.getSchemeSpecificPart()), queryListenerCaptor.capture(),
159 logSessionCaptor.capture());
170 eq(CONTACTS_PHOTO_URI), imageListenerCaptor.capture(), logSessionCaptor.capture());
196 eq(URI1.getSchemeSpecificPart()), queryListenerCaptor.capture(),
197 logSessionCaptor.capture());
[all...]
H A DCallAudioManagerTest.java99 eq(CallAudioModeStateMachine.NO_MORE_RINGING_CALLS), captor.capture());
111 eq(CallAudioModeStateMachine.NEW_ACTIVE_OR_DIALING_CALL), captor.capture());
132 .sendMessageWithSessionInfo(muteCaptor.capture());
160 eq(CallAudioModeStateMachine.NO_MORE_RINGING_CALLS), captor.capture());
172 eq(CallAudioModeStateMachine.NEW_ACTIVE_OR_DIALING_CALL), captor.capture());
193 eq(CallAudioModeStateMachine.MT_AUDIO_SPEEDUP_FOR_RINGING_CALL), captor.capture());
227 eq(CallAudioModeStateMachine.NEW_ACTIVE_OR_DIALING_CALL), captor.capture());
242 eq(CallAudioModeStateMachine.NEW_ACTIVE_OR_DIALING_CALL), captor.capture());
251 eq(CallAudioModeStateMachine.NEW_ACTIVE_OR_DIALING_CALL), captor.capture());
274 eq(CallAudioModeStateMachine.NEW_RINGING_CALL), captor.capture());
[all...]
H A DContactsAsyncHelperTest.java119 photoCaptor.capture(), iconCaptor.capture(), eq(COOKIE));
139 photoCaptor.capture(), iconCaptor.capture(), eq(COOKIE));
H A DInCallControllerTests.java131 bindIntentCaptor.capture(),
162 bindIntentCaptor.capture(),
200 queryIntentCaptor.capture(),
212 bindIntentCaptor.capture(),
252 queryIntentCaptor.capture(),
264 bindIntentCaptor.capture(),
307 queryIntentCaptor.capture(),
321 bindIntentCaptor.capture(),
322 serviceConnectionCaptor.capture(),
353 bindIntentCaptor2.capture(),
[all...]
H A DSystemStateProviderTest.java90 verify(mContext).registerReceiver(any(BroadcastReceiver.class), intentFilter.capture());
103 verify(mContext).registerReceiver(receiver.capture(), any(IntentFilter.class));
H A DCallScreeningServiceFilterTest.java202 verify(mContext).bindServiceAsUser(intentCaptor.capture(), serviceCaptor.capture(),
217 verify(mCallScreeningService).screenCall(captor.capture(), any(ParcelableCall.class));
H A DDirectToVoicemailCallFilterTest.java106 verify(mCallerInfoLookupHelper).startLookup(eq(handle), captor.capture());
H A DVideoCallTests.java150 .onCallAudioStateChanged(callAudioStateArgumentCaptor.capture());
H A DVideoProviderTest.java145 // Verify that the callback was called twice and capture the callback arguments.
147 .onCameraCapabilitiesChanged(cameraCapabilitiesCaptor.capture());
284 // Verify we got a response and capture the profiles.
287 fromVideoProfileCaptor.capture(), toVideoProfileCaptor.capture());
388 .onSessionModifyRequestReceived(requestProfileCaptor.capture());
H A DNewOutgoingCallIntentBroadcasterTest.java177 verify(mContext).startActivityAsUser(dialerIntentCaptor.capture(), any(UserHandle.class));
317 verify(mCall).disconnect(timeoutCaptor.capture());
336 verify(mCall).disconnect(timeoutCaptor.capture());
395 intentCaptor.capture(),
399 receiverCaptor.capture(),
/packages/apps/Camera2/src/com/android/camera/one/v2/
H A DOneCameraImpl.java108 /** Set the total capture result once it's been received. */
115 * Returns whether the capture is complete (which is the case once the
116 * image and capture result are both present.
125 /** If true, will write data about each capture request to disk. */
174 /** Keep PictureCallback for last requested capture. */
243 // Add the capture result to the latest in-flight
244 // capture. If all the data for that capture is
246 InFlightCapture capture = null;
250 capture
760 onCaptureCompleted(InFlightCapture capture) argument
[all...]
/packages/apps/Camera2/tests_camera/src/com/android/camera/activity/
H A DCameraTestCase.java142 mShutterCallback.capture(), mRawPictureCallback.capture(),
143 (PictureCallback) anyObject(), mJpegPictureCallback.capture());
147 mAutoFocusCallback.capture());
/packages/apps/Camera2/src/com/android/camera/
H A DFocusOverlayManager.java117 public boolean capture(); method in interface:FocusOverlayManager.Listener
260 capture();
263 capture();
282 capture();
449 * Triggers the autofocus and set the state to which a capture will happen
468 private void capture() { method in class:FocusOverlayManager
469 if (mListener.capture()) {
/packages/apps/LegacyCamera/src/com/android/camera/
H A DFocusManager.java80 public boolean capture(); method in interface:FocusManager.Listener
184 capture();
187 // already have requested AF for us, so just request capture on
195 capture();
215 capture();
343 private void capture() { method in class:FocusManager
344 if (mListener.capture()) {
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
H A DFocusOverlayManager.java98 public boolean capture(); method in interface:FocusOverlayManager.Listener
235 capture();
238 // already have requested AF for us, so just request capture on
246 capture();
261 capture();
409 private void capture() { method in class:FocusOverlayManager
410 if (mListener.capture()) {
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DAndroidCameraCaptureSessionProxy.java96 public int capture(CaptureRequest request, CaptureCallback listener, Handler handler) method in class:AndroidCameraCaptureSessionProxy
99 return mSession.capture(request, new AndroidCaptureCallback(listener), handler);
H A DCameraCaptureSessionProxy.java72 public int capture(CaptureRequest request, CaptureCallback listener, Handler handler) method in interface:CameraCaptureSessionProxy
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/media/
H A DImageRequestTest.java63 options.capture(),
94 options.capture(),
/packages/apps/Settings/tests/unit/src/com/android/settings/
H A DChooseLockSettingsHelperTest.java63 verify(mockActivity, times(1)).startActivity(intentCaptor.capture());
103 verify(mockActivity, times(1)).startActivityForResult(intentCaptor.capture(),
/packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/
H A DExternalCallNotifierTest.java177 .notify(eq("EXTERNAL_CALL"), eq(0), notificationCaptor.capture());
188 .notify(eq("EXTERNAL_CALL"), eq(0), notificationCaptor.capture());
/packages/apps/ManagedProvisioning/tests/src/com/android/managedprovisioning/uiflows/
H A DEncryptionControllerTest.java97 verify(mIntentStore).save(intentCaptor.capture());
114 verify(mIntentStore).save(intentCaptor.capture());

Completed in 1287 milliseconds

12