HomeSort by relevance Sort by last modified time
    Searched refs:STREAMS (Results 1 - 8 of 8) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogControllerImpl.java 72 private static final ArrayMap<Integer, Integer> STREAMS = new ArrayMap<>();
74 STREAMS.put(AudioSystem.STREAM_ALARM, R.string.stream_alarm);
75 STREAMS.put(AudioSystem.STREAM_BLUETOOTH_SCO, R.string.stream_bluetooth_sco);
76 STREAMS.put(AudioSystem.STREAM_DTMF, R.string.stream_dtmf);
77 STREAMS.put(AudioSystem.STREAM_MUSIC, R.string.stream_music);
78 STREAMS.put(AudioSystem.STREAM_ACCESSIBILITY, R.string.stream_accessibility);
79 STREAMS.put(AudioSystem.STREAM_NOTIFICATION, R.string.stream_notification);
80 STREAMS.put(AudioSystem.STREAM_RING, R.string.stream_ring);
81 STREAMS.put(AudioSystem.STREAM_SYSTEM, R.string.stream_system);
82 STREAMS.put(AudioSystem.STREAM_SYSTEM_ENFORCED, R.string.stream_system_enforced)
    [all...]
  /external/openssh/
umac.c 311 * produce output for all STREAMS NH iterations in one call,
312 * allowing the parallel implementation of the streams.
315 #define STREAMS (UMAC_OUTPUT_LEN / 4) /* Number of times hash is applied */
317 #define L1_KEY_SHIFT 16 /* Toeplitz key shift between streams */
323 UINT8 nh_key [L1_KEY_LEN + L1_KEY_SHIFT * (STREAMS - 1)]; /* NH Key */
327 UINT64 state[STREAMS]; /* on-line state */
369 /* Same as previous nh_aux, but two streams are handled in one pass,
416 /* Same as previous nh_aux, but two streams are handled in one pass,
471 /* Same as previous nh_aux, but two streams are handled in one pass,
779 UINT64 poly_key_8[STREAMS]; /* p64 poly keys *
    [all...]
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/
CarEmulator.java 81 int supportedStreams = (1 << streamCount) - 1; // A bitwise mask of supported streams.
192 int requestedStreams = v.get(VehicleAudioFocusIndex.STREAMS);
  /packages/services/Car/tests/carservice_test/src/com/android/car/test/
CarAudioFocusSystemSoundTest.java 326 void sendAudioFocusState(int state, int streams, int extFocus) {
329 mStreams = streams;
335 .addIntValue(state, streams, extFocus, 0)
361 mRequestedStreams = v.get(VehicleAudioFocusIndex.STREAMS);
371 int state, streams, extFocus; local
374 streams = mStreams;
379 .addIntValue(state, streams, extFocus, 0)
CarAudioFocusTest.java 556 void sendAudioFocusState(int state, int streams, int extFocus) {
559 mStreams = streams;
565 .addIntValue(state, streams, extFocus, 0)
585 mRequestedStreams = v.get(VehicleAudioFocusIndex.STREAMS);
595 int state, streams, extFocus; local
598 streams = mStreams;
603 .addIntValue(state, streams, extFocus, 0)
CarAudioExtFocusTest.java 953 int state, streams, extFocus; local
    [all...]
  /packages/services/Car/service/src/com/android/car/hal/
AudioHalService.java 139 * @param streams
143 void onFocusChange(int focusState, int streams, int externalFocus);
346 public void requestAudioFocusChange(int request, int streams, int audioContexts) {
347 requestAudioFocusChange(request, streams, VEHICLE_AUDIO_EXT_FOCUS_NONE_FLAG, audioContexts);
350 public void requestAudioFocusChange(int request, int streams, int extFocus, int audioContexts) {
351 int[] payload = { request, streams, extFocus, audioContexts };
439 if (config.configArray.get(0) == 0) { // physical streams only
469 * @return 0: focusState, 1: streams, 2: externalFocus
695 int streams = vec.get(VehicleAudioFocusIndex.STREAMS); local
    [all...]
  /hardware/interfaces/automotive/vehicle/2.0/
types.hal 701 * int32Values[1]: bit flags of streams requested by this focus request.
702 * There can be up to 32 streams.
724 * Note that each focus request can request multiple streams that is
734 * int32Values[1]: bit flags of streams allowed.
898 * Setting of this property must be done for all available physical streams
    [all...]

Completed in 583 milliseconds