Searched refs:mProxy (Results 1 - 15 of 15) 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
145 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 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...]
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...]
/frameworks/base/libs/hwui/utils/
H A DTestWindowContext.cpp81 mProxy.reset
85 mProxy->loadSystemProperties();
86 mProxy->initialize(mAndroidSurface.get());
89 mProxy->setup(mSize.width(), mSize.height(), 800.0f,
91 mProxy->setLightCenter(lightVector);
108 mProxy->syncAndDrawFrame(nullptr);
109 // Surprisingly, calling mProxy->fence() here appears to make no difference to
114 mProxy->fence();
173 std::unique_ptr<android::uirenderer::renderthread::RenderProxy> mProxy; member in class:android::uirenderer::TestWindowContext::TestWindowData
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp97 mProxy(NULL),
113 mProxy->interrupt();
301 const uint32_t framesFlushed = mProxy->flush();
304 mProxy->clearTimestamp(); // timestamp is invalid until next server push
307 mProxy->setEpoch(mProxy->getEpoch() - mProxy->getPosition());
312 mNewPosition = mProxy->getPosition() + mUpdatePeriod;
357 mProxy->interrupt();
416 mNewPosition = mProxy
[all...]
H A DAudioTrack.cpp257 mProxy->interrupt();
575 if (mProxy->getTimestamp(&ets) == OK &&
588 mProxy->clearTimestamp(); // need new server push for valid timestamp
620 mProxy->interrupt();
659 mProxy->interrupt();
713 mProxy->interrupt();
715 mProxy->flush();
729 mProxy->interrupt();
764 mProxy->setVolumeLR(gain_minifloat_pack(gain_from_float(left), gain_from_float(right)));
786 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/av/services/audioflinger/
H A DRecordTracks.h120 sp<ClientProxy> mProxy; member in class:PatchRecord
H A DPlaybackTracks.h253 sp<ClientProxy> mProxy; member in class:PatchTrack
H A DTracks.cpp1346 mProxy(new ClientProxy(mCblk, mBuffer, frameCount, mFrameSize, true, true))
1411 status = mProxy->obtainBuffer(buffer, timeOut);
1418 mProxy->releaseBuffer(buffer);
1680 mProxy(new ClientProxy(mCblk, mBuffer, frameCount, mFrameSize, false, true))
1728 return mProxy->obtainBuffer(buffer, timeOut);
1733 mProxy->releaseBuffer(buffer);
/frameworks/av/include/media/
H A DAudioRecord.h629 sp<AudioRecordClientProxy> mProxy; member in class:android::AudioRecord
H A DAudioTrack.h1030 Modulo<uint32_t> mServer; // in frames, last known mProxy->getPosition()
1083 sp<AudioTrackClientProxy> mProxy; // primary owner of the memory member in class:android::AudioTrack

Completed in 389 milliseconds