Home
last modified time | relevance | path

Searched refs:async (Results 1 – 25 of 143) sorted by relevance

123456

/freebsd-12-stable/usr.sbin/ppp/
Dasync.c61 async_Init(struct async *async) in async_Init() argument
63 async_Setup(async); in async_Init()
64 memset(async->cfg.EscMap, '\0', sizeof async->cfg.EscMap); in async_Init()
68 async_Setup(struct async *async) in async_Setup() argument
70 async->mode = MODE_HUNT; in async_Setup()
71 async->length = 0; in async_Setup()
72 async->my_accmap = async->his_accmap = 0xffffffff; in async_Setup()
76 async_SetLinkParams(struct async *async, u_int32_t mymap, u_int32_t hismap) in async_SetLinkParams() argument
78 async->my_accmap = mymap; in async_SetLinkParams()
79 async->his_accmap = hismap | mymap; in async_SetLinkParams()
[all …]
Dasync.h33 struct async { struct
51 extern void async_Init(struct async *); argument
52 extern void async_Setup(struct async *);
53 extern void async_SetLinkParams(struct async *, u_int32_t, u_int32_t);
Dphysical.h83 struct async async; /* Our async state */ member
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DManualDWARFIndex.cpp101 pool.async(extract_fn, i); in Index()
107 pool.async(parser_fn, i); in Index()
118 pool.async(finalize_fn, &IndexSet::function_basenames); in Index()
119 pool.async(finalize_fn, &IndexSet::function_fullnames); in Index()
120 pool.async(finalize_fn, &IndexSet::function_methods); in Index()
121 pool.async(finalize_fn, &IndexSet::function_selectors); in Index()
122 pool.async(finalize_fn, &IndexSet::objc_class_selectors); in Index()
123 pool.async(finalize_fn, &IndexSet::globals); in Index()
124 pool.async(finalize_fn, &IndexSet::types); in Index()
125 pool.async(finalize_fn, &IndexSet::namespaces); in Index()
/freebsd-12-stable/sys/netgraph/
Dng_async.c78 hook_p async; /* Asynchronous side */ member
169 NETGRAPH_INIT(async, &typestruct);
216 hookp = &sc->async; in nga_newhook()
247 if (hook == sc->async) in nga_rcvdata()
360 if (hook == sc->async) in nga_disconnect()
361 hookp = &sc->async; in nga_disconnect()
415 NG_FWD_ITEM_HOOK(error, item, sc->async ); in nga_rcv_sync()
482 NG_FWD_NEW_DATA(error, item, sc->async, m); in nga_rcv_sync()
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
DSBAttachInfo.cpp39 SBAttachInfo::SBAttachInfo(const char *path, bool wait_for, bool async) in SBAttachInfo() argument
42 wait_for, async); in SBAttachInfo()
47 m_opaque_sp->SetAsync(async); in SBAttachInfo()
138 void SBAttachInfo::SetWaitForLaunch(bool b, bool async) { in SetWaitForLaunch() argument
140 async); in SetWaitForLaunch()
143 m_opaque_sp->SetAsync(async); in SetWaitForLaunch()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
DTaskQueue.h81 std::future<std::result_of_t<Callable()>> async(Callable &&C) { in async() function
97 Scheduler.async(std::move(T)); in async()
120 Scheduler.async(std::move(Continuation)); in completeTask()
DThreadPool.h54 inline std::shared_future<void> async(Function &&F, Args &&... ArgList) { in async() function
63 inline std::shared_future<void> async(Function &&F) { in async() function
/freebsd-12-stable/contrib/netbsd-tests/kernel/
Dt_umountstress.sh60 atf_check -o ignore -e ignore mount -o async ${BVND}${MPART} ${TMPMP}
145 atf_check -o ignore -e ignore mount -o async ${BVND}${MPART} ${TMPMP}
164 if ! mount -o async ${BVND}${MPART} ${TMPMP}; then
/freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/
DSBAttachInfo.i22 SBAttachInfo (const char *path, bool wait_for, bool async);
45 SetWaitForLaunch (bool b, bool async);
/freebsd-12-stable/crypto/openssl/doc/man3/
DSSL_get_all_async_fds.pod14 #include <openssl/async.h>
56 for an async operation to complete and 0 otherwise.
63 On Windows platforms the openssl/async.h header is dependent on some
68 windows.h prior to async.h.
DASYNC_WAIT_CTX_new.pod12 #include <openssl/async.h>
69 Implementors of async aware code (e.g. engines) are encouraged to return a
86 these functions requires a B<key> value which is unique to the async aware
96 An example of typical usage might be an async capable engine. User code would
117 On Windows platforms the openssl/async.h header is dependent on some
122 windows.h prior to async.h.
DASYNC_start_job.pod12 #include <openssl/async.h>
117 An example of typical usage might be an async capable engine. User code would
142 Some platforms cannot support async operations. The ASYNC_is_capable() function
143 can be used to detect whether the current platform is async capable or not.
161 ASYNC_is_capable() returns 1 if the current platform is async capable or 0
166 On Windows platforms the openssl/async.h header is dependent on some
171 windows.h prior to async.h.
175 The following example demonstrates how to use most of the core async APIs:
182 #include <openssl/async.h>
/freebsd-12-stable/sys/dev/iwm/
Dif_iwm_util.c182 int async, wantresp; in iwm_send_cmd() local
189 async = hcmd->flags & IWM_CMD_ASYNC; in iwm_send_cmd()
199 KASSERT(!async, ("invalid async parameter")); in iwm_send_cmd()
298 async ? " (async)" : ""); in iwm_send_cmd()
326 if (!async) { in iwm_send_cmd()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/
DSBAttachInfo.h59 SBAttachInfo(const char *path, bool wait_for, bool async);
108 void SetWaitForLaunch(bool b, bool async);
/freebsd-12-stable/usr.sbin/ypbind/
Dyp_ping.c220 int async; in __yp_ping() local
272 async = TRUE; in __yp_ping()
273 clnt_control(clnt, CLSET_ASYNC, (char *)&async); in __yp_ping()
/freebsd-12-stable/sys/dev/sound/midi/
Dmidi.c123 struct proc *async; member
570 if (m->async) { in midi_in()
571 PROC_LOCK(m->async); in midi_in()
572 kern_psignal(m->async, SIGIO); in midi_in()
573 PROC_UNLOCK(m->async); in midi_in()
612 if (m->async) { in midi_out()
613 PROC_LOCK(m->async); in midi_out()
614 kern_psignal(m->async, SIGIO); in midi_out()
615 PROC_UNLOCK(m->async); in midi_out()
662 m->async = 0; in midi_open()
/freebsd-12-stable/crypto/openssl/crypto/
Dinit.c307 static CRYPTO_ONCE async = CRYPTO_ONCE_STATIC_INIT; variable
424 if (locals->async) { in ossl_init_thread_stop()
474 locals->async = 1; in ossl_init_thread_start()
700 && !RUN_ONCE(&async, ossl_init_async)) in OPENSSL_init_crypto()
/freebsd-12-stable/contrib/unbound/libunbound/
Dcontext.c160 q->async = (cb != NULL || cb_event != NULL); in context_new()
180 if(q->async) in context_new()
264 q->async = 1; in context_deserialize_new_query()
299 log_assert(q->async); in context_lookup_new_query()
/freebsd-12-stable/crypto/openssl/include/crypto/
Dcryptlib.h15 int async; member
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
DSymbolFile.cpp150 assert(std::async(std::launch::async, in AssertModuleLock()
/freebsd-12-stable/crypto/openssl/crypto/async/
Dbuild.info3 async.c async_wait.c async_err.c arch/async_posix.c arch/async_win.c \
/freebsd-12-stable/contrib/gdb/gdb/
Dserial.c480 return (scb->ops->async != NULL); in serial_can_async_p()
486 return (scb->ops->async != NULL) && (scb->async_handler != NULL); in serial_is_async_p()
497 scb->ops->async (scb, handler != NULL); in serial_async()
/freebsd-12-stable/sys/modules/netgraph/
DMakefile7 SUBDIR= async \
/freebsd-12-stable/sys/kern/
Dvfs_cluster.c658 int async; in cluster_write() local
664 async = DOINGASYNC(vp); in cluster_write()
667 async = 0; in cluster_write()
700 if (!async && seqcount > 0) { in cluster_write()
769 if (!async && maxclen == 0) { /* I/O not contiguous */ in cluster_write()

123456