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

/frameworks/base/media/java/android/media/
H A DAudioManagerInternal.java59 int getRingerModeAffectedStreams(int streams); argument
/frameworks/base/services/core/java/com/android/server/notification/
H A DZenModeHelper.java1014 public int getRingerModeAffectedStreams(int streams) { argument
1015 // ringtone, notification and system streams are always affected by ringer mode
1016 streams |= (1 << AudioSystem.STREAM_RING) |
1020 // alarm and music streams are only affected by ringer mode when in total silence
1022 streams |= (1 << AudioSystem.STREAM_ALARM) |
1025 streams &= ~((1 << AudioSystem.STREAM_ALARM) |
1028 return streams;
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp819 CLOGE("Can't set up streams: %s (%d)", strerror(-res), res);
823 CLOGE("No streams configured");
888 ALOGV("%s: Stopping activity to reconfigure streams", __FUNCTION__);
891 SET_ERR_L("Can't pause captures to reconfigure streams!");
917 ALOGV("%s: Restarting activity to reconfigure streams", __FUNCTION__);
959 ALOGV("%s: Stopping activity to reconfigure streams", __FUNCTION__);
962 SET_ERR_L("Can't pause captures to reconfigure streams!");
997 ALOGV("%s: Restarting activity to reconfigure streams", __FUNCTION__);
1036 ALOGV("%s: Stopping activity to reconfigure streams", __FUNCTION__);
1039 SET_ERR_L("Can't pause captures to reconfigure streams!");
1838 camera_metadata_entry_t streams = local
1956 Vector<camera3_stream_t*> streams; local
[all...]
/frameworks/base/core/java/android/content/
H A DIntent.java1121 * handle generic data streams). If using {@link #EXTRA_TEXT}, you can
9011 final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM);
9012 if (streams != null) {
9014 for (int i = 0; i < streams.size(); i++) {
9015 newStreams.add(maybeAddUserId(streams.get(i), contentUserHint));
9091 final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM);
9095 if (streams != null) {
9096 num = streams.size();
9115 makeClipItem(streams, texts, htmlTexts, 0));
9118 clipData.addItem(makeClipItem(streams, text
9146 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.java262 /** Maximum volume index values for audio streams */
276 /** Minimum volume index values for audio streams */
294 * Some streams alias to different streams according to device category (phone or tablet) or
375 private int mRingerMode; // internal ringer mode, affects muting of underlying streams
675 // state on streams affected by ringer mode.
935 VolumeStreamState[] streams = mStreamStates = new VolumeStreamState[numStreamTypes];
938 streams[i] = new VolumeStreamState(System.VOLUME_SETTINGS[mStreamVolumeAlias[i]], i);
954 pw.print("\n- mute affected streams = 0x");
1227 // use stream type alias here so that streams wit
5898 dumpRingerModeStreams(PrintWriter pw, String type, int streams) argument
[all...]

Completed in 1202 milliseconds