Home
last modified time | relevance | path

Searched refs:maxDuration (Results 1 – 5 of 5) sorted by relevance

/packages/services/Car/evs/manager/1.1/stats/
DStatsCollector.cpp259 std::chrono::nanoseconds maxDuration) { in startCustomCollection() argument
262 if (interval < kMinCollectionInterval || maxDuration < kMinCollectionInterval) { in startCustomCollection()
269 if (maxDuration > kCustomCollectionMaxDuration) { in startCustomCollection()
302 nsecs_t uptime = mLooper->now() + maxDuration.count(); in startCustomCollection()
/packages/apps/Camera2/src/com/android/camera/stats/profiler/
DGuardingProfile.java30 public GuardingProfile(Writer writer, Writer verbose, String name,int maxDuration) { in GuardingProfile() argument
34 mMaxMillis = maxDuration; in GuardingProfile()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/touchcontrollers/
DTaskViewTouchController.java206 long maxDuration = 2 * secondaryLayerDimension; in reInitAnimationController() local
211 true /* animateTaskView */, true /* removeTask */, maxDuration); in reInitAnimationController()
216 mTaskBeingDragged, maxDuration, Interpolators.ZOOM_IN); in reInitAnimationController()
/packages/services/Car/watchdog/server/src/
DIoPerfCollection.cpp432 std::chrono::nanoseconds maxDuration = kCustomCollectionDuration; in dump() local
451 maxDuration = std::chrono::duration_cast<std::chrono::nanoseconds>(*ret); in dump()
473 const auto& ret = startCustomCollection(interval, maxDuration, filterPackages); in dump()
571 std::chrono::nanoseconds interval, std::chrono::nanoseconds maxDuration, in startCustomCollection() argument
573 if (interval < kMinCollectionInterval || maxDuration < kMinCollectionInterval) { in startCustomCollection()
597 nsecs_t uptime = mHandlerLooper->now() + maxDuration.count(); in startCustomCollection()
DIoPerfCollection.h212 std::chrono::nanoseconds interval, std::chrono::nanoseconds maxDuration,