Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dspring_curve.cpp79 float maxDuration = MAX_ESTIMATE_DURATION; in InitEstimateDuration() local
81 while (maxDuration - minDuration >= time) { in InitEstimateDuration()
82 auto duration = (minDuration + maxDuration) * HALF; in InitEstimateDuration()
86 maxDuration = duration; in InitEstimateDuration()
91 estimateDuration_ = maxDuration; in InitEstimateDuration()
/ohos5.0/base/startup/init/services/utils/
H A Dinit_utils.c384 long long maxDuration = maxSecond * BASE_MS_UNIT * BASE_MS_UNIT; // 5s in WaitForFile() local
386 maxDuration = 0; in WaitForFile()
391 while ((stat(source, &sourceInfo) < 0) && (errno == ENOENT) && (duration < maxDuration)) { in WaitForFile()
396 …INIT_CHECK_ONLY_ELOG(duration < maxDuration, "wait for file:%s failed after %d second.", source, m… in WaitForFile()
/ohos5.0/foundation/multimedia/media_foundation/engine/include/pipeline/filters/muxer/
H A Dmuxer_filter.h45 ErrorCode SetMaxDuration(uint64_t maxDuration);
/ohos5.0/foundation/multimodalinput/input/intention/cooperate/client/src/
H A Dcooperate_client.cpp558 …performanceInfo_.maxDuration = std::max(performanceInfo_.durationList[i], performanceInfo_.maxDura… in DumpPerformanceInfo()
577 … performanceInfo_.successRate, performanceInfo_.averageDuration, performanceInfo_.maxDuration, in DumpPerformanceInfo()
/ohos5.0/base/msdp/device_status/intention/cooperate/client/src/
H A Dcooperate_client.cpp557 …performanceInfo_.maxDuration = std::max(performanceInfo_.durationList[i], performanceInfo_.maxDura… in DumpPerformanceInfo()
576 … performanceInfo_.successRate, performanceInfo_.averageDuration, performanceInfo_.maxDuration, in DumpPerformanceInfo()
/ohos5.0/foundation/resourceschedule/device_standby/services/core/src/
H A Dstandby_service_impl.cpp643 int64_t maxDuration = 0; in UpdateRecord() local
645maxDuration = std::min(resourceRequest->GetDuration(), StandbyConfigManager::GetInstance()-> in UpdateRecord()
648 maxDuration = resourceRequest->GetDuration() * TimeConstant::MSEC_PER_SEC; in UpdateRecord()
650 if (maxDuration <= 0) { in UpdateRecord()
653 endTime = curTime + maxDuration; in UpdateRecord()
667 handler_->PostTask(task, maxDuration); in UpdateRecord()
/ohos5.0/foundation/multimedia/camera_framework/interfaces/inner_api/native/test/
H A Dcamera_video.cpp118 int32_t maxDuration = 36000; in CreateAndConfigureRecorder() local
152 if (recorder->SetMaxDuration(maxDuration)) { in CreateAndConfigureRecorder()
/ohos5.0/foundation/multimodalinput/input/intention/cooperate/client/include/
H A Dcooperate_client.h125 int32_t maxDuration { std::numeric_limits<int32_t>::min() };
/ohos5.0/base/msdp/device_status/intention/cooperate/client/include/
H A Dcooperate_client.h125 int32_t maxDuration { std::numeric_limits<int32_t>::min() };
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/server/
H A Drecorder_server.h163 int32_t maxDuration = 0; member
H A Drecorder_server.cpp626 config_.maxDuration = duration; in SetMaxDuration()
627 MaxDuration maxDuration(duration); in SetMaxDuration() local
629 return recorderEngine_->Configure(DUMMY_SOURCE_ID, maxDuration); in SetMaxDuration()
1018 dumpString += "RecorderServer maxDuration is: " + std::to_string(config_.maxDuration) + "\n"; in DumpInfo()
/ohos5.0/foundation/multimedia/media_foundation/engine/pipeline/filters/muxer/
H A Dmuxer_filter.cpp239 ErrorCode MuxerFilter::SetMaxDuration(uint64_t maxDuration) in SetMaxDuration() argument
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/recorder/
H A Dhirecorder_impl.cpp822 MaxDuration maxDuration = static_cast<const MaxDuration&>(recParam); in ConfigureMuxer() local
823 maxDuration_ = maxDuration.duration; in ConfigureMuxer()