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

1 2

  /external/guava/guava-tests/test/com/google/common/hash/
HashTestUtils.java 86 @Override void performAction(Random random, Iterable<? extends Sink> sinks) {
88 for (Sink sink : sinks) {
94 @Override void performAction(Random random, Iterable<? extends Sink> sinks) {
96 for (Sink sink : sinks) {
102 @Override void performAction(Random random, Iterable<? extends Sink> sinks) {
104 for (Sink sink : sinks) {
110 @Override void performAction(Random random, Iterable<? extends Sink> sinks) {
112 for (Sink sink : sinks) {
118 @Override void performAction(Random random, Iterable<? extends Sink> sinks) {
120 for (Sink sink : sinks) {
    [all...]
AbstractStreamingHasherTest.java 112 * sinks process it; all should produce the same answer, the only difference should be the
119 List<Sink> sinks = Lists.newArrayList(); local
122 // yes, that's a lot of sinks!
123 sinks.add(new Sink(chunkSize, bufferSize));
134 sinks, Collections.singleton(controlSink));
138 for (Sink sink : sinks) {
143 for (Sink sink : sinks) {
  /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 561 AudioPortConfig[] sources, AudioPortConfig[] sinks);
  /external/chromium_org/content/renderer/media/
webrtc_local_audio_track.cc 56 SinkList::ItemList sinks; local
61 sinks = sinks_.Items();
72 // Feed the data to the sinks.
78 for (SinkList::ItemList::const_iterator it = sinks.begin();
79 it != sinks.end();
110 // Remember to notify all sinks of the new format.
203 SinkList::ItemList sinks; local
206 sinks = sinks_.Items();
208 for (SinkList::ItemList::const_iterator it = sinks.begin();
209 it != sinks.end()
235 SinkList::ItemList sinks; local
    [all...]
  /external/chromium_org/courgette/
encoded_program_unittest.cc 30 courgette::SinkStreamSet sinks; local
31 EXPECT_TRUE(program->WriteTo(&sinks));
35 bool can_collect = sinks.CopyTo(&sink);
adjustment_method_unittest.cc 68 courgette::SinkStreamSet sinks; local
69 const courgette::Status write_status = WriteEncodedProgram(encoded, &sinks);
75 bool can_collect = sinks.CopyTo(&sink);
encode_decode_unittest.cc 35 courgette::SinkStreamSet sinks; local
36 const courgette::Status write_status = WriteEncodedProgram(encoded, &sinks);
42 bool can_collect = sinks.CopyTo(&sink);
encoded_program_fuzz_unittest.cc 54 courgette::SinkStreamSet sinks; local
55 const courgette::Status write_status = WriteEncodedProgram(encoded, &sinks);
61 bool can_collect = sinks.CopyTo(&sink);
courgette_tool.cc 93 courgette::SinkStreamSet sinks; local
96 courgette::WriteEncodedProgram(encoded, &sinks);
103 if (!sinks.CopyTo(&sink))
188 courgette::SinkStreamSet sinks; local
191 courgette::WriteEncodedProgram(encoded, &sinks);
198 if (!sinks.CopyTo(&sink))
  /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) {
204 if (patch->sinks[i].ext.mix.hw_module == srcModule &&
206 (patch->sinks[i].type != AUDIO_PORT_TYPE_MIX)) {
208 patch->sinks[i].type);
214 if (patch->sinks[0].ext.device.hw_module != srcModule) {
216 if (patch->sinks[0].type != AUDIO_PORT_TYPE_DEVICE) {
225 patch->sinks[0].ext.device.hw_module !
    [all...]
  /packages/apps/Settings/src/com/android/settings/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) {
  /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/base/location/lib/java/com/android/location/provider/
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) {
FusedLocationHardware.java 252 HashMap<FusedLocationHardwareSink, DispatcherHandler> sinks; local
254 sinks = mSinkList;
257 for(Map.Entry<FusedLocationHardwareSink, DispatcherHandler> entry : sinks.entrySet()) {
267 HashMap<FusedLocationHardwareSink, DispatcherHandler> sinks; local
269 sinks = mSinkList;
272 for(Map.Entry<FusedLocationHardwareSink, DispatcherHandler> entry : sinks.entrySet()) {
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioHardwareInterface.h 289 const struct audio_port_config *sinks,
  /hardware/libhardware/include/hardware/
audio.h 632 const struct audio_port_config *sinks,
  /frameworks/av/services/audiopolicy/
AudioPolicyManager.cpp 532 rxSinkDeviceDesc->toAudioPortConfig(&patch.sinks[0]);
574 txSinkDeviceDesc->toAudioPortConfig(&patch.sinks[0]);
    [all...]
  /packages/apps/FMRadio/src/com/android/fmradio/
FmService.java 1667 AudioPortConfig[] sinks = patch.sinks(); local
1694 AudioPortConfig[] sinks = patch.sinks(); local
    [all...]
  /build/tools/releasetools/
blockimgdiff.py 686 # Put all sinks at the end of the sequence.
688 sinks = [u for u in G if not u.outgoing]
689 if not sinks: break
690 for u in sinks:
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-site-plugin/3.3/
maven-site-plugin-3.3.jar 
  /frameworks/base/services/core/java/com/android/server/tv/
TvInputHardwareManager.java 700 private void findAudioSinkFromAudioPolicy(List<AudioDevicePort> sinks) {
701 sinks.clear();
710 sinks.add(devicePort);
    [all...]

Completed in 1131 milliseconds

1 2