Home
last modified time | relevance | path

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

123456

/openbsd/src/gnu/llvm/llvm/include/llvm/Support/
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()
DTaskQueue.h81 std::future<std::invoke_result_t<Callable>> async(Callable &&C) { in async() function
97 Scheduler.async(std::move(T)); in async()
120 Scheduler.async(std::move(Continuation)); in completeTask()
/openbsd/src/gnu/llvm/lldb/examples/test/tmp/
Dlldb_log-x86_64-clang-TestBreakpointCommand.BreakpointCommandTestCase.test_with_dwarf.txt11 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc0997600, pid = 0) threa…
12 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc0997600, pid = 0) liste…
37 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc1882000, pid = 55289) G…
38 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc1882000, pid = 55289) g…
39 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc1882000, pid = 55289) t…
52 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc0bed200, pid = 55292) G…
53 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc0bed200, pid = 55292) g…
54 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc0bed200, pid = 55292) t…
Dlldb_log-x86_64-clang-TestBreakpointCommand.BreakpointCommandTestCase.test_with_dsym.txt11 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc1883400, pid = 0) threa…
12 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc1883400, pid = 0) liste…
38 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc185e200, pid = 55239) g…
39 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc185e200, pid = 55239) t…
52 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc18f8600, pid = 55243) G…
53 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc18f8600, pid = 55243) g…
54 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc18f8600, pid = 55243) t…
/openbsd/src/gnu/llvm/lldb/source/API/
DSBAttachInfo.cpp39 SBAttachInfo::SBAttachInfo(const char *path, bool wait_for, bool async) in SBAttachInfo() argument
41 LLDB_INSTRUMENT_VA(this, path, wait_for, async); in SBAttachInfo()
46 m_opaque_sp->SetAsync(async); in SBAttachInfo()
134 void SBAttachInfo::SetWaitForLaunch(bool b, bool async) { in SetWaitForLaunch() argument
135 LLDB_INSTRUMENT_VA(this, b, async); in SetWaitForLaunch()
138 m_opaque_sp->SetAsync(async); in SetWaitForLaunch()
/openbsd/src/gnu/llvm/lldb/tools/lldb-vscode/
DFifoFiles.cpp58 new std::future<void>(std::async(std::launch::async, [&]() { in ReadJSON()
84 new std::future<void>(std::async(std::launch::async, [&]() { in SendJSON()
DRunInTerminal.cpp134 return std::async(std::launch::async, [&]() { in NotifyDidAttach()
/openbsd/src/gnu/usr.bin/perl/lib/
DThread.t15 use Thread qw(:DEFAULT async yield);
60 my $thr = async { Thread->self->tid; };
62 is($thr->tid, 2, "async thread's tid");
63 is($thr->join, 2, "->join on async returned tid");
DThread.pm25 sub async (&;@) { return Thread->new(shift); } subroutine
/openbsd/src/gnu/llvm/compiler-rt/lib/xray/tests/unit/
Dbuffer_queue_test.cpp100 auto T0 = std::async(std::launch::async, F); in TEST()
101 auto T1 = std::async(std::launch::async, F); in TEST()
102 auto T2 = std::async(std::launch::async, [&] { in TEST()
/openbsd/src/usr.sbin/makefs/msdos/
Dmsdosfs_lookup.c80 #define async 0 in createde() macro
147 if (async) in createde()
176 if (async) in createde()
228 if (async) in createde()
253 if (async) in createde()
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
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()
/openbsd/src/gnu/llvm/llvm/docs/
DCoroutines.rst180 In async-continuation lowering, signaled by the use of `llvm.coro.id.async`,
183 In this lowering, a coroutine is assumed to take the current `async context` as
185 `llvm.coro.id.async`). It is used to marshal arguments and return values of the
186 coroutine. Therefore an async coroutine returns `void`.
190 define swiftcc void @async_coroutine(i8* %async.ctxt, i8*, i8*) {
195 `async context`.
198 describes how-to obtain the continuations `async context` and every suspend
200 `llvm.coro.async.resume` intrinsic. The coroutine is resumed by calling this
201 `resume function` passing the `async context` as the one of its arguments
202 argument. The `resume function` can restore its (the caller's) `async context`
[all …]
/openbsd/src/regress/sys/dev/vnd/
DMakefile19 REGRESS_TARGETS+= run-regress-async-mount
20 run-regress-async-mount: unconfig
/openbsd/src/gnu/llvm/lldb/bindings/interface/
DSBAttachInfo.i22 SBAttachInfo (const char *path, bool wait_for, bool async);
45 SetWaitForLaunch (bool b, bool async);
/openbsd/src/gnu/llvm/lldb/include/lldb/API/
DSBAttachInfo.h59 SBAttachInfo(const char *path, bool wait_for, bool async);
108 void SetWaitForLaunch(bool b, bool async);
/openbsd/src/sys/dev/pci/drm/amd/amdgpu/
Damdgpu_display.h33 …gpu_display_page_flip(adev, crtc, base, async) (adev)->mode_info.funcs->page_flip((adev), (crtc), … argument
/openbsd/src/gnu/usr.bin/perl/dist/threads-shared/t/
Dcond.t52 $tr = async {
69 $tr = async {
90 $tr = async {
128 $tr = async {
/openbsd/src/gnu/usr.bin/perl/dist/threads/t/
Dkill3.t55 $thr = async {
97 $thr = async {
/openbsd/src/sys/kern/
Dvfs_bio.c417 bio_doread(struct vnode *vp, daddr_t blkno, int size, int async) in bio_doread() argument
430 SET(bp->b_flags, B_READ | async); in bio_doread()
436 } else if (async) { in bio_doread()
448 if (async == 0) in bio_doread()
677 int rv, async, wasdelayed, s; in bwrite() local
694 async = ISSET(bp->b_flags, B_ASYNC); in bwrite()
695 if (!async && mp && ISSET(mp->mnt_flag, MNT_ASYNC)) { in bwrite()
712 if (async) in bwrite()
752 if (async) in bwrite()
/openbsd/src/lib/libevent/
Devent.c930 struct asr_query *async; member
945 if (asr_run(eva->async, &ar)) { in event_asr_dispatch()
959 event_asr_run(struct asr_query *async, void (*cb)(struct asr_result *, void *), in event_asr_run() argument
968 eva->async = async; in event_asr_run()
981 asr_abort(eva->async); in event_asr_abort()
/openbsd/src/usr.sbin/unbound/libunbound/
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()
/openbsd/src/sbin/unwind/libunbound/libunbound/
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()
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/
DRNBRemote.h276 HandlePacketCallback async; // Function to call when inferior is running member
291 : type(invalid_packet), normal(NULL), async(NULL), abbrev(), in Packet()
297 : type(in_type), normal(in_normal), async(in_async), abbrev(in_abbrev), in Packet()
/openbsd/src/gnu/usr.bin/perl/dist/threads/lib/
Dthreads.pm113 sub async (&;@) subroutine

123456