Home
last modified time | relevance | path

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

123456

/freebsd-12.1/usr.sbin/ppp/
H A 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
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
86 async_Encode(struct async *async, u_char **cp, u_char c, int proto) in async_Encode() argument
149 async_Decode(struct async *async, u_char c) in async_Decode() argument
161 mbuf_Write(bp, async->hbuff, async->length); in async_Decode()
[all …]
H A 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);
H A Dphysical.h83 struct async async; /* Our async state */ member
/freebsd-12.1/sys/netgraph/
H A 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.1/contrib/llvm/tools/lldb/source/API/
H A DSBAttachInfo.cpp33 SBAttachInfo::SBAttachInfo(const char *path, bool wait_for, bool async) in SBAttachInfo() argument
38 m_opaque_sp->SetAsync(async); in SBAttachInfo()
100 void SBAttachInfo::SetWaitForLaunch(bool b, bool async) { in SetWaitForLaunch() argument
102 m_opaque_sp->SetAsync(async); in SetWaitForLaunch()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DTaskQueue.h82 std::future<typename std::result_of<Callable()>::type> async(Callable &&C) { in async() function
98 Scheduler.async(std::move(T)); in async()
121 Scheduler.async(std::move(Continuation)); in completeTask()
H A DThreadPool.h55 inline std::shared_future<void> async(Function &&F, Args &&... ArgList) { in async() function
64 inline std::shared_future<void> async(Function &&F) { in async() function
/freebsd-12.1/contrib/netbsd-tests/kernel/
H A 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.1/crypto/openssl/doc/man3/
H A 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.
H A 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.
H A 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.1/sys/dev/iwm/
H A 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.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBAttachInfo.h64 SBAttachInfo(const char *path, bool wait_for, bool async);
117 void SetWaitForLaunch(bool b, bool async);
/freebsd-12.1/usr.sbin/ypbind/
H A 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.1/sys/dev/sound/midi/
H A 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.1/crypto/openssl/crypto/
H A Dinit.c308 static CRYPTO_ONCE async = CRYPTO_ONCE_STATIC_INIT; variable
425 if (locals->async) { in ossl_init_thread_stop()
475 locals->async = 1; in ossl_init_thread_start()
709 && !RUN_ONCE(&async, ossl_init_async)) in OPENSSL_init_crypto()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DSymbolFile.cpp166 assert(std::async(std::launch::async, in AssertModuleLock()
/freebsd-12.1/contrib/unbound/libunbound/
H A Dcontext.c152 q->async = (cb != NULL || cb_event != NULL); in context_new()
172 if(q->async) in context_new()
256 q->async = 1; in context_deserialize_new_query()
291 log_assert(q->async); in context_lookup_new_query()
/freebsd-12.1/crypto/openssl/crypto/include/internal/
H A Dcryptlib_int.h15 int async; member
/freebsd-12.1/crypto/openssl/crypto/async/
H A Dbuild.info3 async.c async_wait.c async_err.c arch/async_posix.c arch/async_win.c \
/freebsd-12.1/contrib/gdb/gdb/
H A 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.1/sys/modules/netgraph/
H A DMakefile7 SUBDIR= async \
/freebsd-12.1/sys/kern/
H A 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()
761 if (!async && maxclen == 0) { /* I/O not contiguous */ in cluster_write()
/freebsd-12.1/crypto/heimdal/lib/ipc/
H A Dclient.c483 int (*async)(void *, const heim_idata *, void *, member
561 if (ctx->ops->async == NULL) { in heim_ipc_async()
572 return (ctx->ops->async)(ctx->ctx, snd, userctx, func); in heim_ipc_async()
/freebsd-12.1/sbin/hastd/
H A Dtoken.l75 async { DP; return ASYNC; }

123456