Searched defs:stream (Results 101 - 109 of 109) sorted by relevance

12345

/frameworks/base/media/java/android/media/
H A DMediaRouter.java237 * <p>A device that supports live audio routing will allow the media audio stream
242 * played on the media stream will be routed to the selected destination.</p>
1101 * @return the stream over which the playback associated with this route is performed
1121 Log.e(TAG, "Error getting local stream volume", e);
1138 Log.e(TAG, "Error setting local stream volume", e);
1158 Log.e(TAG, "Error setting local stream volume", e);
1177 Log.e(TAG, "Error getting local stream volume", e);
1455 * Defines over what stream type the media is presented.
1456 * @param stream
1458 public void setPlaybackStream(int stream) { argument
[all...]
H A DAudioService.java233 /* mStreamVolumeAlias[] indicates for each stream if it uses the volume settings
234 * of another stream: This avoids multiplying the volume settings for hidden
235 * stream types that follow other stream behavior for volume settings
267 // stream names used by dumpStreamStates()
402 // mVolumeControlStream is set by VolumePanel to temporarily force the stream type which volume
425 * A fake stream type to match the notion of remote media playback
578 // apply stream volume
691 // devices (tablets) include media stream in silent mode whereas phones don't.
736 // Each stream wil
2558 getDeviceForStream(int stream) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4lib_int.h86 BitstreamEncVideo *stream; /* library bitstream buffer (input buffer) */ member in struct:tagVol
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h127 virtual status_t setStreamVolume(audio_stream_type_t stream, float value,
129 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
131 virtual float streamVolume(audio_stream_type_t stream,
133 virtual bool streamMute(audio_stream_type_t stream) const;
173 virtual status_t setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output);
583 virtual audio_stream_t* stream() const = 0;
894 volatile float mCachedVolume; // combined master volume and stream type volume;
1070 void setStreamVolume(audio_stream_type_t stream, float value);
1071 void setStreamMute(audio_stream_type_t stream, bool muted);
1073 float streamVolume(audio_stream_type_t stream) cons
1969 audio_stream_out_t* const stream; member in struct:android::AudioFlinger::AudioStreamOut
1979 audio_stream_in_t* const stream; member in struct:android::AudioFlinger::AudioStreamIn
[all...]
H A DAudioFlinger.cpp464 ALOGE("createTrack() invalid stream type %d", streamType);
770 status_t AudioFlinger::setStreamVolume(audio_stream_type_t stream, float value, argument
778 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
779 ALOGE("setStreamVolume() invalid stream %d", stream);
792 mStreamTypes[stream].volume = value;
796 mPlaybackThreads.valueAt(i)->setStreamVolume(stream, value);
799 thread->setStreamVolume(stream, value);
805 status_t AudioFlinger::setStreamMute(audio_stream_type_t stream, bool muted) argument
812 if (uint32_t(stream) >
826 streamVolume(audio_stream_type_t stream, audio_io_handle_t output) const argument
1926 setStreamVolume(audio_stream_type_t stream, float value) argument
1932 setStreamMute(audio_stream_type_t stream, bool muted) argument
2201 audio_stream_t* AudioFlinger::PlaybackThread::stream() const function in class:android::AudioFlinger::PlaybackThread
6825 audio_stream_t* AudioFlinger::RecordThread::stream() const function in class:android::AudioFlinger::RecordThread
7247 setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output) argument
8203 audio_stream_t *stream = thread->stream(); local
8545 audio_stream_t *stream = thread->stream(); local
8581 audio_stream_t *stream = thread->stream(); local
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java3241 void handleVolumeKey(int stream, int keycode) { argument
3252 audioService.adjustStreamVolume(stream,
/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java2254 private void saveViewState(OutputStream stream, argument
2263 result = ViewStateSerializer.serializeViewState(stream, draw);
H A DWebViewClassic.java2392 * Saves the view data to the output stream. The output is highly
2395 * @param stream The {@link OutputStream} to save to
2398 public void saveViewState(OutputStream stream, ValueCallback<Boolean> callback) { argument
2404 new WebViewCore.SaveViewStateRequest(stream, callback));
2408 * Loads the view data from the input stream. See
2410 * @param stream The {@link InputStream} to load from
2412 public void loadViewState(InputStream stream) { argument
2440 }.execute(stream);
8645 ByteArrayOutputStream stream = new ByteArrayOutputStream();
8646 ViewStateSerializer.dumpLayerHierarchy(layer, stream, leve
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java4906 FileOutputStream stream = new FileOutputStream(mFile.chooseForWrite());
4907 stream.write(next.marshall());
4908 stream.flush();
4909 FileUtils.sync(stream);
4910 stream.close();
4921 static byte[] readFully(FileInputStream stream) throws java.io.IOException { argument
4923 int avail = stream.available();
4926 int amt = stream.read(data, pos, data.length-pos);
4935 avail = stream.available();
4957 FileInputStream stream
[all...]

Completed in 5811 milliseconds

12345