Searched defs:streams (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/media/java/android/media/
H A DAudioManagerInternal.java60 int getRingerModeAffectedStreams(int streams); argument
/frameworks/base/services/core/java/com/android/server/notification/
H A DZenModeHelper.java998 public int getRingerModeAffectedStreams(int streams) { argument
999 // ringtone, notification and system streams are always affected by ringer mode
1000 streams |= (1 << AudioSystem.STREAM_RING) |
1004 // alarm and music streams are only affected by ringer mode when in total silence
1006 streams |= (1 << AudioSystem.STREAM_ALARM) |
1009 streams &= ~((1 << AudioSystem.STREAM_ALARM) |
1012 return streams;
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp776 camera_metadata_ro_entry streams = request.find(ANDROID_REQUEST_OUTPUT_STREAMS); local
779 for (size_t i = 0; i < streams.count; i++) {
780 surfaceMap[streams.data.i32[i]].push_back(0);
1055 CLOGE("Can't set up streams: %s (%d)", strerror(-res), res);
1059 CLOGE("No streams configured");
1124 ALOGV("%s: Stopping activity to reconfigure streams", __FUNCTION__);
1127 SET_ERR_L("Can't pause captures to reconfigure streams!");
1153 ALOGV("%s: Restarting activity to reconfigure streams", __FUNCTION__);
1212 ALOGV("%s: Stopping activity to reconfigure streams", __FUNCTION__);
1215 SET_ERR_L("Can't pause captures to reconfigure streams!");
1945 camera_metadata_entry_t streams = local
2083 Vector<camera3_stream_t*> streams; local
[all...]
/frameworks/base/core/java/android/content/
H A DIntent.java1154 * handle generic data streams). If using {@link #EXTRA_TEXT}, you can
9823 final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM);
9824 if (streams != null) {
9826 for (int i = 0; i < streams.size(); i++) {
9827 newStreams.add(maybeAddUserId(streams.get(i), contentUserHint));
9903 final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM);
9907 if (streams != null) {
9908 num = streams.size();
9927 makeClipItem(streams, texts, htmlTexts, 0));
9930 clipData.addItem(makeClipItem(streams, text
9958 makeClipItem(ArrayList<Uri> streams, ArrayList<CharSequence> texts, ArrayList<String> htmlTexts, int which) argument
[all...]
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java188 // indicates whether the system maps all streams to a single stream.
277 /** Maximum volume index values for audio streams */
292 /** Minimum volume index values for audio streams */
311 * Some streams alias to different streams according to device category (phone or tablet) or
396 private int mRingerMode; // internal ringer mode, affects muting of underlying streams
712 // state on streams affected by ringer mode.
971 VolumeStreamState[] streams = mStreamStates = new VolumeStreamState[numStreamTypes];
974 streams[i] =
991 pw.print("\n- mute affected streams
6203 dumpRingerModeStreams(PrintWriter pw, String type, int streams) argument
[all...]

Completed in 7193 milliseconds