HomeSort by relevance Sort by last modified time
    Searched refs:createAudioPatch (Results 1 - 25 of 45) sorted by null

1 2

  /frameworks/av/services/audiopolicy/tests/
audiopolicymanager_tests.cpp 77 status_t createAudioPatch(const struct audio_patch* /*patch*/,
139 ASSERT_EQ(BAD_VALUE, mManager->createAudioPatch(nullptr, &handle, 0));
140 ASSERT_EQ(BAD_VALUE, mManager->createAudioPatch(&patch, nullptr, 0));
141 ASSERT_EQ(BAD_VALUE, mManager->createAudioPatch(&patch, &handle, 0));
144 ASSERT_EQ(BAD_VALUE, mManager->createAudioPatch(&patch, &handle, 0));
147 ASSERT_EQ(BAD_VALUE, mManager->createAudioPatch(&patch, &handle, 0));
150 ASSERT_EQ(INVALID_OPERATION, mManager->createAudioPatch(&patch, &handle, 0));
156 ASSERT_EQ(INVALID_OPERATION, mManager->createAudioPatch(&patch, &handle, 0));
162 ASSERT_EQ(INVALID_OPERATION, mManager->createAudioPatch(&patch, &handle, 0));
191 ASSERT_EQ(NO_ERROR, mManager->createAudioPatch(&patch, &handle, uid))
    [all...]
AudioPolicyTestClient.h 70 status_t createAudioPatch(const struct audio_patch* /*patch*/,
  /packages/services/Car/car-lib/src/android/car/media/
ICarAudio.aidl 37 CarAudioPatchHandle createAudioPatch(in String sourceAddress, int usage, int gainInMillibels);
CarAudioManager.java 206 * @see #createAudioPatch(String, int, int)
240 public CarAudioPatchHandle createAudioPatch(String sourceAddress,
244 return mService.createAudioPatch(sourceAddress, usage, gainInMillibels);
246 Log.e(CarLibLog.TAG_CAR, "createAudioPatch failed", e);
257 * @param patch CarAudioPatchHandle returned from createAudioPatch().
260 * @see #createAudioPatch(String, int, int)
  /frameworks/av/services/audioflinger/
PatchPanel.h 38 status_t createAudioPatch(const struct audio_patch *patch,
69 // playback thread created by createAudioPatch() and released by clearPatchConnections() if
74 // record thread created by createAudioPatch() and released by clearPatchConnections()
PatchPanel.cpp 70 status_t AudioFlinger::createAudioPatch(const struct audio_patch *patch,
75 return mPatchPanel->createAudioPatch(patch, handle);
139 status_t AudioFlinger::PatchPanel::createAudioPatch(const struct audio_patch *patch,
148 ALOGV("createAudioPatch() num_sources %d num_sinks %d handle %d",
168 ALOGV("createAudioPatch() removing patch handle %d", *handle);
225 ALOGW("createAudioPatch() bad src hw module %d", srcModule);
240 ALOGW("createAudioPatch() different sink types in same patch not supported");
259 ALOGW("createAudioPatch() invalid source combination");
268 ALOGW("createAudioPatch() cannot get playback thread");
339 ALOGW("createAudioPatch() bad capture I/O handle %d"
    [all...]
  /hardware/interfaces/audio/2.0/
IDevice.hal 165 createAudioPatch(vec<AudioPortConfig> sources, vec<AudioPortConfig> sinks)
  /frameworks/av/media/libaudiohal/2.0/
DeviceHalHidl.h 90 // Returns whether createAudioPatch and releaseAudioPatch operations are supported.
94 virtual status_t createAudioPatch(
DeviceHalLocal.h 83 // Returns whether createAudioPatch and releaseAudioPatch operations are supported.
87 virtual status_t createAudioPatch(
DeviceHalHidl.cpp 299 status_t DeviceHalHidl::createAudioPatch(
310 Return<void> ret = mDevice->createAudioPatch(
318 return processReturn("createAudioPatch", ret, retval);
DeviceHalLocal.cpp 154 status_t DeviceHalLocal::createAudioPatch(
  /frameworks/av/media/libaudiohal/4.0/
DeviceHalHidl.h 91 // Returns whether createAudioPatch and releaseAudioPatch operations are supported.
95 virtual status_t createAudioPatch(
DeviceHalLocal.h 84 // Returns whether createAudioPatch and releaseAudioPatch operations are supported.
88 virtual status_t createAudioPatch(
DeviceHalHidl.cpp 312 status_t DeviceHalHidl::createAudioPatch(
323 Return<void> ret = mDevice->createAudioPatch(
331 return processReturn("createAudioPatch", ret, retval);
DeviceHalLocal.cpp 155 status_t DeviceHalLocal::createAudioPatch(
  /frameworks/av/media/libaudiohal/include/media/audiohal/
DeviceHalInterface.h 89 // Returns whether createAudioPatch and releaseAudioPatch operations are supported.
93 virtual status_t createAudioPatch(
  /packages/apps/Car/Radio/src/com/android/car/radio/platform/
RadioTunerExt.java 111 mAudioPatch = mCarAudioManager.createAudioPatch(HARDCODED_TUNER_ADDRESS,
  /frameworks/av/services/audiopolicy/
AudioPolicyInterface.h 216 virtual status_t createAudioPatch(const struct audio_patch *patch,
341 virtual status_t createAudioPatch(const struct audio_patch *patch,
  /hardware/interfaces/audio/4.0/
IDevice.hal 167 createAudioPatch(vec<AudioPortConfig> sources, vec<AudioPortConfig> sinks)
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioHardwareInterface.h 285 virtual int createAudioPatch(unsigned int num_sources,
  /hardware/interfaces/audio/core/all-versions/default/include/core/all-versions/default/
PrimaryDevice.impl.h 101 Return<void> PrimaryDevice::createAudioPatch(const hidl_vec<AudioPortConfig>& sources,
104 return mDevice->createAudioPatch(sources, sinks, _hidl_cb);
Device.h 98 Return<void> createAudioPatch(const hidl_vec<AudioPortConfig>& sources,
PrimaryDevice.h 81 Return<void> createAudioPatch(const hidl_vec<AudioPortConfig>& sources,
  /frameworks/av/media/libaudioclient/include/media/
IAudioPolicyService.h 133 virtual status_t createAudioPatch(const struct audio_patch *patch,
  /frameworks/av/services/audiopolicy/service/
AudioPolicyClientImpl.cpp 186 status_t AudioPolicyService::AudioPolicyClient::createAudioPatch(const struct audio_patch *patch,

Completed in 615 milliseconds

1 2