HomeSort by: relevance | last modified time | path
    Searched defs:wakeup (Results 1 - 18 of 18) sorted by relevancy

  /src/sys/arch/ia64/stand/ia64/ski/
sal_stub.c 49 struct sal_ap_wakeup_descriptor wakeup; member in struct:__anon1544
74 /* AP wakeup. */
76 5, /* Type=AP wakeup descr. */
79 255 /* Wakeup vector. */
  /src/games/hack/
hack.search.c 198 wakeup(struct monst *mtmp) function
  /src/sys/rump/librump/rumpkern/
ltsleep.c 86 * Calculate wakeup-time.
155 wakeup(wchan_t ident) function
  /src/external/bsd/am-utils/dist/amd/
sched.c 179 wakeup(wchan_t wchan) function
203 wakeup(wchan);
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
probe-srp.c 64 wakeup_t *wakeup; member in struct:probe_state
78 if (probe_state->wakeup != NULL) {
79 ioloop_wakeup_release(probe_state->wakeup);
108 if (probe_state->wakeup != NULL) {
109 ioloop_cancel_wake_event(probe_state->wakeup);
170 if (probe_state->wakeup != NULL) {
171 ioloop_cancel_wake_event(probe_state->wakeup);
211 if (probe_state->wakeup != NULL) {
212 ioloop_cancel_wake_event(probe_state->wakeup);
278 if (probe_state->wakeup == NULL)
    [all...]
ioloop.h 93 typedef struct wakeup wakeup_t;
150 struct wakeup { struct
154 wakeup_callback_t NULLABLE wakeup; member in struct:wakeup
277 #define ioloop_wakeup_retain(wakeup) ioloop_wakeup_retain_(wakeup, __FILE__, __LINE__)
278 void ioloop_wakeup_retain_(wakeup_t *NONNULL wakeup, const char *NONNULL file, int line);
279 #define ioloop_wakeup_release(wakeup) ioloop_wakeup_release_(wakeup, __FILE__, __LINE__)
283 void ioloop_wakeup_release_(wakeup_t *NONNULL wakeup, const char *NONNULL file, int line);
284 bool ioloop_add_wake_event(wakeup_t *NONNULL wakeup, void *NULLABLE context
    [all...]
macos-ioloop.c 95 wakeup_t *wakeup = context; local
96 void *wakeup_context = wakeup->context;
97 finalize_callback_t wakeup_finalize = wakeup->finalize;
98 wakeup->context = NULL;
99 wakeup->finalize = NULL;
102 ioloop_cancel_wake_event(wakeup);
105 wakeup->wakeup(wakeup_context);
117 wakeup_t *wakeup = context; local
118 if (wakeup->ref_count == 0)
    [all...]
srp-ioloop.c 83 wakeup_t *wakeup; member in struct:io_context
96 wakeup_t *wakeup; member in struct:srp_client
134 INFO("wakeup on context %p srp_context %p", io_context, io_context->srp_context);
139 INFO("wakeup with invalid context: %p", context);
152 if (io_context->wakeup != NULL) {
153 ioloop_cancel_wake_event(io_context->wakeup);
154 ioloop_wakeup_release(io_context->wakeup);
257 io_context->wakeup = ioloop_wakeup_create();
258 if (io_context->wakeup == NULL) {
278 ioloop_add_wake_event(io_context->wakeup, io_context, wakeup_callback, NULL, milliseconds)
    [all...]
ioloop.c 212 add_remove_wakeup(wakeup_t *wakeup, bool remove)
217 for (p_wakeups = &wakeups; *p_wakeups != NULL && *p_wakeups != wakeup; p_wakeups = &((*p_wakeups)->next))
220 void *wakeup_context = wakeup->context;
221 finalize_callback_t finalize = wakeup->finalize;
222 wakeup->context = NULL;
223 if (wakeup->finalize != NULL) {
224 wakeup->finalize = NULL;
228 *p_wakeups = wakeup->next;
229 wakeup->next = NULL;
233 *p_wakeups = wakeup;
242 wakeup_t *wakeup = context; local
327 wakeup_t *wakeup, **p_wakeup; local
    [all...]
route.h 86 // Wakeup event for next beacon.
89 // Wakeup event called after we're done sending solicits. At this point we delete all routes more than 10 minutes
93 // Wakeup event to trigger the next router solicit or neighbor solicit to be sent.
96 // Wakeup event to trigger the next router solicit to be sent.
99 // Wakeup event to deconfigure the on-link prefix after it is no longer valid.
103 // Wakeup event to detect that vicarious router discovery is complete
107 // Wakeup event to periodically notice whether routers we have heard previously on this interface have gone stale.
110 // Wakeup event to periodically probe routers for reachability
295 wakeup_t *NULLABLE wakeup; member in struct:icmp_message
dnssd-proxy.c 220 wakeup_t *wakeup; member in struct:dnssd_query
675 // wakeup timer.
776 if (query->wakeup != NULL) {
777 ioloop_wakeup_release(query->wakeup);
778 query->wakeup = NULL;
945 if (list_query->wakeup != NULL) {
946 ioloop_wakeup_release(list_query->wakeup);
947 list_query->wakeup = NULL;
991 if (query->wakeup != NULL) {
992 ioloop_wakeup_release(query->wakeup);
    [all...]
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/test/
test-api.c 47 wakeup_t *wakeup; member in struct:io_context
218 if (io_context->wakeup != NULL) {
219 ioloop_cancel_wake_event(io_context->wakeup);
220 ioloop_wakeup_release(io_context->wakeup);
243 if (io_context->wakeup != NULL) {
244 ioloop_cancel_wake_event(io_context->wakeup);
349 io_context->wakeup = ioloop_wakeup_create();
350 if (io_context->wakeup == NULL) {
364 INFO("wakeup on context %p srp_context %p", io_context, io_context->srp_context);
365 INFO("setting wakeup callback %p wakeup %p", io_context->wakeup_callback, io_context->wakeup)
    [all...]
  /src/sys/kern/
kern_synch.c 174 * General sleep call. Suspends the current LWP until a wakeup is
272 wakeup(wchan_t ident) function
  /src/lib/librumpuser/
rumpfiber.c 142 int64_t tm, wakeup; local
149 wakeup = tm + 1000; /* wake up in 1s max */
156 } else if (thread->wakeup_time < wakeup)
157 wakeup = thread->wakeup_time;
169 sl.tv_sec = (wakeup - tm) / 1000;
170 sl.tv_nsec = ((wakeup - tm) - 1000 * sl.tv_sec) * 1000000;
  /src/sys/arch/mips/rmi/
rmixl_firmware.h 74 uint64_t wakeup; member in struct:rmixlfw_info
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
dmu_tx.c 1110 hrtime_t wakeup, min_tx_time, now; local
1135 wakeup = MAX(tx->tx_start + min_tx_time,
1137 dp->dp_last_wakeup = wakeup;
1144 &curthread->t_delay_lock, wakeup, zfs_delay_resolution_ns,
1150 pause_sbt("dmu_tx_delay", wakeup * SBT_1NS,
1154 int timo = (wakeup - now) * hz / 1000000000;
1164 hrtime_t delta = wakeup - gethrtime();
  /src/sys/dev/
smbiosvar.h 173 uint8_t wakeup; member in struct:smbios_sys
  /src/sys/stand/efiboot/
smbios.h 168 uint8_t wakeup; member in struct:smbios_sys

Completed in 109 milliseconds