Home
last modified time | relevance | path

Searched refs:TIME_THRESHOLD (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/common/include/
H A Dcall_reporter.h35 static constexpr std::chrono::milliseconds TIME_THRESHOLD = std::chrono::milliseconds(30000); variable
/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/common/src/
H A Dcall_reporter.cpp40 if (now - first <= TIME_THRESHOLD.count()) { in Count()
/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/provider/include/
H A Ddatashare_stub.h67 static constexpr std::chrono::milliseconds TIME_THRESHOLD = std::chrono::milliseconds(500); variable
/ohos5.0/base/telephony/core_service/services/network_search/src/
H A Dnitz_update.cpp51 const uint32_t TIME_THRESHOLD = 3; // seconds variable
231 if (abs(networkTimeInterval - systemElapsedTime) > TIME_THRESHOLD) { in IsValidTime()
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/data_share/
H A Ddata_share_service_stub.h30 static constexpr std::chrono::milliseconds TIME_THRESHOLD = std::chrono::milliseconds(500);
H A Ddata_share_service_stub.cpp401 if (duration >= TIME_THRESHOLD) { in OnRemoteRequest()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/
H A Drs_value_estimator.h444 constexpr static float TIME_THRESHOLD = 1e-3f; in GetAnimationValue() local
445 if (ROSEN_EQ(time, duration_, TIME_THRESHOLD)) { in GetAnimationValue()
/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/provider/src/
H A Ddatashare_stub.cpp85 if (duration >= TIME_THRESHOLD) { in OnRemoteRequest()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/water_flow/
H A Drender_water_flow.cpp34 constexpr int64_t TIME_THRESHOLD = 3 * MILLISEC_TO_NANOSEC; // milliseconds variable
860 if (GetSysTimestamp() - startTime + TIME_THRESHOLD > deadline * MICROSEC_TO_NANOSEC) { in OnPredictLayout()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/grid/
H A Drender_grid_scroll.cpp37 constexpr int32_t TIME_THRESHOLD = 3 * 1000000; // 3 millisecond variable
1696 if (GetSysTimestamp() + TIME_THRESHOLD > deadline) { in OnPredictLayout()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline_ng/
H A Dpipeline_context.cpp69 constexpr int32_t TIME_THRESHOLD = 2 * 1000000; // 3 millisecond variable
4019 taskScheduler_->FlushPredictTask(deadline - TIME_THRESHOLD, canUseLongPredictTask_); in OnIdle()