HomeSort by: relevance | last modified time | path
    Searched defs:async (Results 1 - 25 of 87) sorted by relevancy

1 2 3 4

  /src/tests/kernel/
t_unmount.c 50 ATF_TC(async); variable
51 ATF_TC_HEAD(async, tc)
54 "descr", "failed unmount of async fs should stay async");
59 ATF_TC_BODY(async, tc)
103 ATF_TP_ADD_TC(tp, async);
  /src/external/mit/libuv/dist/test/
test-embed.c 32 static uv_async_t async; variable
39 ASSERT_OK(uv_async_send(&async));
53 ASSERT_OK(uv_async_init(loop, &async, async_cb));
test-async.c 31 static uv_async_t async; variable
51 r = uv_async_send(&async);
60 * That never happens here: the pipe that is associated with the async
81 ASSERT_PTR_EQ(handle, &async);
88 uv_close((uv_handle_t*)&async, close_cb);
108 TEST_IMPL(async) {
120 r = uv_async_init(uv_default_loop(), &async, async_cb);
  /src/crypto/external/bsd/openssl.old/dist/include/crypto/
cryptlib.h 15 int async; member in struct:thread_local_inits_st
  /src/external/mit/libuv/dist/docs/code/progress/
main.c 8 uv_async_t async; variable
17 async.data = (void*) &percentage;
18 uv_async_send(&async);
28 uv_close((uv_handle_t*) &async, NULL);
43 uv_async_init(loop, &async, print_progress);
  /src/sys/dev/wscons/
wseventvar.h 88 int async; /* send SIGIO on input ready */ member in struct:wseventvar
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ThreadPool.h 54 inline std::shared_future<void> async(Function &&F, Args &&... ArgList) { function in class:llvm::ThreadPool
63 inline std::shared_future<void> async(Function &&F) { function in class:llvm::ThreadPool
TaskQueue.h 81 std::future<std::result_of_t<Callable()>> async(Callable &&C) { function in class:llvm::TaskQueue
97 Scheduler.async(std::move(T));
120 Scheduler.async(std::move(Continuation));
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/falcon/
qmgr.h 33 bool async; member in struct:nvkm_falcon_qmgr_seq
  /src/sys/ufs/ext2fs/
ext2fs_readwrite.c 274 bool async; local
302 async = vp->v_mount->mnt_flag & MNT_ASYNC;
335 * XXXUBC simplistic async flushing.
338 if (!async && oldoff >> fshift != uio->uio_offset >> fshift) {
  /src/external/gpl3/gcc/dist/libgomp/
oacc-parallel.c 115 int async = GOMP_ASYNC_SYNC; local
144 prof_info.async = async;
145 prof_info.async_queue = prof_info.async;
232 async = GOMP_LAUNCH_OP (tag);
234 if (async == GOMP_LAUNCH_OP_MAX)
235 async = va_arg (ap, unsigned);
239 prof_info.async = async;
240 prof_info.async_queue = prof_info.async;
    [all...]
  /src/external/gpl3/gcc.old/dist/libgomp/
oacc-parallel.c 117 int async = GOMP_ASYNC_SYNC; local
146 prof_info.async = async;
147 prof_info.async_queue = prof_info.async;
231 async = GOMP_LAUNCH_OP (tag);
233 if (async == GOMP_LAUNCH_OP_MAX)
234 async = va_arg (ap, unsigned);
238 prof_info.async = async;
239 prof_info.async_queue = prof_info.async;
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/hooks/driver/
test-async.c 1 /* $NetBSD: test-async.c,v 1.4 2026/01/29 18:36:57 christos Exp $ */
24 #include <isc/async.h>
55 bool async; member in struct:state
133 "registering 'test-async' module from %s:%lu", cfg_file,
214 *state = (state_t){ .async = false };
315 if (state->async) {
317 state->async = false;
322 state->async = true;
  /src/external/gpl3/gdb.old/dist/gdb/
ui.h 99 /* True if the UI is in async mode, false if in sync mode. If in
101 return until the command is finished. If in async mode, then
107 int async = 0; member in struct:ui
serial.h 53 be cancelled. An async interface for open could be added to GDB if
212 /* For ASYNC enabled devices, register a callback and enable
254 int async_state; /* Async internal state. */
255 void *async_context; /* Async event thread's context */
256 serial_event_ftype *async_handler;/* Async event handler */
288 void (*async) (struct serial *scb, int async_p); member in struct:serial_ops
  /src/external/gpl3/gdb/dist/gdb/
ui.h 99 /* True if the UI is in async mode, false if in sync mode. If in
101 return until the command is finished. If in async mode, then
107 int async = 0; member in struct:ui
serial.h 53 be cancelled. An async interface for open could be added to GDB if
213 /* For ASYNC enabled devices, register a callback and enable
255 int async_state; /* Async internal state. */
256 void *async_context; /* Async event thread's context */
257 serial_event_ftype *async_handler;/* Async event handler */
289 void (*async) (struct serial *scb, int async_p); member in struct:serial_ops
  /src/sys/dev/
sequencervar.h 91 pid_t async; /* process who wants audio SIGIO */ member in struct:sequencer_softc
  /src/sys/fs/msdosfs/
msdosfs_lookup.c 570 int async = ddep->de_pmp->pm_mountp->mnt_flag & MNT_ASYNC; local
572 #define async 0 macro
642 if (async)
673 if (async)
735 if (async)
760 if (async)
900 int async = pdep->de_pmp->pm_mountp->mnt_flag & MNT_ASYNC; local
902 #define async 0 macro
962 if (async)
  /src/sys/rump/librump/rumpvfs/
rumpblk.c 227 "rumpblk", "async I/O");
234 "rumpblk", "bytes written async");
494 int async = bp->b_flags & B_ASYNC; local
504 if (async)
508 if (async)
549 off, off, (off + bp->b_bcount), async ? "a" : ""));
552 if (BUF_ISWRITE(bp) && !async)
  /src/sys/ufs/lfs/
ulfs_readwrite.c 243 bool async; local
272 async = vp->v_mount->mnt_flag & MNT_ASYNC;
280 async = true;
393 * XXXUBC simplistic async flushing.
396 __USE(async);
  /src/sys/ufs/ufs/
ufs_readwrite.c 252 bool async; local
282 async = vp->v_mount->mnt_flag & MNT_ASYNC;
432 * XXXUBC simplistic async flushing.
435 if (!async && oldoff >> fshift != uio->uio_offset >> fshift) {
  /src/crypto/external/bsd/openssl/dist/crypto/
init.c 21 #include "crypto/async.h"
271 static CRYPTO_ONCE async = CRYPTO_ONCE_STATIC_INIT; variable
607 && !RUN_ONCE(&async, ossl_init_async))
  /src/crypto/external/bsd/openssl.old/dist/crypto/
init.c 18 #include "crypto/async.h"
307 static CRYPTO_ONCE async = CRYPTO_ONCE_STATIC_INIT; variable
424 if (locals->async) {
472 "marking thread for async\n");
474 locals->async = 1;
700 && !RUN_ONCE(&async, ossl_init_async))
826 * OPENSSL_fork_child, you MUST MAKE SURE that they are async-signal-
  /src/external/bsd/unbound/dist/libunbound/
context.h 61 * Contains two pipes for async service
62 * qq : write queries to the async service pid/tid.
63 * rr : read results from the async service pid/tid.
99 /** do threading (instead of forking) for async resolution */
136 /** number of async queries outstanding */
140 * Used when results come in for async to lookup.
150 * These are outstanding for async resolution.
159 /** was this an async query? */
160 int async; member in struct:ctx_query
164 /** for async query, the callback function of type ub_callback_type *
    [all...]

Completed in 50 milliseconds

1 2 3 4