/foundation/multimodalinput/input/service/event_handler/include/ |
H A D | key_auto_repeat.h | 44 int32_t SetKeyboardRepeatDelay(int32_t delay); 46 int32_t GetKeyboardRepeatDelay(int32_t &delay);
|
/foundation/multimodalinput/input/frameworks/proxy/events/src/ |
H A D | key_option.cpp | 73 void KeyOption::SetFinalKeyUpDelay(int32_t delay) in SetFinalKeyUpDelay() argument 75 finalKeyUpDelay_ = delay; in SetFinalKeyUpDelay()
|
/foundation/communication/dsoftbus/tests/core/bus_center/service/unittest/ |
H A D | bus_center_manager_deps_mock.cpp | 105 void SoftBusRunPeriodicalTask(const char *name, void (*task)(void), uint64_t interval, uint64_t delay) in SoftBusRunPeriodicalTask() argument 107 return GetBusCenterManagerDepsInterface()->SoftBusRunPeriodicalTask(name, task, interval, delay); in SoftBusRunPeriodicalTask()
|
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/ |
H A D | task_executor.cpp | 41 TaskExecutor::TaskId TaskExecutor::Schedule(Duration delay, const Task &task, Duration interval, uint64_t times) in Schedule() argument 49 return pool_->Schedule(task, delay, interval, times); in Schedule()
|
/kernel/linux/linux-5.10/arch/arm/mach-omap1/ |
H A D | sram.S | 45 delay: sub r4, r4, #1 label 47 bne delay
|
/kernel/linux/linux-5.10/arch/mips/loongson2ef/lemote-2f/ |
H A D | reset.c | 11 #include <linux/delay.h> 106 delay(); in ml2f_shutdown()
|
/kernel/linux/linux-6.6/arch/arm/mach-omap1/ |
H A D | sram.S | 45 delay: sub r4, r4, #1 label 47 bne delay
|
/kernel/linux/linux-6.6/arch/mips/loongson2ef/lemote-2f/ |
H A D | reset.c | 11 #include <linux/delay.h> 106 delay(); in ml2f_shutdown()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/ |
H A D | intel_engine_pm.h | 62 unsigned long delay) in intel_engine_pm_put_delay() 64 intel_wakeref_put_delay(&engine->wakeref, delay); in intel_engine_pm_put_delay() 61 intel_engine_pm_put_delay(struct intel_engine_cs *engine, unsigned long delay) intel_engine_pm_put_delay() argument
|
/kernel/linux/linux-6.6/net/batman-adv/ |
H A D | send.h | 44 unsigned long delay, 48 unsigned long delay,
|
/third_party/jerryscript/targets/particle/source/ |
H A D | main.cpp | 56 Serial.println ("Wrong arguments count in 'test.delay' function."); in js_delay() 62 delay (millisec); in js_delay() 88 prop_name = jerry_create_string ((const jerry_char_t *) "delay"); in init_jerry() 112 test.delay(250); \ in test_jerry() 114 test.delay(250); \ in test_jerry() 130 delay (2000); in setup()
|
/third_party/python/Lib/asyncio/ |
H A D | staggered.py | 16 delay: typing.Optional[float], 28 fails (raises an exception), or when *delay* seconds has passed, the next 52 delay: amount of time, in seconds, between starting coroutines. If 84 # Wait for the previous task to finish, or for delay seconds 91 await tasks.wait_for(previous_failed.wait(), delay)
|
/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | animate_impl.cpp | 36 animateOption.delay = option->delay; in AnimateTo() 74 animateOption.delay = option->delay; in KeyframeAnimateTo() 107 animatorOption->delay = option->delay; in ConvertAnimatorOption()
|
/kernel/linux/common_modules/tzdriver/core/ |
H A D | cmdmonitor.c | 20 #include <linux/delay.h> 74 unsigned long delay) in schedule_memstat_work() 76 schedule_delayed_work(work, delay); in schedule_memstat_work() 80 unsigned long delay) in schedule_cmd_monitor_work() 83 queue_delayed_work(g_cmd_monitor_wq, work, delay); in schedule_cmd_monitor_work() 85 schedule_delayed_work(work, delay); in schedule_cmd_monitor_work() 73 schedule_memstat_work(struct delayed_work *work, unsigned long delay) schedule_memstat_work() argument 79 schedule_cmd_monitor_work(struct delayed_work *work, unsigned long delay) schedule_cmd_monitor_work() argument
|
/kernel/linux/linux-5.10/arch/powerpc/platforms/pseries/ |
H A D | cmm.c | 10 #include <linux/delay.h> 47 static unsigned int delay = CMM_DEFAULT_DELAY; variable 62 module_param_named(delay, delay, uint, 0644); 63 MODULE_PARM_DESC(delay, "Delay (in seconds) between polls to query hypervisor paging requests. " 298 timeleft = msleep_interruptible(delay * 1000); in cmm_thread()
|
/kernel/linux/linux-6.6/arch/powerpc/platforms/pseries/ |
H A D | cmm.c | 10 #include <linux/delay.h> 44 static unsigned int delay = CMM_DEFAULT_DELAY; variable 59 module_param_named(delay, delay, uint, 0644); 60 MODULE_PARM_DESC(delay, "Delay (in seconds) between polls to query hypervisor paging requests. " 295 timeleft = msleep_interruptible(delay * 1000); in cmm_thread()
|
/kernel/linux/linux-5.10/tools/testing/selftests/kvm/ |
H A D | demand_paging_test.c | 114 useconds_t delay; member 122 useconds_t delay = uffd_args->delay; in uffd_handler_thread_fn() local 185 if (delay) in uffd_handler_thread_fn() 186 usleep(delay); in uffd_handler_thread_fn() 241 uffd_args->delay = uffd_delay; in setup_demand_paging() 399 printf(" -d: add a delay in usec to the User Fault\n" in help() 459 "A negative UFFD delay is not supported."); in main()
|
/kernel/linux/linux-5.10/drivers/ptp/ |
H A D | ptp_clock.c | 195 long delay; in ptp_aux_kworker() local 197 delay = info->do_aux_work(info); in ptp_aux_kworker() 199 if (delay >= 0) in ptp_aux_kworker() 200 kthread_queue_delayed_work(ptp->kworker, &ptp->aux_work, delay); in ptp_aux_kworker() 388 int ptp_schedule_worker(struct ptp_clock *ptp, unsigned long delay) in ptp_schedule_worker() argument 390 return kthread_mod_delayed_work(ptp->kworker, &ptp->aux_work, delay); in ptp_schedule_worker()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/microchip/lan966x/ |
H A D | lan966x_port.c | 28 u32 val, delay = 0; in lan966x_port_link_down() local 44 delay++; in lan966x_port_link_down() 45 if (delay == 2000) { in lan966x_port_link_down() 51 delay = 0; in lan966x_port_link_down() 108 delay++; in lan966x_port_link_down() 109 if (delay == 2000) { in lan966x_port_link_down()
|
/kernel/linux/linux-6.6/drivers/ptp/ |
H A D | ptp_clock.c | 196 long delay; in ptp_aux_kworker() local 198 delay = info->do_aux_work(info); in ptp_aux_kworker() 200 if (delay >= 0) in ptp_aux_kworker() 201 kthread_queue_delayed_work(ptp->kworker, &ptp->aux_work, delay); in ptp_aux_kworker() 443 int ptp_schedule_worker(struct ptp_clock *ptp, unsigned long delay) in ptp_schedule_worker() argument 445 return kthread_mod_delayed_work(ptp->kworker, &ptp->aux_work, delay); in ptp_schedule_worker()
|
/kernel/linux/linux-6.6/drivers/iommu/arm/arm-smmu/ |
H A D | arm-smmu-qcom.c | 8 #include <linux/delay.h> 25 unsigned int spin_cnt, delay; in qcom_smmu_tlb_sync() local 29 for (delay = 1; delay < TLB_LOOP_TIMEOUT; delay *= 2) { in qcom_smmu_tlb_sync() 36 udelay(delay); in qcom_smmu_tlb_sync()
|
/third_party/pulseaudio/src/tests/ |
H A D | resampler-rewind-test.c | 70 double delay; in calculate_resampler_history_bytes() local 80 /* Get the current internal delay of the resampler */ in calculate_resampler_history_bytes() 81 delay = pa_resampler_get_delay(r, false); in calculate_resampler_history_bytes() 87 /* If the delay is larger than the length of the history queue, we can only in calculate_resampler_history_bytes() 89 if ((size_t)delay >= history_max) { in calculate_resampler_history_bytes() 94 /* Initially set the history to 3 times the resampler delay. Use at least 2 ms. */ in calculate_resampler_history_bytes() 95 history_frames = (size_t)(delay * 3.0); in calculate_resampler_history_bytes() 101 /* If possible, use between 2 and 3 times the resampler delay */ in calculate_resampler_history_bytes() 102 if (remainder < (size_t)delay && history_frames - remainder <= history_max) in calculate_resampler_history_bytes() 105 /* Else, try above 3 times the delay */ in calculate_resampler_history_bytes() [all...] |
/kernel/linux/linux-5.10/drivers/infiniband/core/ |
H A D | sa_query.c | 841 unsigned long delay; in ib_nl_make_request() local 881 delay = msecs_to_jiffies(sa_local_svc_timeout_ms); in ib_nl_make_request() 882 query->timeout = delay + jiffies; in ib_nl_make_request() 886 queue_delayed_work(ib_nl_wq, &ib_nl_timed_work, delay); in ib_nl_make_request() 976 unsigned long delay; in ib_nl_request_timeout() local 986 delay = query->timeout - jiffies; in ib_nl_request_timeout() 987 if ((long)delay <= 0) in ib_nl_request_timeout() 988 delay = 1; in ib_nl_request_timeout() 989 queue_delayed_work(ib_nl_wq, &ib_nl_timed_work, delay); in ib_nl_request_timeout() 1019 long delay in ib_nl_handle_set_timeout() local 2143 unsigned long delay = update_ib_cpi() local 2308 unsigned long delay = ib_sa_event() local [all...] |
/kernel/linux/linux-5.10/drivers/net/phy/ |
H A D | phy_device.c | 13 #include <linux/delay.h> 2727 * phy_get_delay_index - returns the index of the internal delay 2731 * @size: the size of the delay array 2732 * @is_rx: boolean to indicate to get the rx internal delay 2734 * Returns the index within the array of internal delay passed in. 2736 * if the interface defines use of internal delay then a 1 is returned otherwise 2739 * array then size = 0 and the value of the delay property is returned. 2740 * Return -EINVAL if the delay is invalid or cannot be found. 2745 s32 delay; in phy_get_internal_delay() local 2749 delay in phy_get_internal_delay() [all...] |
/kernel/linux/linux-6.6/drivers/infiniband/core/ |
H A D | sa_query.c | 791 unsigned long delay; in ib_nl_make_request() local 831 delay = msecs_to_jiffies(sa_local_svc_timeout_ms); in ib_nl_make_request() 832 query->timeout = delay + jiffies; in ib_nl_make_request() 836 queue_delayed_work(ib_nl_wq, &ib_nl_timed_work, delay); in ib_nl_make_request() 953 unsigned long delay; in ib_nl_request_timeout() local 963 delay = query->timeout - jiffies; in ib_nl_request_timeout() 964 if ((long)delay <= 0) in ib_nl_request_timeout() 965 delay = 1; in ib_nl_request_timeout() 966 queue_delayed_work(ib_nl_wq, &ib_nl_timed_work, delay); in ib_nl_request_timeout() 996 long delay in ib_nl_handle_set_timeout() local 1973 unsigned long delay = update_ib_cpi() local 2138 unsigned long delay = ib_sa_event() local [all...] |