Searched refs:streams (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/media/java/android/media/
H A DAudioManagerInternal.java62 int getRingerModeAffectedStreams(int streams); argument
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp270 std::vector<wp<Camera3StreamInterface>> streams; local
304 streams.reserve(mOutputStreams.size() + (mInputStream != nullptr ? 1 : 0));
306 streams.push_back(mOutputStreams[i]);
309 streams.push_back(mInputStream);
350 for (auto& weakStream : streams) {
831 camera_metadata_ro_entry streams = request.find(ANDROID_REQUEST_OUTPUT_STREAMS); local
834 for (size_t i = 0; i < streams.count; i++) {
835 surfaceMap[streams.data.i32[i]].push_back(0);
1204 CLOGE("Can't set up streams: %s (%d)", strerror(-res), res);
1208 CLOGE("No streams configure
2245 camera_metadata_entry_t streams = local
2423 Vector<camera3_stream_t*> streams; local
[all...]
/frameworks/av/media/libeffects/config/src/
H A DEffectsConfig.cpp221 * @return true and pushes the stream in streams on success,
224 bool parseStream(const XMLElement& xmlStream, Effects& effects, std::vector<Stream>* streams) { argument
249 streams->push_back(std::move(stream));
/frameworks/base/services/core/java/com/android/server/notification/
H A DZenModeHelper.java935 // do not apply zen to ringer, streams zen muted in AudioService
1128 public int getRingerModeAffectedStreams(int streams) { argument
1129 // ringtone and notification streams are always affected by ringer mode
1131 streams |= (1 << AudioSystem.STREAM_RING) |
1136 // alarm and music streams affected by ringer mode when in total silence
1137 streams |= (1 << AudioSystem.STREAM_ALARM) |
1140 streams &= ~((1 << AudioSystem.STREAM_ALARM) |
1148 streams &= ~(1 << AudioSystem.STREAM_SYSTEM);
1150 streams |= (1 << AudioSystem.STREAM_SYSTEM);
1152 return streams;
[all...]
/frameworks/base/core/java/android/content/
H A DIntent.java1159 * handle generic data streams). If using {@link #EXTRA_TEXT}, you can
10323 final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM);
10324 if (streams != null) {
10326 for (int i = 0; i < streams.size(); i++) {
10327 newStreams.add(maybeAddUserId(streams.get(i), contentUserHint));
10403 final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM);
10407 if (streams != null) {
10408 num = streams.size();
10427 makeClipItem(streams, texts, htmlTexts, 0));
10430 clipData.addItem(makeClipItem(streams, text
10479 makeClipItem(ArrayList<Uri> streams, ArrayList<CharSequence> texts, ArrayList<String> htmlTexts, int which) argument
[all...]
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.cpp240 // FIXME: should we have specific post processing settings for internal streams?
703 auto loadProcessingChain = [](auto& processingChain, auto& streams) {
710 streams.add(stream.type, effectDescs.release());
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java207 // indicates whether the system maps all streams to a single stream.
307 /** Maximum volume index values for audio streams */
322 /** Minimum volume index values for audio streams */
341 * Some streams alias to different streams according to device category (phone or tablet) or
435 private int mRingerMode; // internal ringer mode, affects muting of underlying streams
839 // state on streams affected by ringer mode.
1145 VolumeStreamState[] streams = mStreamStates = new VolumeStreamState[numStreamTypes];
1148 streams[i] =
1158 // Update default indexes from aliased streams
7214 dumpRingerModeStreams(PrintWriter pw, String type, int streams) argument
[all...]

Completed in 270 milliseconds