HomeSort by relevance Sort by last modified time
    Searched defs:standby (Results 1 - 25 of 32) sorted by null

1 2

  /frameworks/av/services/audioflinger/
SpdifStreamOut.cpp 110 int SpdifStreamOut::standby() function in class:android::SpdifStreamOut
113 return AudioStreamOut::standby();
AudioStreamOut.cpp 103 // Adjust for standby using HAL rate frames.
198 int AudioStreamOut::standby() function in class:android::AudioStreamOut
202 return stream->standby();
  /hardware/libhardware_legacy/audio/
AudioHardwareStub.h 40 virtual status_t standby();
57 virtual status_t standby() { return NO_ERROR; } function in class:android_audio_legacy::AudioStreamInStub
AudioHardwareGeneric.h 57 virtual status_t standby();
91 virtual status_t standby() { return NO_ERROR; } function in class:android_audio_legacy::AudioStreamInGeneric
AudioHardwareStub.cpp 136 status_t AudioStreamOutStub::standby() function in class:android_audio_legacy::AudioStreamOutStub
A2dpAudioInterface.cpp 329 standby();
352 status_t A2dpAudioInterface::A2dpAudioStreamOut::standby() function in class:android_audio_legacy::A2dpAudioInterface::A2dpAudioStreamOut
363 ALOGV_IF(mClosing || !mBluetoothEnabled, "Standby skip stop: closing %d enabled %d",
396 standby();
467 standby();
AudioDumpInterface.cpp 117 dumpOut->standby();
179 dumpIn->standby();
303 status_t AudioStreamOutDump::standby() function in class:android::AudioStreamOutDump
305 ALOGV("AudioStreamOutDump standby(), mFile %p, mFinalStream %p", mFile, mFinalStream);
308 if (mFinalStream != 0 ) return mFinalStream->standby();
500 status_t AudioStreamInDump::standby() function in class:android::AudioStreamInDump
502 ALOGV("AudioStreamInDump standby(), mFile %p, mFinalStream %p", mFile, mFinalStream);
505 if (mFinalStream != 0 ) return mFinalStream->standby();
AudioHardwareGeneric.cpp 239 status_t AudioStreamOutGeneric::standby() function in class:android_audio_legacy::AudioStreamOutGeneric
241 // Implement: audio hardware to standby mode
  /hardware/qcom/audio/legacy/alsa_sound/
AudioStreamOutALSA.cpp 335 status_t AudioStreamOutALSA::standby() function in class:android_audio_legacy::AudioStreamOutALSA
339 ALOGV("standby");
357 mHandle->module->standby(mHandle);
377 // the output has exited standby
AudioStreamInALSA.cpp 573 status_t AudioStreamInALSA::standby() function in class:android_audio_legacy::AudioStreamInALSA
577 ALOGD("standby");
585 ALOGD("standby");
589 ALOGD(" into standby, stop record");
594 mHandle->module->standby(mHandle);
    [all...]
  /device/generic/car/emulator/audio/driver/
audio_hw.h 50 bool standby; // Protected by this->lock member in struct:generic_stream_out
79 bool standby; // Protected by this->lock member in struct:generic_stream_in
  /frameworks/av/media/libaudiohal/2.0/
StreamHalHidl.cpp 144 status_t StreamHalHidl::standby() { function in class:android::StreamHalHidl
146 return processReturn("standby", mStream->standby());
StreamHalLocal.cpp 98 status_t StreamHalLocal::standby() { function in class:android::StreamHalLocal
99 return mStream->standby(mStream);
  /frameworks/av/media/libaudiohal/4.0/
StreamHalLocal.cpp 100 status_t StreamHalLocal::standby() { function in class:android::V4_0::StreamHalLocal
101 return mStream->standby(mStream);
StreamHalHidl.cpp 155 status_t StreamHalHidl::standby() { function in class:android::V4_0::StreamHalHidl
157 return processReturn("standby", mStream->standby());
  /hardware/interfaces/audio/core/all-versions/default/include/core/all-versions/default/
Stream.impl.h 212 Return<Result> Stream::standby() { function in class:android::hardware::audio::AUDIO_HAL_VERSION::implementation::Stream
213 return analyzeStatus("standby", mStream->standby(mStream));
StreamIn.impl.h 236 Return<Result> StreamIn::standby() { function in class:android::hardware::audio::AUDIO_HAL_VERSION::implementation::StreamIn
237 return mStreamCommon->standby();
StreamOut.impl.h 239 Return<Result> StreamOut::standby() { function in class:android::hardware::audio::AUDIO_HAL_VERSION::implementation::StreamOut
240 return mStreamCommon->standby();
  /hardware/libhardware/modules/audio/
audio_hw.c 172 // we don't sleep when we exit standby (this is typical for a real alsa buffer).
308 // we do a full sleep when exiting standby.
309 const bool standby = in->last_read_time_us == 0; local
310 const int64_t elapsed_time_since_last_read = standby ?
374 out->stream.common.standby = out_standby;
521 in->stream.common.standby = in_standby;
  /device/linaro/hikey/audio/
audio_hw.c 84 int standby; member in struct:alsa_stream_out
167 if (!out->standby) {
171 out->standby = 1;
260 if (out->standby) {
266 out->standby = 0;
461 out->stream.common.standby = out_standby;
493 out->standby = 1;
612 in->stream.common.standby = in_standby;
  /hardware/intel/audio_media/hdmi/
tinyaudio_hw.c 120 bool standby; member in struct:audio_device
130 bool standby; member in struct:stream_out
349 ALOGV("%s enter standby = %d",__func__,out->standby);
354 if (!out->standby && activePcm) {
357 out->standby = true;
579 out->standby = true;
582 if (out->standby) {
587 out->standby = false;
730 out->stream.common.standby = out_standby
    [all...]
  /hardware/libhardware/include/hardware/
audio.h 150 * Put the audio hardware input/output into standby mode.
151 * Driver should exit from standby mode at the next I/O operation.
154 int (*standby)(struct audio_stream *stream); member in struct:audio_stream
180 * The audio flinger will put the stream in standby and then change the
272 * the output has exited standby
342 * The count is not reset to zero when output enters standby.
    [all...]
  /hardware/libhardware/modules/usbaudio/
audio_hal.c 69 bool standby; member in struct:audio_device
84 bool standby; member in struct:stream_out
120 bool standby; member in struct:stream_in
346 if (!out->standby) {
350 out->standby = true;
391 if (!out->standby)
450 if (out->standby) {
457 out->standby = false;
560 out->stream.common.standby = out_standby;
661 out->standby = true
    [all...]
  /device/generic/goldfish/audio/
audio_hw.c 177 bool standby; // Protected by this->lock member in struct:generic_stream_out
205 bool standby; // Protected by this->lock member in struct:generic_stream_in
311 if (!out->standby) {
411 ALOGE("Out worker not in standby before exiting");
473 if (out->standby) {
520 if (out->standby) {
521 out->standby = false;
603 if (out->standby) {
622 out->standby = true;
830 if (!in->standby) {
    [all...]
  /external/autotest/client/bin/
utils.py 1057 def standby(): function
1061 set_power_state('standby')
    [all...]

Completed in 343 milliseconds

1 2