Home
last modified time | relevance | path

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

123456

/freebsd-13.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-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A 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-13.1/sys/netgraph/
H A Dng_async.c77 hook_p async; /* Asynchronous side */ member
168 NETGRAPH_INIT(async, &typestruct);
215 hookp = &sc->async; in nga_newhook()
246 if (hook == sc->async) in nga_rcvdata()
359 if (hook == sc->async) in nga_disconnect()
360 hookp = &sc->async; in nga_disconnect()
413 NG_FWD_ITEM_HOOK(error, item, sc->async ); in nga_rcv_sync()
480 NG_FWD_NEW_DATA(error, item, sc->async, m); in nga_rcv_sync()
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A 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-13.1/sys/contrib/device-tree/Bindings/infiniband/
H A Dhisilicon-hns-roce.txt22 - interrupts: should contain 32 completion event irq,1 async event irq
26 - hns-roce-async: 1 async event irq
106 "hns-roce-async",
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A 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()
H A 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-13.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-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBAttachInfo.i22 SBAttachInfo (const char *path, bool wait_for, bool async);
45 SetWaitForLaunch (bool b, bool async);
/freebsd-13.1/sys/contrib/device-tree/Bindings/gpio/
H A Dgpio-eic-sprd.txt6 controller contains 4 sub-modules: EIC-debounce, EIC-latch, EIC-async and
23 The EIC-async sub-module uses a 32kHz clock to capture the short signals
34 "sprd,sc9860-eic-async",
69 compatible = "sprd,sc9860-eic-async";
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBAttachInfo.h59 SBAttachInfo(const char *path, bool wait_for, bool async);
108 void SetWaitForLaunch(bool b, bool async);
/freebsd-13.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-13.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-13.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-13.1/crypto/openssl/crypto/
H A 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-13.1/sys/dev/sound/midi/
H A Dmidi.c123 struct proc *async; member
567 if (m->async) { in midi_in()
568 PROC_LOCK(m->async); in midi_in()
569 kern_psignal(m->async, SIGIO); in midi_in()
570 PROC_UNLOCK(m->async); in midi_in()
609 if (m->async) { in midi_out()
610 PROC_LOCK(m->async); in midi_out()
611 kern_psignal(m->async, SIGIO); in midi_out()
612 PROC_UNLOCK(m->async); in midi_out()
658 m->async = 0; in midi_open()
/freebsd-13.1/crypto/openssl/include/crypto/
H A Dcryptlib.h15 int async; member
/freebsd-13.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-13.1/contrib/unbound/libunbound/
H A Dcontext.c159 q->async = (cb != NULL || cb_event != NULL); in context_new()
179 if(q->async) in context_new()
263 q->async = 1; in context_deserialize_new_query()
298 log_assert(q->async); in context_lookup_new_query()
/freebsd-13.1/sys/contrib/device-tree/Bindings/memory-controllers/
H A Dmediatek,smi-common.txt13 base). Besides that, the smi async clock should be prepared and enabled for
34 - "async" : asynchronous clock, it help transform the smi clock into the emi
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolFile.cpp150 assert(std::async(std::launch::async, in AssertModuleLock()

123456