Home
last modified time | relevance | path

Searched refs:launch (Results 1 – 25 of 71) sorted by relevance

123

/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DREADME.md7 - [Launch Configuration Settings](#launch-configuration-settings)
74 Launching to attaching require you to create a [launch configuration](https://code.visualstudio.com…
76 control how the launch or attach happens.
80 When you launch a program with Visual Studio Code you will need to create a [launch.json](https://c…
81 …he JSON configuration file can contain the following `lldb-vscode` specific launch key/value pairs:
87 |**request** |string|Y| Must be "launch".
88 |**program** |string|Y| Path to the executable to launch.
107 3. Attach by name by waiting for the next instance of a process to launch
109 The JSON configuration file can contain the following `lldb-vscode` specific launch key/value pairs:
119 |**waitFor** |boolean | | Wait for the process to launch.
[all …]
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 DOptions.td27 def launch_target: Separate<["--", "-"], "launch-target">,
36 "when using --launch-target.">;
H A DRunInTerminal.cpp134 return std::async(std::launch::async, [&]() { in NotifyDidAttach()
/openbsd-src/gnu/llvm/libcxx/include/
H A Dfuture27 enum class launch
316 async(launch policy, F&& f, Args&&... args);
411 //enum class launch
412 _LIBCPP_DECLARE_STRONG_ENUM(launch)
418 _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(launch)
422 typedef underlying_type<launch>::type __launch_underlying_type;
426 launch
427 operator&(launch __x, launch __y)
429 return static_cast<launch>(static_cast<__launch_underlying_type>(__x) &
435 launch
[all …]
/openbsd-src/gnu/llvm/lldb/docs/man/
H A Dlldb-server.rst109 to launch or attach.
171 In order to launch a new process inside the debugger, pass the path to it
175 --. The server will launch the new executable and stop it immediately, waiting
198 (e.g. *target create*) will disconnect and launch a local lldb-server instead.
203 (lldb) process launch a.out
/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/gnu/llvm/clang/docs/
H A DThinLTO.rst27 By default, linkers_ that support ThinLTO are set up to launch
88 As mentioned earlier, by default the linkers will launch the ThinLTO backend
108 By default, the ThinLTO link step will launch as many
110 cores can't be computed for the architecture, then it will launch
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbpexpect.py23 def launch(self, executable=None, extra_args=None, timeout=60, member in PExpectTest
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/
H A Dlldbvscode_testcase.py282 def launch(self, program=None, args=None, cwd=None, env=None, member in VSCodeTestCaseBase
356 return self.launch(program, args, cwd, env, stopOnEntry, disableASLR,
/openbsd-src/gnu/llvm/lldb/examples/python/scripted_process/
H A Dscripted_process.py146 def launch(self): member in ScriptedProcess
/openbsd-src/gnu/llvm/lldb/docs/use/
H A Dtutorial.rst32 want to launch a process and give the "process launch" command the
33 "--stop-at-entry" option, yet you want the process you are about to launch to
38 (lldb) process launch --stop-at-entry -- -program_arg value
430 To launch a program in lldb we use the "process launch" command or one of its built in aliases:
434 (lldb) process launch
448 After you launch or attach to a process, your process might stop somewhere:
511 If you attach to a process, or launch a process with the "--no-stdin" option,
H A Dremote.rst131 attach to attach to an existing remote process or target create, process launch
149 To launch a locally built process on the remote system in the platform working
162 changed. LLDB will automatically launch a lldb-server in gdbremote mode to
H A Dmap.rst34 <b>(lldb)</b> process launch
52 <b>(lldb)</b> process launch -- &lt;args&gt;
119 <b>(lldb)</b> process launch --tty -- &lt;args&gt;
133 <b>(lldb)</b> process launch --tty=/dev/ttys006 -- &lt;args&gt;
194 …<td class="header" colspan="2">Set environment variables for process and launch process in one com…
200 <b>(lldb)</b> process launch -E DEBUG=1
234 … <td class="header" colspan="2">Wait for a process named "a.out" to launch and attach.</td>
1457 <b>(lldb)</b> process launch --environment MallocStackLogging=1 -- [ARGS]
/openbsd-src/games/battlestar/
H A Dcommand6.c44 launch(void) in launch() function
H A Dextern.h340 int launch(void);
/openbsd-src/usr.sbin/unbound/doc/
H A DREADME.ipset.md6 At the final step, I need to install a dns service which would work with ipset well to launch the s…
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.mm166 DNBLog("[LaunchAttach] In completion handler, launch was "
176 "[LaunchAttach] END (%d) In app launch attempt, got error "
182 "[LaunchAttach] END (%d) In app launch attempt, got error "
218 error.SetErrorString("timed out trying to launch app");
221 DNBLogError("[LaunchAttach] END (%d) unable to launch the application with "
1559 // FIXME: Shouldn't we use the launch flavor we were started with?
2880 // Tell SpringBoard to halt the next launch of this application on startup.
2890 "we can't tell springboard to wait for launch...",
2965 DNBLog("[LaunchAttach] START (%d) requesting FBS launch of app with bundle "
2990 DNBLogError("timed out trying to launch %s.", bundleIDStr.c_str());
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DThreadPool.h173 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl()
/openbsd-src/gnu/llvm/lldb/docs/
H A Dlldb-for-gdb-users.txt25 using the "--" option. So for instance, the "process launch" command takes
30 (lldb) process launch -- -program_arg value
213 Then you can either launch the process with the command:
215 (lldb) process launch
308 the appropriate options to "process launch", or start your program in
/openbsd-src/gnu/llvm/lldb/docs/resources/
H A Dcaveats.rst62 system rather than Xcode, you can still use ``xcrun`` to launch the system
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DSymbolFile.cpp155 std::launch::async, in AssertModuleLock()
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.inc43 "If set, eagerly launch a background thread for memory reclamation "
/openbsd-src/gnu/llvm/lldb/source/Host/macosx/objcxx/
H A DHost.mm301 // are sending an AppleScript that will launch a process in Terminal.app,
303 // to the process that we wanted to launch. So when our process actually
908 // re-launch the service.
1345 // If all went well, then set the process ID into the launch info
1355 error.SetErrorString("process launch failed for unknown reasons");
1391 "cwd does not exist; cannot launch with shell argument expansion");
/openbsd-src/gnu/llvm/libcxx/docs/Status/
H A DCxx14Issues.csv21 "`2102 <https://wg21.link/lwg2102>`__","Why is std::launch an implementation-defined type?","Kona",…
95 "`2100 <https://wg21.link/lwg2100>`__","Timed waiting functions cannot timeout if launch::async pol…
155 "`2186 <https://wg21.link/lwg2186>`__","Incomplete action on async/launch::deferred","Issaquah","|C…

123