HomeSort by relevance Sort by last modified time
    Searched refs:mHwDevice (Results 1 - 8 of 8) sorted by null

  /frameworks/av/services/soundtrigger/
SoundTriggerHalLegacy.cpp 29 : mModuleName(moduleName), mHwDevice(NULL)
48 rc = sound_trigger_hw_device_open(mod, &mHwDevice);
52 mHwDevice = NULL;
55 if (mHwDevice->common.version < SOUND_TRIGGER_DEVICE_API_VERSION_1_0 ||
56 mHwDevice->common.version > SOUND_TRIGGER_DEVICE_API_VERSION_CURRENT) {
57 ALOGE("wrong sound trigger hw device version %04x", mHwDevice->common.version);
64 if (mHwDevice != NULL) {
65 sound_trigger_hw_device_close(mHwDevice);
71 if (mHwDevice == NULL) {
74 return mHwDevice->get_properties(mHwDevice, properties)
    [all...]
SoundTriggerHalLegacy.h 80 struct sound_trigger_hw_device* mHwDevice;
  /hardware/interfaces/broadcastradio/1.0/default/
BroadcastRadio.cpp 34 : mStatus(Result::NOT_INITIALIZED), mClassId(classId), mHwDevice(NULL)
40 if (mHwDevice != NULL) {
41 radio_hw_device_close(mHwDevice);
51 mHwDevice = NULL;
69 rc = radio_hw_device_open(mod, &mHwDevice);
73 mHwDevice = NULL;
76 if (mHwDevice->common.version != RADIO_DEVICE_API_VERSION_CURRENT) {
77 ALOGE("wrong radio hw device version %04x", mHwDevice->common.version);
78 radio_hw_device_close(mHwDevice);
79 mHwDevice = NULL
    [all...]
BroadcastRadio.h 62 struct radio_hw_device *mHwDevice;
  /hardware/interfaces/soundtrigger/2.0/default/
SoundTriggerHalImpl.cpp 69 ALOGV("getProperties() mHwDevice %p", mHwDevice);
74 if (mHwDevice == NULL) {
79 ret = mHwDevice->get_properties(mHwDevice, &halProperties);
98 if (mHwDevice == NULL) {
110 ret = mHwDevice->load_sound_model(mHwDevice, halSoundModel, soundModelCallback, client.get(),
152 if (mHwDevice == NULL) {
166 ret = mHwDevice->unload_sound_model(mHwDevice, client->getHalHandle())
    [all...]
SoundTriggerHalImpl.h 170 struct sound_trigger_hw_device* mHwDevice;
  /frameworks/av/services/audioflinger/
AudioHwDevice.h 46 , mHwDevice(hwDevice)
60 sp<DeviceHalInterface> hwDevice() const { return mHwDevice; }
82 sp<DeviceHalInterface> mHwDevice;
AudioHwDevice.cpp 98 return mHwDevice->supportsAudioPatches(&result) == OK ? result : false;

Completed in 127 milliseconds