Home
last modified time | relevance | path

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

123456

/openbsd-src/gnu/llvm/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()
H A 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/
H A 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…
H A 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/
H A 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/
H A 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()
H A DRunInTerminal.cpp134 return std::async(std::launch::async, [&]() { in NotifyDidAttach()
/openbsd-src/gnu/usr.bin/perl/lib/
H A 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");
H A DThread.pm25 sub async (&;@) { return Thread->new(shift); } subroutine
/openbsd-src/gnu/llvm/compiler-rt/lib/xray/tests/unit/
H A 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/
H A 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/
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()
/openbsd-src/gnu/llvm/llvm/docs/
H A 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/
H A DMakefile19 REGRESS_TARGETS+= run-regress-async-mount
20 run-regress-async-mount: unconfig
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A 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/
H A 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/
H A Damdgpu_display.h33 …gpu_display_page_flip(adev, crtc, base, async) (adev)->mode_info.funcs->page_flip((adev), (crtc), … argument
/openbsd-src/gnu/llvm/llvm/tools/llvm-debuginfod/
H A Dllvm-debuginfod.cpp89 Pool.async([&]() { ExitOnErr(Server.Server.listen()); }); in main()
90 Pool.async([&]() { in main()
/openbsd-src/gnu/usr.bin/perl/dist/threads-shared/t/
H A Dcond.t52 $tr = async {
69 $tr = async {
90 $tr = async {
128 $tr = async {
/openbsd-src/gnu/usr.bin/perl/dist/threads/t/
H A Dkill3.t55 $thr = async {
97 $thr = async {
/openbsd-src/sys/kern/
H A Dvfs_bio.c417 bio_doread(struct vnode *vp, daddr_t blkno, int size, int async) in buf_flip_dma()
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()
474 * Read-ahead multiple disk blocks. The first is sync, the rest async. in bread()
677 int rv, async, wasdelayed, s; in bread_cluster()
692 * to async, not sync writes (which is safe, but ugly). in bwrite()
694 async = ISSET(bp->b_flags, B_ASYNC); in bwrite()
695 if (!async && mp && ISSET(mp->mnt_flag, MNT_ASYNC)) { in bwrite()
697 * Don't convert writes from VND on async filesystem in bwrite()
425 bio_doread(struct vnode * vp,daddr_t blkno,int size,int async) bio_doread() argument
685 int rv, async, wasdelayed, s; bwrite() local
[all...]
/openbsd-src/lib/libevent/
H A 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/sbin/unwind/libunbound/libunbound/
H A Dcontext.c139 /** How many times to try to find an unused query-id-number for async */
170 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()
397 * o uint32 async-id */ in context_serialize_cancel()
/openbsd-src/usr.sbin/unbound/libunbound/
H A Dcontext.c139 /** How many times to try to find an unused query-id-number for async */
170 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()
397 * o uint32 async-id */ in context_serialize_cancel()
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A 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()

123456