Home
last modified time | relevance | path

Searched refs:mOutput (Results 1 – 5 of 5) sorted by relevance

/hardware/libhardware_legacy/audio/
DA2dpAudioInterface.cpp48 mOutput(0), mHardwareInterface(hw), mBluetoothEnabled(true), mSuspended(false) in A2dpAudioInterface()
54 closeOutputStream((AudioStreamOut *)mOutput); in ~A2dpAudioInterface()
75 if (mOutput) { in openOutputStream()
84 mOutput = out; in openOutputStream()
85 mOutput->setBluetoothEnabled(mBluetoothEnabled); in openOutputStream()
86 mOutput->setSuspended(mSuspended); in openOutputStream()
93 return mOutput; in openOutputStream()
97 if (mOutput == 0 || mOutput != out) { in closeOutputStream()
101 delete mOutput; in closeOutputStream()
102 mOutput = 0; in closeOutputStream()
[all …]
DAudioHardwareGeneric.cpp46 : mOutput(0), mInput(0), mFd(-1), mMicMute(false) in AudioHardwareGeneric()
54 closeOutputStream((AudioStreamOut *)mOutput); in ~AudioHardwareGeneric()
73 if (mOutput) { in openOutputStream()
87 mOutput = out; in openOutputStream()
91 return mOutput; in openOutputStream()
95 if (mOutput && out == mOutput) { in closeOutputStream()
96 delete mOutput; in closeOutputStream()
97 mOutput = 0; in closeOutputStream()
184 if (mOutput) { in dump()
185 mOutput->dump(fd, args); in dump()
DA2dpAudioInterface.h127 A2dpAudioStreamOut* mOutput; variable
DAudioHardwareGeneric.h146 AudioStreamOutGeneric *mOutput; variable
/hardware/libhardware/modules/sensors/dynamic_sensor/test/
DHidRawSensorTest.cpp83 mOutput.push_back(pair); in sendReport()
94 if (!mOutput.empty()) { in dequeuOutputReport()
97 *pair = mOutput.front(); in dequeuOutputReport()
98 mOutput.pop_front(); in dequeuOutputReport()
104 std::deque<DataPair> mOutput; member in android::SensorHalExt::HidRawDummyDevice