/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
D | MediaVisualizerTest.java | 231 AudioEffect vc = null; in test2_0PollingCapture() local 244 vc = new AudioEffect( in test2_0PollingCapture() 249 vc.setEnabled(true); in test2_0PollingCapture() 296 if (vc != null) { in test2_0PollingCapture() 297 vc.release(); in test2_0PollingCapture() 310 AudioEffect vc = null; in test2_1ListenerCapture() local 323 vc = new AudioEffect( in test2_1ListenerCapture() 328 vc.setEnabled(true); in test2_1ListenerCapture() 428 if (vc != null) { in test2_1ListenerCapture() 429 vc.release(); in test2_1ListenerCapture() [all …]
|
D | MediaPresetReverbTest.java | 198 AudioEffect vc = null; in test2_0AuxiliarySoundModification() local 212 vc = new AudioEffect( in test2_0AuxiliarySoundModification() 217 vc.setEnabled(true); in test2_0AuxiliarySoundModification() 252 if (vc != null) { in test2_0AuxiliarySoundModification() 253 vc.release(); in test2_0AuxiliarySoundModification() 270 AudioEffect vc = null; in test2_1InsertSoundModification() local 283 vc = new AudioEffect( in test2_1InsertSoundModification() 288 vc.setEnabled(true); in test2_1InsertSoundModification() 334 if (vc != null) { in test2_1InsertSoundModification() 335 vc.release(); in test2_1InsertSoundModification()
|
D | MediaEnvReverbTest.java | 353 AudioEffect vc = null; in test2_0AuxiliarySoundModification() local 367 vc = new AudioEffect( in test2_0AuxiliarySoundModification() 372 vc.setEnabled(true); in test2_0AuxiliarySoundModification() 409 if (vc != null) { in test2_0AuxiliarySoundModification() 410 vc.release(); in test2_0AuxiliarySoundModification() 427 AudioEffect vc = null; in test2_1InsertSoundModification() local 440 vc = new AudioEffect( in test2_1InsertSoundModification() 445 vc.setEnabled(true); in test2_1InsertSoundModification() 493 if (vc != null) { in test2_1InsertSoundModification() 494 vc.release(); in test2_1InsertSoundModification()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/ |
D | ScreenMediaRecorder.java | 205 MediaCodecInfo.VideoCapabilities vc = capabilities.getVideoCapabilities(); in getSupportedSize() local 207 int width = vc.getSupportedWidths().getUpper(); in getSupportedSize() 208 int height = vc.getSupportedHeights().getUpper(); in getSupportedSize() 211 if (screenWidthAligned % vc.getWidthAlignment() != 0) { in getSupportedSize() 212 screenWidthAligned -= (screenWidthAligned % vc.getWidthAlignment()); in getSupportedSize() 215 if (screenHeightAligned % vc.getHeightAlignment() != 0) { in getSupportedSize() 216 screenHeightAligned -= (screenHeightAligned % vc.getHeightAlignment()); in getSupportedSize() 220 && vc.isSizeSupported(screenWidthAligned, screenHeightAligned)) { in getSupportedSize() 222 int maxRate = vc.getSupportedFrameRatesFor(screenWidthAligned, in getSupportedSize() 237 maxInfo = vc; in getSupportedSize()
|
/frameworks/base/media/jni/ |
D | android_media_MediaProfiles.cpp | 264 for (const MediaProfiles::VideoCodec *vc : cp->getVideoCodecs()) { in android_media_MediaProfiles_native_get_camcorder_profiles() local 267 vc->getCodec(), in android_media_MediaProfiles_native_get_camcorder_profiles() 268 vc->getFrameWidth(), in android_media_MediaProfiles_native_get_camcorder_profiles() 269 vc->getFrameHeight(), in android_media_MediaProfiles_native_get_camcorder_profiles() 270 vc->getFrameRate(), in android_media_MediaProfiles_native_get_camcorder_profiles() 271 vc->getBitrate(), in android_media_MediaProfiles_native_get_camcorder_profiles() 272 vc->getProfile()); in android_media_MediaProfiles_native_get_camcorder_profiles()
|
/frameworks/av/services/audiopolicy/engine/common/include/ |
D | VolumeCurve.h | 163 sp<VolumeCurve> vc = getCurvesFor(deviceCat); in volIndexToDb() local 164 if (vc != 0) { in volIndexToDb() 165 return vc->volIndexToDb(indexInUi, mIndexMin, mIndexMax); in volIndexToDb()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/volume/ |
D | Util.java | 81 final String vc = volumeProviderControlToString(info.getVolumeControl()); in playbackInfoToString() local 83 info.getCurrentVolume(), info.getMaxVolume(), type, vc, info.getAudioAttributes()); in playbackInfoToString()
|
/frameworks/base/media/java/android/media/audiopolicy/ |
D | AudioPolicy.java | 144 AudioPolicyVolumeCallback vc, @Nullable MediaProjection projection) { in AudioPolicy() argument 161 mVolCb = vc; in AudioPolicy() 275 public Builder setAudioPolicyVolumeCallback(@NonNull AudioPolicyVolumeCallback vc) { in setAudioPolicyVolumeCallback() argument 276 if (vc == null) { in setAudioPolicyVolumeCallback() 279 mVolCb = vc; in setAudioPolicyVolumeCallback()
|
/frameworks/av/media/extractors/flac/ |
D | FLACExtractor.cpp | 372 const FLAC__StreamMetadata_VorbisComment *vc; in metadataCallback() local 373 vc = &metadata->data.vorbis_comment; in metadataCallback() 374 for (FLAC__uint32 i = 0; i < vc->num_comments; ++i) { in metadataCallback() 376 vce = &vc->comments[i]; in metadataCallback()
|
/frameworks/ex/widget/java/com/android/ex/widget/ |
D | StaggeredGridView.java | 208 final ViewConfiguration vc = ViewConfiguration.get(context); in StaggeredGridView() local 209 mTouchSlop = vc.getScaledTouchSlop(); in StaggeredGridView() 210 mMaximumVelocity = vc.getScaledMaximumFlingVelocity(); in StaggeredGridView() 211 mFlingVelocity = vc.getScaledMinimumFlingVelocity(); in StaggeredGridView()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ResolverDrawerLayout.java | 167 final ViewConfiguration vc = ViewConfiguration.get(context); in ResolverDrawerLayout() local 168 mTouchSlop = vc.getScaledTouchSlop(); in ResolverDrawerLayout() 169 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in ResolverDrawerLayout()
|
D | RecyclerView.java | 547 final ViewConfiguration vc = ViewConfiguration.get(context); in RecyclerView() local 548 mTouchSlop = vc.getScaledTouchSlop(); in RecyclerView() 549 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in RecyclerView() 550 mMaxFlingVelocity = vc.getScaledMaximumFlingVelocity(); in RecyclerView() 926 final ViewConfiguration vc = ViewConfiguration.get(getContext()); in setScrollingTouchSlop() local 933 mTouchSlop = vc.getScaledTouchSlop(); in setScrollingTouchSlop() 937 mTouchSlop = vc.getScaledPagingTouchSlop(); in setScrollingTouchSlop()
|
/frameworks/av/media/codec2/components/vorbis/ |
D | C2SoftVorbisDec.cpp | 33 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb);
|
/frameworks/av/media/libstagefright/codecs/vorbis/dec/ |
D | SoftVorbis.cpp | 34 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb);
|
/frameworks/av/media/libmedia/ |
D | MediaProfiles.cpp | 1182 for (const MediaProfiles::VideoCodec &vc : mVideoCodecs) { in getVideoCodecs() local 1183 res.push_back(&vc); in getVideoCodecs()
|
/frameworks/base/startop/scripts/trace_analyzer/test_fixtures/ |
D | common_systrace | 114 …<...>-3206 (-----) [001] d..2 14594.224167: sched_switch: prev_comm=aiai-vc-0 prev_pid=3206 prev_… 116 …droid.systemui prev_pid=1803 prev_prio=120 prev_state=S ==> next_comm=aiai-vc-0 next_pid=3206 next… 117 …<...>-3206 (-----) [001] d..2 14594.224433: sched_switch: prev_comm=aiai-vc-0 prev_pid=3206 prev_…
|
/frameworks/base/core/java/com/android/internal/widget/helper/ |
D | ItemTouchHelper.java | 468 ViewConfiguration vc = ViewConfiguration.get(mRecyclerView.getContext()); in setupCallbacks() local 469 mSlop = vc.getScaledTouchSlop(); in setupCallbacks()
|
/frameworks/av/media/extractors/ogg/ |
D | OggExtractor.cpp | 42 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb);
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | Settings.java | 830 String secondaryCpuAbiString, String cpuAbiOverrideString, int uid, long vc, int 844 primaryCpuAbiString, secondaryCpuAbiString, cpuAbiOverrideString, vc, pkgFlags,
|