Searched defs:stream (Results 151 - 173 of 173) sorted by relevance

1234567

/frameworks/native/libs/gui/
H A DSurface.cpp99 void Surface::setSidebandStream(const sp<NativeHandle>& stream) { argument
100 mGraphicBufferProducer->setSidebandStream(stream);
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp1537 EGLBoolean eglDestroyStreamKHR(EGLDisplay dpy, EGLStreamKHR stream) argument
1548 dp->disp.dpy, stream);
1553 EGLBoolean eglStreamAttribKHR(EGLDisplay dpy, EGLStreamKHR stream, argument
1565 dp->disp.dpy, stream, attribute, value);
1570 EGLBoolean eglQueryStreamKHR(EGLDisplay dpy, EGLStreamKHR stream, argument
1582 dp->disp.dpy, stream, attribute, value);
1587 EGLBoolean eglQueryStreamu64KHR(EGLDisplay dpy, EGLStreamKHR stream, argument
1599 dp->disp.dpy, stream, attribute, value);
1604 EGLBoolean eglQueryStreamTimeKHR(EGLDisplay dpy, EGLStreamKHR stream, argument
1616 dp->disp.dpy, stream, attribut
1621 eglCreateStreamProducerSurfaceKHR(EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, const EGLint *attrib_list) argument
1642 eglStreamConsumerGLTextureExternalKHR(EGLDisplay dpy, EGLStreamKHR stream) argument
1659 eglStreamConsumerAcquireKHR(EGLDisplay dpy, EGLStreamKHR stream) argument
1676 eglStreamConsumerReleaseKHR(EGLDisplay dpy, EGLStreamKHR stream) argument
1693 eglGetStreamFileDescriptorKHR( EGLDisplay dpy, EGLStreamKHR stream) argument
[all...]
/frameworks/rs/
H A DrsAllocation.cpp427 void Allocation::packVec3Allocation(Context *rsc, OStream *stream) const {
436 stream->addByteArray(dst, getPackedSize());
442 void Allocation::serialize(Context *rsc, OStream *stream) const {
444 stream->addU32((uint32_t)getClassId());
445 stream->addString(getName());
449 mHal.state.type->serialize(rsc, stream);
455 stream->addU32(packedSize);
458 stream->addByteArray(rsc->mHal.funcs.allocation.lock1D(rsc, this), dataSize);
462 packVec3Allocation(rsc, stream);
466 Allocation *Allocation::createFromStream(Context *rsc, IStream *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.cpp606 ALOGE("createTrack() invalid stream type %d", streamType);
973 status_t AudioFlinger::checkStreamType(audio_stream_type_t stream) const
975 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
976 ALOGW("setStreamVolume() invalid stream %d", stream);
980 if (uint32_t(stream) >= AUDIO_STREAM_PUBLIC_CNT && caller != getpid_cached) {
981 ALOGW("setStreamVolume() pid %d cannot use internal stream type %d", caller, stream);
988 status_t AudioFlinger::setStreamVolume(audio_stream_type_t stream, float value, argument
996 status_t status = checkStreamType(stream);
1024 setStreamMute(audio_stream_type_t stream, bool muted) argument
1050 streamVolume(audio_stream_type_t stream, audio_io_handle_t output) const argument
2304 invalidateStream(audio_stream_type_t stream) argument
[all...]
H A DThreads.cpp1619 for (audio_stream_type_t stream = AUDIO_STREAM_MIN; stream < AUDIO_STREAM_CNT;
1620 stream = (audio_stream_type_t) (stream + 1)) {
1621 mStreamTypes[stream].volume = mAudioFlinger->streamVolume_l(stream);
1622 mStreamTypes[stream].mute = mAudioFlinger->streamMute_l(stream);
1743 mOutput->stream->common.set_parameters(&mOutput->stream
1978 setStreamVolume(audio_stream_type_t stream, float value) argument
1985 setStreamMute(audio_stream_type_t stream, bool muted) argument
2456 audio_stream_t* AudioFlinger::PlaybackThread::stream() const function in class:android::AudioFlinger::PlaybackThread
7246 audio_stream_t* AudioFlinger::RecordThread::stream() const function in class:android::AudioFlinger::RecordThread
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp563 lines.appendFormat(" No input stream.\n");
802 // Stream configuration successfully configure to empty stream configuration.
850 ALOGV("Camera %d: Creating new input stream %d: %d x %d, format %d",
883 ALOGE("%s: Cannot create more than 1 input stream", __FUNCTION__);
900 ALOGE("%s: Can't reconfigure device for new stream %d: %s (%d)",
907 ALOGV("Camera %d: Created input stream", mId);
921 ALOGV("Camera %d: Creating ZSL stream %d: %d x %d, depth %d",
954 ALOGE("%s: Cannot create more than 1 input stream", __FUNCTION__);
964 ALOGE("%s: Can't add new stream to set: %s (%d)",
980 ALOGE("%s: Can't reconfigure device for new stream
1613 sp<Camera3StreamInterface> stream; local
1649 sp<Camera3StreamInterface> stream; local
1673 sp<Camera3StreamInterface> stream; local
1781 sp<Camera3OutputStreamInterface> stream = local
2130 Camera3Stream *stream = Camera3Stream::cast(outputBuffers[i].stream); local
2468 Camera3Stream *stream = local
2540 Camera3Stream *stream = local
3267 isStreamPending( sp<Camera3StreamInterface>& stream) argument
3745 prepare(int maxCount, sp<Camera3StreamInterface>& stream) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp552 virtual status_t writeToStream(Output& stream, uint32_t count);
577 status_t InputStripSource::writeToStream(Output& stream, uint32_t count) { argument
600 "Error encountered while skip bytes in input stream.");
644 ALOGV("%s: Using stream per-row write for strip.", __FUNCTION__);
646 if (stream.write(rowBytes, 0, mBytesPerSample * mSamplesPerPixel * mWidth) != OK ||
654 ALOGV("%s: Using stream per-pixel write for strip.", __FUNCTION__);
686 virtual status_t writeToStream(Output& stream, uint32_t count);
711 status_t DirectStripSource::writeToStream(Output& stream, uint32_t count) { argument
726 if (stream.write(mPixelBytes, mOffset, fullSize) != OK || mEnv->ExceptionCheck()) {
736 if (stream
[all...]
H A Dandroid_media_AudioSystem.cpp297 android_media_AudioSystem_isStreamActive(JNIEnv *env, jobject thiz, jint stream, jint inPastMs) argument
300 AudioSystem::isStreamActive((audio_stream_type_t) stream, &state, inPastMs);
305 android_media_AudioSystem_isStreamActiveRemotely(JNIEnv *env, jobject thiz, jint stream, argument
309 AudioSystem::isStreamActiveRemotely((audio_stream_type_t) stream, &state, inPastMs);
478 android_media_AudioSystem_initStreamVolume(JNIEnv *env, jobject thiz, jint stream, jint indexMin, jint indexMax) argument
480 return (jint) check_AudioSystem_Command(AudioSystem::initStreamVolume(static_cast <audio_stream_type_t>(stream),
488 jint stream,
493 AudioSystem::setStreamVolumeIndex(static_cast <audio_stream_type_t>(stream),
501 jint stream,
505 if (AudioSystem::getStreamVolumeIndex(static_cast <audio_stream_type_t>(stream),
486 android_media_AudioSystem_setStreamVolumeIndex(JNIEnv *env, jobject thiz, jint stream, jint index, jint device) argument
499 android_media_AudioSystem_getStreamVolumeIndex(JNIEnv *env, jobject thiz, jint stream, jint device) argument
563 android_media_AudioSystem_getDevicesForStream(JNIEnv *env, jobject thiz, jint stream) argument
581 android_media_AudioSystem_getOutputLatency(JNIEnv *env, jobject clazz, jint stream) argument
[all...]
/frameworks/base/media/java/android/media/
H A DAudioSystem.java42 /* The default audio stream */
44 /* The audio stream for phone calls */
46 /* The audio stream for system sounds */
48 /* The audio stream for the phone ring and message alerts */
50 /* The audio stream for music playback */
52 /* The audio stream for alarms */
54 /* The audio stream for notifications */
56 /* @hide The audio stream for phone calls when connected on bluetooth */
58 /* @hide The audio stream for enforced system sounds in certain countries (e.g camera in Japan) */
60 /* @hide The audio stream fo
136 isStreamActive(int stream, int inPastMs) argument
144 isStreamActiveRemotely(int stream, int inPastMs) argument
684 initStreamVolume(int stream, int indexMin, int indexMax) argument
685 setStreamVolumeIndex(int stream, int index, int device) argument
686 getStreamVolumeIndex(int stream, int device) argument
691 getDevicesForStream(int stream) argument
701 getOutputLatency(int stream) argument
777 streamToString(int stream) argument
[all...]
H A DMediaRouter.java599 * <p>A device that supports live audio routing will allow the media audio stream
604 * played on the media stream will be routed to the selected destination.</p>
1809 * @return the stream over which the playback associated with this route is performed
1829 Log.e(TAG, "Error getting local stream volume", e);
1847 Log.e(TAG, "Error setting local stream volume", e);
1866 Log.e(TAG, "Error setting local stream volume", e);
1883 Log.e(TAG, "Error getting local stream volume", e);
2261 * Defines over what stream type the media is presented.
2262 * @param stream
2264 public void setPlaybackStream(int stream) { argument
[all...]
H A DAudioManager.java130 * @hide Broadcast intent when the volume for a particular stream type changes.
131 * Includes the stream, the new volume and previous volumes.
144 * @hide Broadcast intent when the devices for a particular stream type changes.
145 * Includes the stream, the new devices and previous devices.
160 * @hide Broadcast intent when a stream mute state changes.
161 * Includes the stream that changed and the new mute state
205 * @hide The stream type for the volume changed intent.
211 * The stream type alias for the volume changed intent.
212 * For instance the intent may indicate a change of the {@link #STREAM_NOTIFICATION} stream
221 * @hide The volume associated with the stream fo
698 preDispatchKeyEvent(KeyEvent event, int stream) argument
719 handleKeyDown(KeyEvent event, int stream) argument
747 handleKeyUp(KeyEvent event, int stream) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java357 private void readPolicyXml(InputStream stream, boolean forRestore) argument
360 parser.setInput(stream, StandardCharsets.UTF_8.name());
398 final FileOutputStream stream;
400 stream = mPolicyFile.startWrite();
407 writePolicyXml(stream, false /*forBackup*/);
408 mPolicyFile.finishWrite(stream);
411 mPolicyFile.failWrite(stream);
417 private void writePolicyXml(OutputStream stream, boolean forBackup) throws IOException { argument
419 out.setOutput(stream, StandardCharsets.UTF_8.name());
2863 // do not play notifications if stream volum
[all...]
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2On1Adapter.cpp2061 Error HWC2On1Adapter::Layer::setSidebandStream(const native_handle_t* stream) argument
2063 mSidebandStream.setPending(stream);
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaSessionCompat.java287 * Set the stream this session is playing on. This will affect the system's
290 * will begin sending volume changes to the appropriate stream.
294 * @param stream The {@link AudioManager} stream this session is playing on.
296 public void setPlaybackToLocal(int stream) { argument
297 mImpl.setPlaybackToLocal(stream);
303 * current stream volume for this session. If {@link #setPlaybackToLocal}
304 * was previously called that stream will stop receiving volume changes for
1117 void setPlaybackToLocal(int stream); argument
1316 public void setPlaybackToLocal(int stream) { argument
2197 setPlaybackToLocal(int stream) argument
[all...]
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp371 // request to reuse existing output stream if one is already opened to reach the RX device
382 patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
418 // request to reuse existing output stream if one is already opened to reach the TX
425 patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
472 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
473 handleIncallSonification((audio_stream_type_t)stream, false, true);
548 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CN
668 getOutput(audio_stream_type_t stream, uint32_t samplingRate, audio_format_t format, audio_channel_mask_t channelMask, audio_output_flags_t flags, const audio_offload_info_t *offloadInfo) argument
685 getOutputForAttr(const audio_attributes_t *attr, audio_io_handle_t *output, audio_session_t session, audio_stream_type_t *stream, uid_t uid, uint32_t samplingRate, audio_format_t format, audio_channel_mask_t channelMask, audio_output_flags_t flags, audio_port_handle_t selectedDeviceId, const audio_offload_info_t *offloadInfo) argument
767 getOutputForDevice( audio_devices_t device, audio_session_t session __unused, audio_stream_type_t stream, uint32_t samplingRate, audio_format_t format, audio_channel_mask_t channelMask, audio_output_flags_t flags, const audio_offload_info_t *offloadInfo) argument
1075 startOutput(audio_io_handle_t output, audio_stream_type_t stream, audio_session_t session) argument
1135 startSource(sp<AudioOutputDescriptor> outputDesc, audio_stream_type_t stream, audio_devices_t device, const char *address, uint32_t *delayMs) argument
1221 stopOutput(audio_io_handle_t output, audio_stream_type_t stream, audio_session_t session) argument
1261 stopSource(sp<AudioOutputDescriptor> outputDesc, audio_stream_type_t stream, bool forceDeviceUpdate) argument
1811 initStreamVolume(audio_stream_type_t stream, int indexMin, int indexMax) argument
1827 setStreamVolumeIndex(audio_stream_type_t stream, int index, audio_devices_t device) argument
1899 getStreamVolumeIndex(audio_stream_type_t stream, int *index, audio_devices_t device) argument
1994 isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const argument
2006 isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const argument
2957 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); local
3090 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes); local
4358 getStrategyForStream(audio_stream_type_t stream) argument
4362 getDevicesForStream(audio_stream_type_t stream) argument
4414 handleNotificationRoutingForStream(audio_stream_type_t stream) argument
4897 computeVolume(audio_stream_type_t stream, int index, audio_devices_t device) argument
4958 checkAndSetVolume(audio_stream_type_t stream, int index, const sp<AudioOutputDescriptor>& outputDesc, audio_devices_t device, int delayMs, bool force) argument
5043 setStreamMute(audio_stream_type_t stream, bool on, const sp<AudioOutputDescriptor>& outputDesc, int delayMs, audio_devices_t device) argument
5081 handleIncallSonification(audio_stream_type_t stream, bool starting, bool stateChange) argument
[all...]
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java2568 FileInputStream stream = file.openRead();
2569 version = readProfileStateFromFileLocked(stream, profileId, loadedWidgets);
2570 IoUtils.closeQuietly(stream);
2750 FileOutputStream stream;
2752 stream = file.startWrite();
2753 if (writeProfileStateToFileLocked(stream, profileId)) {
2754 file.finishWrite(stream);
2756 file.failWrite(stream);
2793 private boolean writeProfileStateToFileLocked(FileOutputStream stream, int userId) { argument
2798 out.setOutput(stream, StandardCharset
2856 readProfileStateFromFileLocked(FileInputStream stream, int userId, List<LoadedWidgetState> outLoadedWidgets) argument
[all...]
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java162 /** How long to delay after a volume down event before unmuting a stream */
290 /* mStreamVolumeAlias[] indicates for each stream if it uses the volume settings
291 * of another stream: This avoids multiplying the volume settings for hidden
292 * stream types that follow other stream behavior for volume settings
500 // mVolumeControlStream is set by VolumePanel to temporarily force the stream type which volume
540 // case, the new requested volume, stream type and device are stored in mPendingVolumeCommand
819 // Restore stream volumes
903 // apply stream volume
924 // any stream wit
1403 onUnmuteStream(int stream, int flags) argument
1456 getNewRingerMode(int stream, int index, int flags) argument
3720 getDeviceForStream(int stream) argument
3744 getDevicesForStream(int stream) argument
3748 getDevicesForStream(int stream, boolean checkOthers) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java6094 // or movement method. To do this, we will just send a repeated stream
10015 protected void encodeProperties(@NonNull ViewHierarchyEncoder stream) { argument
10016 super.encodeProperties(stream);
10019 stream.addProperty("text:ellipsize", ellipsize == null ? null : ellipsize.name());
10020 stream.addProperty("text:textSize", getTextSize());
10021 stream.addProperty("text:scaledTextSize", getScaledTextSize());
10022 stream.addProperty("text:typefaceStyle", getTypefaceStyle());
10023 stream.addProperty("text:selectionStart", getSelectionStart());
10024 stream.addProperty("text:selectionEnd", getSelectionEnd());
10025 stream
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/core/java/android/view/
H A DView.java11308 * Request unbuffered dispatch of the given stream of MotionEvents to this View.
22815 * event stream.
23606 public void encode(@NonNull ViewHierarchyEncoder stream) { argument
23607 stream.beginObject(this);
23608 encodeProperties(stream);
23609 stream.endObject();
23614 protected void encodeProperties(@NonNull ViewHierarchyEncoder stream) { argument
23617 stream.addProperty("id", (String) resolveId);
23619 stream.addProperty("id", mID);
23622 stream
[all...]

Completed in 4218 milliseconds

1234567