HomeSort by: relevance | last modified time | path
    Searched refs:wakeup_time (Results 1 - 14 of 14) sorted by relevancy

  /src/external/ibm-public/postfix/dist/src/master/
master_wakeup.c 96 if (serv->wakeup_time == 0)
162 serv->wakeup_time);
171 if (serv->wakeup_time == 0 || (serv->flags & MASTER_FLAG_CONDWAKE))
175 myname, serv->name, serv->wakeup_time);
master_conf.c 142 serv->wakeup_time = entry->wakeup_time;
master.h 35 int wakeup_time; /* wakeup interval */ member in struct:MASTER_SERV
master_ent.c 510 serv->wakeup_time = get_int_ent(&bufp, "wakeup_time", "0", 0);
516 if (serv->wakeup_time > 0 && bufp[*bufp ? -2 : -1] == '?')
620 msg_info("wakeup: %d", serv->wakeup_time);
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
background_thread_inlines.h 36 uint64_t wakeup_time) {
39 wakeup_time == BACKGROUND_THREAD_INDEFINITE_SLEEP, ATOMIC_RELEASE);
40 nstime_init(&info->next_wakeup, wakeup_time);
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
background_thread_inlines.h 36 uint64_t wakeup_time) {
39 wakeup_time == BACKGROUND_THREAD_INDEFINITE_SLEEP, ATOMIC_RELEASE);
40 nstime_init(&info->next_wakeup, wakeup_time);
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
background_thread_inlines.h 46 tsdn_t *tsdn, background_thread_info_t *info, uint64_t wakeup_time) {
49 wakeup_time == BACKGROUND_THREAD_INDEFINITE_SLEEP, ATOMIC_RELEASE);
50 nstime_init(&info->next_wakeup, wakeup_time);
  /src/external/bsd/jemalloc/include/jemalloc/internal/
background_thread_inlines.h 46 tsdn_t *tsdn, background_thread_info_t *info, uint64_t wakeup_time) {
49 wakeup_time == BACKGROUND_THREAD_INDEFINITE_SLEEP, ATOMIC_RELEASE);
50 nstime_init(&info->next_wakeup, wakeup_time);
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
srp-thread.c 59 HAPTime wakeup_time; member in struct:io_context
130 if (next == 0 || (io_context->wakeup_time != 0 && io_context->wakeup_time < next)) {
131 next = io_context->wakeup_time;
165 if (io_context->wakeup_time != 0 && io_context->wakeup_time < now) {
167 note_wakeup("io wakeup", io_context, io_context->wakeup_time);
168 io_context->wakeup_time = 0;
172 note_wakeup("no wakeup", io_context, io_context->wakeup_time);
173 if (next == 0 || (io_context->wakeup_time != 0 && io_context->wakeup_time < next)
    [all...]
ioloop.c 285 wakeup->wakeup_time = ioloop_timenow() + milliseconds;
296 wakeup->wakeup_time = 0;
365 if (wakeup->wakeup_time != 0) {
366 if (wakeup->wakeup_time <= ioloop_now) {
368 wakeup->wakeup_time = 0;
388 if (wakeup->wakeup_time < next_event && wakeup->wakeup_time != 0) {
389 next_event = wakeup->wakeup_time;
ioloop.h 159 int64_t wakeup_time; member in struct:wakeup
  /src/lib/librumpuser/
rumpfiber.h 40 int64_t wakeup_time; member in struct:thread
rumpfiber.c 152 if (!is_runnable(thread) && thread->wakeup_time >= 0) {
153 if (thread->wakeup_time <= tm) {
156 } else if (thread->wakeup_time < wakeup)
157 wakeup = thread->wakeup_time;
235 thread->wakeup_time = -1;
329 thread->wakeup_time = now() + millisecs;
338 thread->wakeup_time = millisecs;
353 thread->wakeup_time = now() + (millisecs - real_now);
366 thread->wakeup_time = -1;
373 thread->wakeup_time = -1
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_bios.c 915 u32 wakeup_time = psr->psr2_tp2_tp3_wakeup_time; local
917 wakeup_time = (wakeup_time >> (2 * panel_type)) & 0x3;
918 switch (wakeup_time) {
920 wakeup_time = 500;
923 wakeup_time = 100;
926 wakeup_time = 50;
930 wakeup_time = 2500;
933 dev_priv->vbt.psr.psr2_tp2_tp3_wakeup_time_us = wakeup_time;

Completed in 64 milliseconds