Searched refs:mProxy (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCallbackProxies.java41 private final MethodNameInvoker<CameraDeviceImpl.StateCallbackKK> mProxy; field in class:CallbackProxies.DeviceStateCallbackProxy
46 mProxy = new MethodNameInvoker<>(dispatchTarget, CameraDeviceImpl.StateCallbackKK.class);
51 mProxy.invoke("onOpened", camera);
56 mProxy.invoke("onDisconnected", camera);
61 mProxy.invoke("onError", camera, error);
66 mProxy.invoke("onUnconfigured", camera);
71 mProxy.invoke("onActive", camera);
76 mProxy.invoke("onBusy", camera);
81 mProxy.invoke("onClosed", camera);
86 mProxy
92 private final MethodNameInvoker<CameraDeviceImpl.CaptureCallback> mProxy; field in class:CallbackProxies.DeviceCaptureCallbackProxy
152 private final MethodNameInvoker<CameraCaptureSession.StateCallback> mProxy; field in class:CallbackProxies.SessionStateCallbackProxy
[all...]
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
H A DBlockingCaptureCallback.java86 private final CameraCaptureSession.CaptureCallback mProxy; field in class:BlockingCaptureCallback
96 mProxy = null;
111 mProxy = listener;
127 if (mProxy != null) mProxy.onCaptureStarted(session, request, timestamp, frameNumber);
134 if (mProxy != null) mProxy.onCaptureProgressed(session, request, partialResult);
141 if (mProxy != null) mProxy.onCaptureCompleted(session, request, result);
148 if (mProxy !
[all...]
H A DBlockingStateCallback.java46 private final CameraDevice.StateCallback mProxy; field in class:BlockingStateCallback
103 mProxy = null;
107 mProxy = listener;
112 if (mProxy != null) {
113 mProxy.onOpened(camera);
120 if (mProxy != null) {
121 mProxy.onDisconnected(camera);
128 if (mProxy != null) {
129 mProxy.onError(camera, error);
136 if (mProxy !
[all...]
H A DBlockingSessionCallback.java80 private final CameraCaptureSession.StateCallback mProxy; field in class:BlockingSessionCallback
100 mProxy = null;
115 mProxy = listener;
155 if (mProxy != null) mProxy.onActive(session);
162 if (mProxy != null) mProxy.onClosed(session);
172 if (mProxy != null) {
173 mProxy.onConfigured(session);
181 if (mProxy !
[all...]
H A DBlockingCameraManager.java176 private final CameraDevice.StateCallback mProxy; field in class:BlockingCameraManager.OpenListener
193 mProxy = listener;
225 if (mProxy != null) mProxy.onOpened(camera);
248 if (mProxy != null) mProxy.onDisconnected(camera);
274 if (mProxy != null) mProxy.onError(camera, error);
279 if (mProxy != null) mProxy
[all...]
/frameworks/base/libs/hwui/utils/
H A DTestWindowContext.cpp81 mProxy.reset
85 mProxy->loadSystemProperties();
86 mProxy->initialize(mAndroidSurface.get());
89 mProxy->setup(800.0f, 255 * 0.075f, 255 * 0.15f);
90 mProxy->setLightCenter(lightVector);
102 mProxy->syncAndDrawFrame();
103 // Surprisingly, calling mProxy->fence() here appears to make no difference to
108 mProxy->fence();
168 std::unique_ptr<android::uirenderer::renderthread::RenderProxy> mProxy; member in class:android::uirenderer::TestWindowContext::TestWindowData
/frameworks/av/media/libaudioclient/
H A DAudioRecord.cpp98 mProxy(NULL),
115 mProxy->interrupt();
303 const uint32_t framesFlushed = mProxy->flush();
306 mProxy->clearTimestamp(); // timestamp is invalid until next server push
309 mProxy->setEpoch(mProxy->getEpoch() - mProxy->getPosition());
314 mNewPosition = mProxy->getPosition() + mUpdatePeriod;
359 mProxy->interrupt();
418 mNewPosition = mProxy
[all...]
H A DAudioTrack.cpp267 mProxy->interrupt();
614 mProxy->clearTimestamp(); // need new server push for valid timestamp
646 mProxy->interrupt();
690 mProxy->interrupt();
744 mProxy->interrupt();
746 mProxy->flush();
760 mProxy->interrupt();
795 mProxy->setVolumeLR(gain_minifloat_pack(gain_from_float(left), gain_from_float(right)));
817 mProxy->setSendLevel(level);
855 mProxy
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java807 private SipSessionListenerProxy mProxy = new SipSessionListenerProxy(); field in class:SipService.SipAutoReg
928 setListener(mProxy.getListener());
944 mProxy.setListener(listener);
952 mProxy.onRegistering(mSession);
956 mProxy.onRegistrationDone(mSession, duration);
959 mProxy.onRegistrationTimeout(mSession);
961 mProxy.onRegistrationFailed(mSession, mErrorCode,
965 mProxy.onRegistrationFailed(mSession,
969 mProxy.onRegistrationFailed(mSession,
973 mProxy
[all...]
H A DSipSessionGroup.java487 replacedSession.mProxy.getListener(),
490 newSession.mProxy.onCallTransferring(newSession,
497 newSession = createNewSession(event, mProxy,
500 mProxy.onRinging(newSession, newSession.mPeerProfile,
538 SipSessionListenerProxy mProxy = new SipSessionListenerProxy(); field in class:SipSessionGroup.SipSessionImpl
597 return new SipSessionImpl(mProxy.getListener());
675 mProxy.setListener((listener instanceof SipSessionListenerProxy)
909 mProxy.onRegistrationTimeout(this);
1079 mProxy.onCalling(this);
1088 mProxy
[all...]
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbPortManager.java83 private IUsb mProxy = null; field in class:UsbPortManager
134 if (mProxy != null) {
136 mProxy.queryPortStatus();
239 } else if (mProxy != null) {
255 mProxy.switchRole(portId, newRole);
269 mProxy.switchRole(portId, newRole);
284 mProxy.switchRole(portId, newRole);
478 mProxy = null;
494 if (mProxy != null) {
499 mProxy
[all...]
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/
H A DRestrictedLockUtilsTest.java57 private RestrictedLockUtils.Proxy mProxy; field in class:RestrictedLockUtilsTest
73 RestrictedLockUtils.sProxy = mProxy;
180 doReturn(true).when(mProxy).isSeparateProfileChallengeEnabled(any(), eq(mProfileId));
211 when(mProxy.getParentProfileInstance(any(DevicePolicyManager.class), any())
/frameworks/av/services/audioflinger/
H A DRecordTracks.h121 sp<ClientProxy> mProxy; member in class:PatchRecord
H A DPlaybackTracks.h265 sp<ClientProxy> mProxy; member in class:PatchTrack
H A DTracks.cpp1437 mProxy(new ClientProxy(mCblk, mBuffer, frameCount, mFrameSize, true, true))
1502 status = mProxy->obtainBuffer(buffer, timeOut);
1509 mProxy->releaseBuffer(buffer);
1773 mProxy(new ClientProxy(mCblk, mBuffer, frameCount, mFrameSize, false, true))
1821 return mProxy->obtainBuffer(buffer, timeOut);
1826 mProxy->releaseBuffer(buffer);
/frameworks/av/include/media/
H A DAudioRecord.h636 sp<AudioRecordClientProxy> mProxy; member in class:android::AudioRecord
H A DAudioTrack.h1068 Modulo<uint32_t> mServer; // in frames, last known mProxy->getPosition()
1129 sp<AudioTrackClientProxy> mProxy; // primary owner of the memory member in class:android::AudioTrack
/frameworks/av/media/libaudioclient/include/media/
H A DAudioRecord.h636 sp<AudioRecordClientProxy> mProxy; member in class:android::AudioRecord
H A DAudioTrack.h1068 Modulo<uint32_t> mServer; // in frames, last known mProxy->getPosition()
1129 sp<AudioTrackClientProxy> mProxy; // primary owner of the memory member in class:android::AudioTrack

Completed in 1857 milliseconds