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

1 2

  /frameworks/base/media/java/android/media/
AudioPatch.java 21 * An AudioPatch describes a connection between audio sources and audio sinks.
36 AudioPatch(AudioHandle patchHandle, AudioPortConfig[] sources, AudioPortConfig[] sinks) {
39 mSinks = sinks;
50 * Retreive the list of sinks of this audio patch.
52 public AudioPortConfig[] sinks() { method in class:AudioPatch
AudioManager.java     [all...]
AudioSystem.java 637 AudioPortConfig[] sources, AudioPortConfig[] sinks);
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
HashTestUtils.java 92 @Override void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) {
94 for (PrimitiveSink sink : sinks) {
100 @Override void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) {
102 for (PrimitiveSink sink : sinks) {
108 @Override void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) {
110 for (PrimitiveSink sink : sinks) {
116 @Override void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) {
118 for (PrimitiveSink sink : sinks) {
124 @Override void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) {
126 for (PrimitiveSink sink : sinks) {
    [all...]
AbstractStreamingHasherTest.java 138 * sinks process it; all should produce the same answer, the only difference should be the
145 List<Sink> sinks = Lists.newArrayList(); local
148 // yes, that's a lot of sinks!
149 sinks.add(new Sink(chunkSize, bufferSize));
160 Iterables.concat(sinks, Collections.singleton(controlSink));
170 for (Sink sink : sinks) {
175 for (Sink sink : sinks) {
  /frameworks/base/location/lib/java/com/android/location/provider/
FusedLocationHardware.java 313 HashMap<FusedLocationHardwareSink, DispatcherHandler> sinks; local
315 sinks = mSinkList;
318 for(Map.Entry<FusedLocationHardwareSink, DispatcherHandler> entry : sinks.entrySet()) {
328 HashMap<FusedLocationHardwareSink, DispatcherHandler> sinks; local
330 sinks = mSinkList;
333 for(Map.Entry<FusedLocationHardwareSink, DispatcherHandler> entry : sinks.entrySet()) {
343 HashMap<FusedLocationHardwareSink, DispatcherHandler> sinks; local
345 sinks = mSinkList;
348 for(Map.Entry<FusedLocationHardwareSink, DispatcherHandler> entry : sinks.entrySet()) {
358 HashMap<FusedLocationHardwareSink, DispatcherHandler> sinks; local
    [all...]
ActivityRecognitionProvider.java 82 // and in the service) of all sinks while failing to disable all events
107 Collection<Sink> sinks; local
113 sinks = new ArrayList<Sink>(mSinkSet);
129 for (Sink sink : sinks) {
  /frameworks/av/services/audioflinger/
PatchPanel.cpp 191 if ((patch->sinks[i].type == AUDIO_PORT_TYPE_MIX ||
192 patch->sinks[i].ext.mix.hw_module != srcModule) &&
198 if (patch->sinks[i].type != patch->sinks[0].type) {
210 if ((patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) &&
211 ((patch->sinks[0].ext.device.hw_module != srcModule) ||
216 patch->sinks[0].ext.device.hw_module !=
233 audio_devices_t device = patch->sinks[0].ext.device.type;
234 String8 address = String8(patch->sinks[0].ext.device.address);
237 patch->sinks[0].ext.device.hw_module
    [all...]
Threads.cpp     [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
A2dpProfile.java 116 List<BluetoothDevice> sinks = getConnectedDevices();
117 if (sinks != null) {
118 for (BluetoothDevice sink : sinks) {
163 List<BluetoothDevice> sinks = mService.getConnectedDevices();
164 if (!sinks.isEmpty()) {
165 if (mService.isA2dpPlaying(sinks.get(0))) {
PanProfile.java 87 List<BluetoothDevice> sinks = mService.getConnectedDevices();
88 if (sinks != null) {
89 for (BluetoothDevice sink : sinks) {
HeadsetProfile.java 115 List<BluetoothDevice> sinks = mService.getConnectedDevices();
116 if (sinks != null) {
117 for (BluetoothDevice sink : sinks) {
SapProfile.java 114 List<BluetoothDevice> sinks = mService.getConnectedDevices();
115 if (sinks != null) {
116 for (BluetoothDevice sink : sinks) {
  /external/ceres-solver/internal/ceres/
graph.h 76 const HashSet<Vertex>& sinks = edges_[vertex]; local
77 for (typename HashSet<Vertex>::const_iterator it = sinks.begin();
78 it != sinks.end(); ++it) {
  /frameworks/av/include/media/
AudioIoDescriptor.h 50 return mPatch.sinks[0].id;
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioPatch.cpp 66 snprintf(buffer, SIZE, "%*s- %d sinks:\n", spaces, "", mPatch.num_sinks);
69 if (mPatch.sinks[i].type == AUDIO_PORT_TYPE_DEVICE) {
71 mPatch.sinks[i].id, ConfigParsingUtils::enumToString(sDeviceTypeToEnumTable,
73 mPatch.sinks[i].ext.device.type));
76 mPatch.sinks[i].id, mPatch.sinks[i].ext.mix.handle);
98 patch->mPatch.sources[0].id, patch->mPatch.sinks[0].id);
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioHardwareInterface.h 289 const struct audio_port_config *sinks,
  /frameworks/av/services/audiopolicy/managerdefault/
AudioPolicyManager.cpp 345 rxSinkDeviceDesc->toAudioPortConfig(&patch.sinks[0]);
387 txSinkDeviceDesc->toAudioPortConfig(&patch.sinks[0]);
    [all...]
  /hardware/libhardware/include/hardware/
audio.h 632 const struct audio_port_config *sinks,
  /packages/apps/FMRadio/src/com/android/fmradio/
FmService.java 1683 AudioPortConfig[] sinks = patch.sinks(); local
1710 AudioPortConfig[] sinks = patch.sinks(); local
    [all...]
  /build/tools/releasetools/
blockimgdiff.py 773 # Put all sinks at the end of the sequence.
775 sinks = [u for u in G if not u.outgoing]
776 if not sinks:
778 for u in sinks:
  /frameworks/base/services/core/java/com/android/server/tv/
TvInputHardwareManager.java 692 private void findAudioSinkFromAudioPolicy(List<AudioDevicePort> sinks) {
693 sinks.clear();
701 sinks.add(port);
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-site-plugin/3.3/
maven-site-plugin-3.3.jar 
  /frameworks/base/core/jni/
android_media_AudioSystem.cpp     [all...]
  /system/media/audio/include/system/
audio.h 38 /* AudioFlinger and AudioPolicy services use I/O handles to identify audio sources and sinks */
1048 struct audio_port_config sinks[AUDIO_PATCH_PORTS_MAX]; member in struct:audio_patch
    [all...]

Completed in 800 milliseconds

1 2