Home
last modified time | relevance | path

Searched refs:TIME_INTERVAL (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/foundation/multimedia/player_framework/services/services/monitor/client/
H A Dmonitor_client.cpp32 constexpr uint8_t TIME_INTERVAL = 1; // Heartbeat once per second variable
145 clickCond_.wait_for(lock, std::chrono::seconds(TIME_INTERVAL), [this] { in ClickThread()
175 clickCond_.wait_for(lock, std::chrono::seconds(TIME_INTERVAL), [this] { in ClickThreadCtrl()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/
H A Drs_render_interpolating_spring_animation.cpp233 constexpr float TIME_INTERVAL = 1e-6f; // 1e-6f : 1 microsecond in CalculateVelocity() local
235 float nextDisplacement = 1.0f + CalculateDisplacement(time + TIME_INTERVAL); in CalculateVelocity()
237 … valueEstimator_->Estimate(currentDisplacement, startValue_, endValue_)) * (1 / TIME_INTERVAL); in CalculateVelocity()
/ohos5.0/base/notification/distributed_notification_service/services/ans/src/
H A Dreminder_table_old.cpp32 const std::string ReminderTable::TIME_INTERVAL = "time_interval"; member in OHOS::Notification::ReminderTable
97 AddColumn(TIME_INTERVAL, "BIGINT NOT NULL"); in InitBasicColumns()
H A Dreminder_table.cpp30 const std::string ReminderBaseTable::TIME_INTERVAL = "time_interval"; member in OHOS::Notification::ReminderBaseTable
121 AddColumn(TIME_INTERVAL, "BIGINT NOT NULL", ADD_COLUMNS, SELECT_COLUMNS); in InitDbColumns()
H A Dreminder_store_strategy.cpp39 values.PutLong(ReminderBaseTable::TIME_INTERVAL, reminder->GetTimeInterval()); in AppendValuesBucket()
86 ReminderStrategy::GetRdbValue<uint64_t>(resultSet, ReminderTable::TIME_INTERVAL, timeInterval); in RecoverTimeFromOldVersion()
235 …ReminderStrategy::GetRdbValue<uint64_t>(resultSet, ReminderBaseTable::TIME_INTERVAL, timeInterval); in RecoverTimeFromDb()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/
H A Drs_value_estimator.h469 constexpr float TIME_INTERVAL = 1e-6f; // 1 microsecond in GetPropertyVelocity() local
470 T velocity = (springModel_->CalculateDisplacement(time + TIME_INTERVAL) - in GetPropertyVelocity()
471 springModel_->CalculateDisplacement(time)) * (1 / TIME_INTERVAL); in GetPropertyVelocity()
/ohos5.0/base/notification/distributed_notification_service/services/ans/include/
H A Dreminder_table_old.h85 static const std::string TIME_INTERVAL; variable
H A Dreminder_table.h74 static const std::string TIME_INTERVAL; variable
/ohos5.0/foundation/resourceschedule/soc_perf/services/core/src/
H A Dsocperf.cpp24 const int64_t TIME_INTERVAL = 8; variable
479 if (curMs - boostTime_[recordCmdId] > TIME_INTERVAL) { in CheckTimeInterval()
/ohos5.0/base/notification/distributed_notification_service/frameworks/js/napi/include/reminder/
H A Dreminder_common.h59 const char* TIME_INTERVAL = "timeInterval"; variable
/ohos5.0/base/theme/wallpaper_mgr/frameworks/native/src/
H A Dwallpaper_manager.cpp54 constexpr int32_t TIME_INTERVAL = 500000; variable
137 usleep(TIME_INTERVAL); in OnRemoteDied()
/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched/plugins/socperf_plugin/src/
H A Dsocperf_plugin.cpp52 const int64_t TIME_INTERVAL = 5000; variable
492 if (curMs - lastTime > TIME_INTERVAL) { in HandleEventSlide()
/ohos5.0/foundation/multimedia/media_library/
H A Dhisysevent.yaml90 TIME_INTERVAL: { type: UINT64, desc: the time interval from taking the photo to the fist visit }
/ohos5.0/base/notification/distributed_notification_service/frameworks/js/napi/src/reminder/
H A Dreminder_common.cpp557 if (GetInt64(env, value, ReminderAgentNapi::TIME_INTERVAL, propVal)) { in GenReminderIntInner()
H A Dpublish.cpp754 napi_set_named_property(env, result, TIME_INTERVAL, value); in SetValidReminder()