HomeSort by relevance Sort by last modified time
    Searched defs:streams (Results 1 - 17 of 17) sorted by null

  /external/sonivox/arm-fm-22k/lib_src/
eas_data.h 113 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
eas_miditypes.h 101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag
108 EAS_U16 numStreams; /* actual number of streams */
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_data.h 113 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
eas_miditypes.h 101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag
108 EAS_U16 numStreams; /* actual number of streams */
  /external/sonivox/arm-wt-22k/lib_src/
eas_data.h 115 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
eas_miditypes.h 101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag
108 EAS_U16 numStreams; /* actual number of streams */
  /external/webkit/WebKit/mac/Plugins/
WebNetscapePluginView.h 100 HashSet<RefPtr<WebNetscapePluginStream> > streams; variable
  /device/samsung/crespo/alsa-lib/src/rawmidi/
rawmidi_virt.c 58 int streams, int mode, snd_config_t *lconf,
403 int streams, seq_mode; local
429 streams = 0;
431 streams |= SND_SEQ_OPEN_INPUT;
433 streams |= SND_SEQ_OPEN_OUTPUT;
434 if (! streams)
443 err = _snd_seq_open_lconf(&seq_handle, slave_str, streams, seq_mode,
  /device/samsung/crespo/alsa-lib/src/seq/
seq_local.h 76 int streams; member in struct:_snd_seq
95 int snd_seq_hw_open(snd_seq_t **handle, const char *name, int streams, int mode);
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 663 // Now split it up into multiple streams of varying sizes.
676 ZeroCopyInputStream* streams[] = local
680 ConcatenatingInputStream input(streams, GOOGLE_ARRAYSIZE(streams));
  /external/webkit/WebCore/plugins/
PluginStream.cpp 49 static StreamMap& streams() function in namespace:WebCore
79 streams().add(&m_stream, m_instance);
89 streams().remove(&m_stream);
216 return streams().get(stream);
PluginView.cpp 345 HashSet<RefPtr<PluginStream> > streams = m_streams; local
346 HashSet<RefPtr<PluginStream> >::iterator end = streams.end();
347 for (HashSet<RefPtr<PluginStream> >::iterator it = streams.begin(); it != end; ++it) {
    [all...]
  /libcore/luni/src/test/java/tests/api/java/io/
SequenceInputStreamTest.java 77 InputStream streams[] = new InputStream[2]; field in class:SequenceInputStreamTest.StreamEnumerator
82 streams[0] = new ByteArrayInputStream(s1.getBytes());
83 streams[1] = new ByteArrayInputStream(s2.getBytes());
87 return count < streams.length;
91 return streams[count++];
147 // assertEquals("And not on the underlying streams either!", 0, simple1.available());
148 // assertTrue("And not on the underlying streams either!", simple1.available() <= 0);
149 // assertTrue("And not on the underlying streams either!", simple2.available() <= 0);
  /cts/tests/tests/media/src/android/media/cts/
AudioManagerTest.java 529 int[] streams = { AudioManager.STREAM_ALARM, local
539 for (int i = 0; i < streams.length; i++) {
540 int maxVolume = mAudioManager.getStreamMaxVolume(streams[i]);
542 mAudioManager.setStreamVolume(streams[i], 1, FLAG_SHOW_UI);
543 assertEquals(1, mAudioManager.getStreamVolume(streams[i]));
545 mAudioManager.setStreamVolume(streams[i], maxVolume, FLAG_SHOW_UI);
546 mAudioManager.adjustStreamVolume(streams[i], ADJUST_RAISE, FLAG_SHOW_UI);
547 assertEquals(maxVolume, mAudioManager.getStreamVolume(streams[i]));
549 mAudioManager.adjustSuggestedStreamVolume(ADJUST_LOWER, streams[i], FLAG_SHOW_UI);
550 assertEquals(maxVolume - 1, mAudioManager.getStreamVolume(streams[i]))
    [all...]
  /bionic/libc/netbsd/isc/
eventlib_p.h 205 /* Streams. */
206 evStream *streams; member in struct:__anon497
  /external/bluetooth/bluez/audio/
avdtp.c 402 GSList *streams; /* Elements of type struct avdtp_stream * */ member in struct:avdtp
722 for (l = session->streams; l != NULL; l = g_slist_next(l)) {
1018 session->streams = g_slist_remove(session->streams, stream);
1026 if (session->ref == 1 && !session->streams)
1081 g_slist_foreach(session->streams, (GFunc) release_stream, session);
1082 session->streams = NULL;
1434 session->streams = g_slist_append(session->streams, stream);
    [all...]
  /frameworks/base/media/java/android/media/
AudioService.java 154 /** @hide Maximum volume index values for audio streams */
217 // Streams currently muted by ringer mode
290 // state on streams affected by ringer mode.
343 VolumeStreamState[] streams = mStreamStates = new VolumeStreamState[numStreamTypes]; local
346 streams[i] = new VolumeStreamState(System.VOLUME_SETTINGS[STREAM_VOLUME_ALIAS[i]], i);
349 // Correct stream index values for streams with aliases
352 int index = rescaleIndex(streams[i].mIndex, STREAM_VOLUME_ALIAS[i], i);
353 streams[i].mIndex = streams[i].getValidIndex(index);
355 index = rescaleIndex(streams[i].mLastAudibleIndex, STREAM_VOLUME_ALIAS[i], i)
    [all...]

Completed in 236 milliseconds