Home
last modified time | relevance | path

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

12345678

/freebsd/usr.sbin/ppp/
H A Dasync.c58 async_Init(struct async *async) in async_Init() argument
60 async_Setup(async); in async_Init()
61 memset(async->cfg.EscMap, '\0', sizeof async->cfg.EscMap); in async_Init()
65 async_Setup(struct async *async) in async_Setup() argument
68 async->length = 0; in async_Setup()
69 async->my_accmap = async->his_accmap = 0xffffffff; in async_Setup()
73 async_SetLinkParams(struct async *async, u_int32_t mymap, u_int32_t hismap) in async_SetLinkParams() argument
83 async_Encode(struct async *async, u_char **cp, u_char c, int proto) in async_Encode() argument
146 async_Decode(struct async *async, u_char c) in async_Decode() argument
158 mbuf_Write(bp, async->hbuff, async->length); in async_Decode()
[all …]
H A Dasync.h31 struct async { struct
49 extern void async_Init(struct async *); argument
50 extern void async_Setup(struct async *);
51 extern void async_SetLinkParams(struct async *, u_int32_t, u_int32_t);
H A Dphysical.h81 struct async async; /* Our async state */ member
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DThreadPool.h66 auto async(Function &&F, Args &&...ArgList) { in async() function
69 return async(std::move(Task)); in async()
74 auto async(ThreadPoolTaskGroup &Group, Function &&F, Args &&...ArgList) { in async() function
77 return async(Group, std::move(Task)); in async()
83 auto async(Func &&F) -> std::shared_future<decltype(F())> {
89 auto async(ThreadPoolTaskGroup &Group, Func &&F)
173 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl()
235 inline auto async(Function &&F, Args &&...ArgList) { in async() function
236 return Pool.async(*this, std::forward<Function>(F), in async()
/freebsd/sys/contrib/device-tree/Bindings/display/mediatek/
H A Dmediatek,ethdr.yaml61 - description: video frontend 0 async clock
62 - description: video frontend 1 async clock
63 - description: graphic frontend 0 async clock
64 - description: graphic frontend 1 async clock
65 - description: video backend async clock
89 - description: video frontend 0 async reset
90 - description: video frontend 1 async reset
91 - description: graphic frontend 0 async reset
92 - description: graphic frontend 1 async reset
93 - description: video backend async reset
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBAttachInfo.cpp41 SBAttachInfo::SBAttachInfo(const char *path, bool wait_for, bool async) in SBAttachInfo() argument
43 LLDB_INSTRUMENT_VA(this, path, wait_for, async); in SBAttachInfo()
48 m_opaque_sp->SetAsync(async); in SBAttachInfo()
136 void SBAttachInfo::SetWaitForLaunch(bool b, bool async) { in SetWaitForLaunch() argument
137 LLDB_INSTRUMENT_VA(this, b, async); in SetWaitForLaunch()
140 m_opaque_sp->SetAsync(async); in SetWaitForLaunch()
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dfuture.inc52 // [futures.async], function template async
53 using std::async;
/freebsd/sys/netgraph/
H A Dng_async.c75 hook_p async; /* Asynchronous side */ member
166 NETGRAPH_INIT(async, &typestruct);
213 hookp = &sc->async; in nga_newhook()
244 if (hook == sc->async) in nga_rcvdata()
357 if (hook == sc->async) in nga_disconnect()
358 hookp = &sc->async; in nga_disconnect()
411 NG_FWD_ITEM_HOOK(error, item, sc->async ); in nga_rcv_sync()
478 NG_FWD_NEW_DATA(error, item, sc->async, m); in nga_rcv_sync()
/freebsd/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/sys/contrib/device-tree/Bindings/gpio/
H A Dsprd,gpio-eic.yaml19 controller contains 4 sub-modules, i.e. EIC-debounce, EIC-latch, EIC-async and
36 The EIC-async sub-module uses a 32kHz clock to capture the short signals
49 - sprd,sc9860-eic-async
62 - sprd,ums512-eic-async
63 - const: sprd,sc9860-eic-async
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/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp110 task_group.async(extract_fn, i); in Index()
116 task_group.async(parser_fn, i); in Index()
127 task_group.async(finalize_fn, &IndexSet::function_basenames); in Index()
128 task_group.async(finalize_fn, &IndexSet::function_fullnames); in Index()
129 task_group.async(finalize_fn, &IndexSet::function_methods); in Index()
130 task_group.async(finalize_fn, &IndexSet::function_selectors); in Index()
131 task_group.async(finalize_fn, &IndexSet::objc_class_selectors); in Index()
132 task_group.async(finalize_fn, &IndexSet::globals); in Index()
133 task_group.async(finalize_fn, &IndexSet::types); in Index()
134 task_group.async(finalize_fn, &IndexSet::namespaces); in Index()
/freebsd/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/contrib/llvm-project/llvm/lib/Support/
H A DBalancedPartitioning.cpp29 void BalancedPartitioning::BPThreadPool::async(Func &&F) { in async() function in BalancedPartitioning::BPThreadPool
33 TheThreadPool.async([=]() { in async()
99 TP->async(std::move(BisectTask)); in run()
157 TP->async(std::move(LeftRecTask)); in bisect()
158 TP->async(std::move(RightRecTask)); in bisect()
/freebsd/sys/dev/iwm/
H A Dif_iwm_util.c180 int async, wantresp; in iwm_send_cmd() local
187 async = hcmd->flags & IWM_CMD_ASYNC; in iwm_send_cmd()
197 KASSERT(!async, ("invalid async parameter")); in iwm_send_cmd()
296 async ? " (async)" : ""); in iwm_send_cmd()
324 if (!async) { in iwm_send_cmd()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBAttachInfo.h63 SBAttachInfo(const char *path, bool wait_for, bool async);
112 void SetWaitForLaunch(bool b, bool async);
/freebsd/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 F<< <openssl/async.h> >> header is dependent on some
68 F<< <windows.h> >> prior to F<< <openssl/async.h> >>.
H A DASYNC_start_job.pod12 #include <openssl/async.h>
146 Some platforms cannot support async operations. The ASYNC_is_capable() function
147 can be used to detect whether the current platform is async capable or not.
165 ASYNC_is_capable() returns 1 if the current platform is async capable or 0
170 On Windows platforms the F<< <openssl/async.h> >> header is dependent on some
175 F<< <windows.h> >> prior to F<< <openssl/async.h> >>.
179 The following example demonstrates how to use most of the core async APIs:
186 #include <openssl/async.h>
/freebsd/sys/kern/
H A Dkern_devctl.c68 int async; member
238 devsoftc.async = 0; in devclose()
295 devsoftc.async = 1; in devioctl()
297 devsoftc.async = 0; in devioctl()
428 if (devsoftc.async && devsoftc.sigio != NULL) in devctl_queue()
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/
H A Dmediatek,smi-common.yaml24 base). Besides that, the smi async clock should be prepared and enabled for
61 apb and smi are mandatory. the async is only for generation 1 smi HW.
62 gals(global async local sync) also is optional, see below.
103 - const: async
/freebsd/usr.sbin/ypbind/
H A Dyp_ping.c211 int async; in __yp_ping() local
263 async = TRUE; in __yp_ping()
264 clnt_control(clnt, CLSET_ASYNC, (char *)&async); in __yp_ping()
/freebsd/tools/test/stress2/misc/
H A Dtvnlru.sh67 mount -o async /dev/md$mdstart $mntpoint
87 mount -o async /dev/md$mdstart $mntpoint
94 mount -o async /dev/md$mdstart $mntpoint
/freebsd/sys/dev/sound/midi/
H A Dmidi.c120 struct proc *async; member
564 if (m->async) { in midi_in()
565 PROC_LOCK(m->async); in midi_in()
566 kern_psignal(m->async, SIGIO); in midi_in()
567 PROC_UNLOCK(m->async); in midi_in()
606 if (m->async) { in midi_out()
607 PROC_LOCK(m->async); in midi_out()
608 kern_psignal(m->async, SIGIO); in midi_out()
609 PROC_UNLOCK(m->async); in midi_out()
655 m->async = 0; in midi_open()
/freebsd/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/contrib/unbound/libunbound/
H A Dcontext.c168 q->async = (cb != NULL || cb_event != NULL); in context_new()
188 if(q->async) in context_new()
272 q->async = 1; in context_deserialize_new_query()
307 log_assert(q->async); in context_lookup_new_query()

12345678