/foundation/resourceschedule/device_standby/services/common/src/ |
H A D | timed_task.cpp | 32 TimedTask::TimedTask(bool repeat, uint64_t interval, bool isExact, bool isIdle) in TimedTask() argument 34 this->repeat = repeat; in TimedTask() 48 TimedTask::TimedTask(bool repeat, uint64_t interval, int type) in TimedTask() argument 50 this->repeat = repeat; in TimedTask() 73 void TimedTask::SetRepeat(bool repeat) in SetRepeat() argument 75 this->repeat = repeat; in SetRepeat() 93 uint64_t WEAK_FUNC TimedTask::CreateTimer(bool repeat, uint64_ argument 101 CreateTimer(bool repeat, uint64_t interval, int type, const std::function<void()>& callBack) CreateTimer() argument 126 RegisterDayNightSwitchTimer(uint64_t& timeId, bool repeat, uint64_t interval, const std::function<void()>& callBack) RegisterDayNightSwitchTimer() argument [all...] |
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_common/ |
H A D | wifi_system_timer.cpp | 30 WifiSysTimer::WifiSysTimer(bool repeat, uint64_t interval, bool isNoWakeUp, bool isIdle) in WifiSysTimer() argument 32 this->repeat = repeat; in WifiSysTimer() 60 void WifiSysTimer::SetRepeat(bool repeat) in SetRepeat() argument 62 this->repeat = repeat; in SetRepeat()
|
H A D | wifi_system_timer.h | 34 WifiSysTimer(bool repeat, uint64_t interval, bool isNoWakeUp, bool isIdle = false); 38 void SetRepeat(bool repeat) override;
|
/foundation/communication/dhcp/services/utils/src/ |
H A D | dhcp_system_timer.cpp | 33 DhcpSysTimer::DhcpSysTimer(bool repeat, uint64_t interval, bool isNoWakeUp, bool isIdle) in DhcpSysTimer() argument 35 this->repeat = repeat; in DhcpSysTimer() 63 void DhcpSysTimer::SetRepeat(bool repeat) in SetRepeat() argument 65 this->repeat = repeat; in SetRepeat()
|
/foundation/resourceschedule/device_standby/services/common/include/ |
H A D | timed_task.h | 38 TimedTask(bool repeat, uint64_t interval, bool isExact, bool isIdle = false); 39 TimedTask(bool repeat, uint64_t interval, int type); 43 void SetRepeat(bool repeat) override; 48 static uint64_t CreateTimer(bool repeat, uint64_t interval, bool isExact, bool isIdle, 50 static uint64_t CreateTimer(bool repeat, uint64_t interval, int type, const std::function<void()>& callBack); 52 static bool RegisterDayNightSwitchTimer(uint64_t& timeId, bool repeat, uint64_t interval,
|
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/unittest/common/ |
H A D | wifi_system_timer_test.cpp | 63 bool repeat = true;
in HWTEST_F() local 64 timer_->SetRepeat(repeat);
in HWTEST_F() 66 EXPECT_EQ(timer_->repeat, repeat);
in HWTEST_F() 88 bool repeat = true;
in HWTEST_F() local 92 WifiSysTimer WifiSysTimer(repeat, interval, isNoWakeUp, isIdle);
in HWTEST_F()
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_timer_option.h | 33 virtual void SetRepeat(bool repeat) override; 67 void FormTimerOption::SetRepeat(bool repeat) in SetRepeat() argument 69 this->repeat = repeat; in SetRepeat()
|
/foundation/distributeddatamgr/preferences/test/js/unittest/storage/src/ |
H A D | StorageSyncJsunit.test.js | 272 * @tc.name repeat on interface test 274 * @tc.desc repeat on interface test 308 illegalKey = illegalKey.repeat(1025); 324 legalKey = legalKey.repeat(1024); 340 illegalValue = illegalValue.repeat(16 * 1024 * 1024 + 1); 356 legalValue = legalValue.repeat(16 * 1024 * 1024); 372 illegalkey = illegalkey.repeat(1025); 388 legalkey = legalkey.repeat(1024); 404 illegalkey = illegalkey.repeat(1025); 420 legalkey = legalkey.repeat(102 [all...] |
H A D | StorageCallBackJsunit.test.js | 365 phoneStr = phoneStr.repeat(16 * 1024 * 1024 + 1); 384 phoneStr = phoneStr.repeat(16 * 1024 * 1024); 403 phoneNum = phoneNum.repeat(1025); 422 phoneNum = phoneNum.repeat(1024); 477 illegalKey = illegalKey.repeat(1025); 496 legalKey = legalKey.repeat(1024);
|
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | border_image_edge.cpp | 20 const Dimension& width, BorderImageRepeat repeat) in BorderImageEdge() 22 borderImageWidth_(width), repeat_(repeat) in BorderImageEdge() 19 BorderImageEdge(const Dimension& slice, const Dimension& outset, const Dimension& width, BorderImageRepeat repeat) BorderImageEdge() argument
|
H A D | border_image_edge.h | 31 const Dimension& border_image_width, BorderImageRepeat repeat); 85 void SetBorderImageRepeat(BorderImageRepeat repeat) in SetBorderImageRepeat() argument 87 repeat_ = repeat; in SetBorderImageRepeat()
|
/foundation/resourceschedule/ffrt/src/sync/ |
H A D | poller.h | 67 TimerDataWithCb(void *dataVal, void (*cbVal)(void *), CPUEUTask *taskVal, bool repeat, uint64_t timeout) in TimerDataWithCb() 68 : data(dataVal), cb(cbVal), task(taskVal), repeat(repeat), timeout(timeout) in TimerDataWithCb() 75 bool repeat = false; member 105 int RegisterTimer(uint64_t timeout, void* data, ffrt_timer_cb cb, bool repeat = false) noexcept;
|
H A D | timer_api.cpp | 36 ffrt_timer_t ffrt_timer_start(ffrt_qos_t qos, uint64_t timeout, void* data, ffrt_timer_cb cb, bool repeat) in ffrt_timer_start() argument 48 int handle = ffrt::FFRTFacade::GetPPInstance().GetPoller(pollerQos).RegisterTimer(timeout, data, cb, repeat); in ffrt_timer_start()
|
/foundation/arkui/ace_engine/frameworks/core/gestures/ |
H A D | long_press_gesture.h | 35 int32_t fingers, bool repeat, int32_t duration, bool isForDrag = false, bool isDisableMouseLeft = false) in LongPressGesture() 36 : Gesture(fingers), repeat_(repeat), duration_(duration), isForDrag_(isForDrag), in LongPressGesture() 34 LongPressGesture( int32_t fingers, bool repeat, int32_t duration, bool isForDrag = false, bool isDisableMouseLeft = false) LongPressGesture() argument
|
H A D | long_press_recognizer.h | 42 LongPressRecognizer(const WeakPtr<PipelineBase>& context, int32_t duration, int32_t fingers, bool repeat, in LongPressRecognizer() argument 44 : context_(context), duration_(duration), repeat_(repeat), isForDrag_(isForDrag), in LongPressRecognizer()
|
/foundation/communication/dhcp/services/utils/include/ |
H A D | dhcp_system_timer.h | 33 DhcpSysTimer(bool repeat, uint64_t interval, bool isNoWakeUp, bool isIdle = false);
37 void SetRepeat(bool repeat) override;
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/gestures/ |
H A D | long_press_gesture.h | 35 int32_t fingers, bool repeat, int32_t duration, bool isForDrag = false, bool isDisableMouseLeft = false) in LongPressGesture() 36 : Gesture(fingers), repeat_(repeat), duration_(duration), isForDrag_(isForDrag), in LongPressGesture() 34 LongPressGesture( int32_t fingers, bool repeat, int32_t duration, bool isForDrag = false, bool isDisableMouseLeft = false) LongPressGesture() argument
|
/foundation/arkui/ace_engine/test/tools/event_tree_to_graph/src/beans/ |
H A D | event_node.py | 44 repeat = None variable in EventNode 84 self.repeat = get_value_as_int(frame_node_str, get_sample_key(event_procedure_keyword, 'repeat'), 85 get_sample_separator_count(event_procedure_keyword, 'repeat')) 139 if self.repeat is not None: 140 result_str += ',' + ' repeat: ' + str(self.repeat)
|
/foundation/distributeddatamgr/kv_store/interfaces/innerkits/distributeddata/include/ |
H A D | priority_queue.h | 98 auto [repeat, time] = updater(index->second->second.task_); in Update() 108 auto [repeat, time] = updater((*running).second.task_); in Update() 109 return repeat; in Update() 151 auto [repeat, time] = updater_(it->second.task_); in Finish() 152 if (repeat) { in Finish()
|
/foundation/arkui/ui_lite/interfaces/kits/animator/ |
H A D | animator.h | 127 * @param repeat Specifies whether to repeat this animator. <b>true</b> indicates the animator is repeated, 132 Animator(AnimatorCallback* callback, UIView* view, uint32_t time, bool repeat) in Animator() argument 133 : callback_(callback), view_(view), state_(STOP), period_(time), repeat_(repeat), runTime_(0), lastRunTime_(0) in Animator()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/ |
H A D | rs_animation_trace_utils.cpp | 144 const int animationDelay, const int animationDur, const int repeat) const in addAnimationCreateTrace() 151 "startValue[%s], endValue[%s], delay %d, dur %d repeat %d", in addAnimationCreateTrace() 153 endStr.c_str(), animationDelay, animationDur, repeat); in addAnimationCreateTrace() 159 const std::shared_ptr<RSRenderPropertyBase>& value, const int64_t time, const int dur, const int repeat) const in addAnimationFrameTrace() 164 "time[%lld], dur[%d], repeat[%d]", nodeId, nodeName.c_str(), propertyId, animationId, fraction, in addAnimationFrameTrace() 165 propertyValue.c_str(), time, dur, repeat); in addAnimationFrameTrace()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/ |
H A D | rs_animation_trace_utils.h | 37 const int animationDelay, const int animationDur, const int repeat) const; 41 const int64_t time, const int dur, const int repeat) const;
|
/foundation/multimodalinput/input/frameworks/proxy/events/src/ |
H A D | key_option.cpp | 83 void KeyOption::SetRepeat(bool repeat) in SetRepeat() argument 85 isRepeat_ = repeat; in SetRepeat()
|
/foundation/resourceschedule/ffrt/src/eu/ |
H A D | loop.cpp | 92 ffrt_timer_t Loop::TimerStart(uint64_t timeout, void* data, ffrt_timer_cb cb, bool repeat) in TimerStart() argument 94 return poller_.RegisterTimer(timeout, data, cb, repeat); in TimerStart()
|
H A D | loop_api.cpp | 77 ffrt_timer_t ffrt_loop_timer_start(ffrt_loop_t loop, uint64_t timeout, void* data, ffrt_timer_cb cb, bool repeat) in ffrt_loop_timer_start() argument 81 return innerLoop->TimerStart(timeout, data, cb, repeat); in ffrt_loop_timer_start()
|