Home
last modified time | relevance | path

Searched refs:async (Results 1 – 25 of 185) 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
67 async->mode = MODE_HUNT; in async_Setup()
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
75 async->my_accmap = mymap; in async_SetLinkParams()
76 async->his_accmap = hismap | mymap; in async_SetLinkParams()
[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.h79 auto async(Function &&F, Args &&...ArgList) { in async() function
82 return async(std::move(Task)); in async()
87 auto async(ThreadPoolTaskGroup &Group, Function &&F, Args &&...ArgList) { in async() function
90 return async(Group, std::move(Task)); in async()
96 auto async(Func &&F) -> std::shared_future<decltype(F())> {
102 auto async(ThreadPoolTaskGroup &Group, Func &&F)
114 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl()
276 inline auto async(Function &&F, Args &&...ArgList) { in async() function
277 return Pool.async(*this, std::forward<Function>(F), in async()
/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/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/contrib/llvm-project/libcxx/modules/std/
H A Dfuture.inc52 // [futures.async], function template async
53 using std::async;
H A Dfuture.cppm
/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/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.cpp30 void BalancedPartitioning::BPThreadPool::async(Func &&F) { in async() function in BalancedPartitioning::BPThreadPool
34 TheThreadPool.async([this, F]() { in async()
100 TP->async(std::move(BisectTask)); in run()
159 TP->async(std::move(LeftRecTask)); in bisect()
160 TP->async(std::move(RightRecTask)); in bisect()
/freebsd/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/sys/contrib/openzfs/lib/libzpool/
H A Dkernel.c483 zvol_remove_minors(spa_t *spa, const char *name, boolean_t async) in zvol_remove_minors() argument
485 (void) spa, (void) name, (void) async; in zvol_remove_minors()
490 boolean_t async) in zvol_rename_minors() argument
492 (void) spa, (void) oldname, (void) newname, (void) async; in zvol_rename_minors()
/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/sys/contrib/openzfs/tests/zfs-tests/tests/functional/events/
H A Dzed_synchronous_zedlet.ksh83 cat << EOF > $ZEDLET_DIR/scrub_start-async.sh
100 cat << EOF > $ZEDLET_DIR/trim_start-async.sh
/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> >>.
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBAttachInfo.h44 /// asynchronous depending on the \a async argument.
53 /// \param[in] async
63 SBAttachInfo(const char *path, bool wait_for, bool async);
96 /// asynchronous depending on the \a async argument.
102 /// \param[in] async
112 void SetWaitForLaunch(bool b, bool async);
/freebsd/sys/contrib/zstd/programs/
H A Dfileio_asyncio.h150 void AIO_WritePool_setAsync(WritePoolCtx_t* ctx, int async);
165 void AIO_ReadPool_setAsync(ReadPoolCtx_t* ctx, int async);
/freebsd/sys/dev/nvme/
H A Dnvme_if.m51 const struct nvme_completion *cpl; /* Completion for this async event */
52 uint32_t pg_nr; /* Page number reported by async event */
/freebsd/sys/kern/
H A Dkern_devctl.c68 int async; member
239 devsoftc.async = 0; in devclose()
296 devsoftc.async = 1; in devioctl()
298 devsoftc.async = 0; in devioctl()
429 if (devsoftc.async && devsoftc.sigio != NULL) in devctl_queue()
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dcrypto_os.c173 boolean_t async = ((crypto_ses2caps(crp->crp_session) & in zfs_crypto_dispatch() local
176 boolean_t async = !CRYPTO_SESS_SYNC(crp->crp_session); in zfs_crypto_dispatch()
178 crp->crp_callback = async ? freebsd_zfs_crypt_done : in zfs_crypto_dispatch()
182 if (async) { in zfs_crypto_dispatch()
/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/contrib/unbound/libunbound/
H A Dcontext.c170 q->async = (cb != NULL || cb_event != NULL); in context_new()
190 if(q->async) in context_new()
274 q->async = 1; in context_deserialize_new_query()
309 log_assert(q->async); in context_lookup_new_query()
/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 \

12345678