Home
last modified time | relevance | path

Searched refs:pause (Results 1 – 21 of 21) sorted by relevance

/hardware/qcom/display/msm8084/libhwcomposer/
Dhwc_virtual.h43 virtual void pause(hwc_context_t* ctx, int dpy) = 0;
65 virtual void pause(hwc_context_t* ctx, int dpy);
88 virtual void pause(hwc_context_t* ctx, int dpy);
Dhwc_qclient.cpp159 static void pauseWFD(hwc_context_t *ctx, uint32_t pause) { in pauseWFD() argument
164 if(pause) { in pauseWFD()
Dhwc_virtual.cpp218 void HWCVirtualVDS::pause(hwc_context_t* ctx, int dpy) { in pause() function in HWCVirtualVDS
353 void HWCVirtualV4L2::pause(hwc_context_t* ctx, int dpy) { in pause() function in HWCVirtualV4L2
Dhwc_uevents.cpp104 ctx->mHWCVirtual->pause(ctx, dpy); in handle_pause()
/hardware/qcom/display/msm8226/libhwcomposer/
Dhwc_virtual.h43 virtual void pause(hwc_context_t* ctx, int dpy) = 0;
65 virtual void pause(hwc_context_t* ctx, int dpy);
94 virtual void pause(hwc_context_t* ctx, int dpy);
Dhwc_qclient.cpp165 static void pauseWFD(hwc_context_t *ctx, uint32_t pause) { in pauseWFD() argument
170 if(pause) { in pauseWFD()
Dhwc_virtual.cpp247 void HWCVirtualVDS::pause(hwc_context_t* ctx, int dpy) { in pause() function in HWCVirtualVDS
391 void HWCVirtualV4L2::pause(hwc_context_t* ctx, int dpy) { in pause() function in HWCVirtualV4L2
Dhwc_uevents.cpp104 ctx->mHWCVirtual->pause(ctx, dpy); in handle_pause()
/hardware/qcom/display/msm8226/libqservice/
DQServiceUtils.h86 inline android::status_t pauseWFD(uint32_t pause) { in pauseWFD() argument
87 return sendSingleParam(qService::IQService::PAUSE_WFD, pause); in pauseWFD()
/hardware/qcom/display/msm8084/libqservice/
DQServiceUtils.h86 inline android::status_t pauseWFD(uint32_t pause) { in pauseWFD() argument
87 return sendSingleParam(qService::IQService::PAUSE_WFD, pause); in pauseWFD()
/hardware/google/pixel/perfstatsd/include/
Dperfstatsd.h39 void pause(void) { sleep(mRefreshPeriod); } in pause() function
/hardware/interfaces/audio/2.0/
DIStreamOut.hal170 * are retained by the hardware. Useful for implementing pause/resume. Empty
172 * with non-trivial latency. In the pause state, some audio hardware may
180 pause() generates (Result retval);
183 * Notifies to the audio driver to resume playback following a pause.
184 * Returns error INVALID_STATE if called without matching pause.
/hardware/interfaces/audio/6.0/
DIStreamOut.hal181 * are retained by the hardware. Useful for implementing pause/resume. Empty
183 * with non-trivial latency. In the pause state, some audio hardware may
191 pause() generates (Result retval);
194 * Notifies to the audio driver to resume playback following a pause.
195 * Returns error INVALID_STATE if called without matching pause.
/hardware/interfaces/audio/4.0/
DIStreamOut.hal181 * are retained by the hardware. Useful for implementing pause/resume. Empty
183 * with non-trivial latency. In the pause state, some audio hardware may
191 pause() generates (Result retval);
194 * Notifies to the audio driver to resume playback following a pause.
195 * Returns error INVALID_STATE if called without matching pause.
/hardware/interfaces/audio/5.0/
DIStreamOut.hal181 * are retained by the hardware. Useful for implementing pause/resume. Empty
183 * with non-trivial latency. In the pause state, some audio hardware may
191 pause() generates (Result retval);
194 * Notifies to the audio driver to resume playback following a pause.
195 * Returns error INVALID_STATE if called without matching pause.
/hardware/interfaces/audio/core/all-versions/default/
DStreamOut.cpp474 _hidl_cb(mStream->pause != NULL, mStream->resume != NULL); in supportsPauseAndResume()
478 Return<Result> StreamOut::pause() { in pause() function in android::hardware::audio::CPP_VERSION::implementation::StreamOut
479 return mStream->pause != NULL in pause()
480 ? Stream::analyzeStatus("pause", mStream->pause(mStream), {ENOSYS} /*ignore*/) in pause()
/hardware/google/pixel/perfstatsd/
Dmain.cpp32 perfstatsdSp->pause(); in perfstatsdMain()
/hardware/interfaces/audio/core/all-versions/default/include/core/default/
DStreamOut.h110 Return<Result> pause() override;
/hardware/libhardware/include/hardware/
Daudio.h303 int (*pause)(struct audio_stream_out* stream); member
/hardware/interfaces/audio/core/all-versions/vts/functional/
DAudioPrimaryHidlHalTest.h1383 EXPECT_OK(stream->supportsPauseAndResume(returnIn(pause, resume))); in Capability()
1386 bool pause = false; member
1473 if (!Capability(stream.get()).pause) { in TEST_P()
1477 ASSERT_RESULT(Result::INVALID_STATE, stream->pause()); in TEST_P()
/hardware/qcom/audio/hal/
Daudio_hw.c5068 out->stream.pause = out_pause; in adev_open_output_stream()