/freebsd/usr.bin/clang/lldb-server/ |
H A D | lldb-server.1 | 134 Launch a program for debugging. 139 to launch or attach. 204 In order to launch a new process inside the debugger, pass the path to it 208 \-\-. The server will launch the new executable and stop it immediately, waiting 243 (e.g. \fItarget create\fP) will disconnect and launch a local lldb\-server instead. 249 (lldb) process launch a.out
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | future | 27 enum class launch 317 async(launch policy, F&& f, Args&&... args); 419 // enum class launch 420 _LIBCPP_DECLARE_STRONG_ENUM(launch){async = 1, deferred = 2, any = async | deferred}; 421 _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(launch) 425 typedef underlying_type<launch>::type __launch_underlying_type; 427 inline _LIBCPP_HIDE_FROM_ABI constexpr launch operator&(launch __x, launch __y) { 428 …return static_cast<launch>(static_cast<__launch_underlying_type>(__x) & static_cast<__launch_under… 431 inline _LIBCPP_HIDE_FROM_ABI constexpr launch operator|(launch __x, launch __y) { 432 …return static_cast<launch>(static_cast<__launch_underlying_type>(__x) | static_cast<__launch_under… [all …]
|
/freebsd/contrib/llvm-project/lldb/docs/man/ |
H A D | lldb-server.rst | 105 Launch a program for debugging. 109 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
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBTargetDocstrings.i | 66 Launch a new process. 68 Launch a new process by spawning a new process using the 69 target object's executable module's file as the file to launch. 88 Flags to modify the launch (@see lldb::LaunchFlags) 109 Some launch options specified by logical OR'ing 123 process = target.Launch(self.dbg.GetListener(), None, None, 134 ) lldb::SBTarget::Launch; 137 Launch a new process with sensible defaults. 146 No launch flags are passed and the target's debuger is used as a listener.
|
H A D | SBErrorDocstrings.i | 40 # Now launch the process, and do not stop at entry point. 42 process = target.Launch(listener, None, None, None, None, None, None, 0, False, error) 45 checks that after calling the target.Launch() method there's no error
|
H A D | SBPlatformDocstrings.i | 14 to remotely launch and attach to processes, upload/download files, 21 install programs on the remote system, attach and launch processes,
|
H A D | SBDebuggerDocstrings.i | 35 # Launch the process. Since we specified synchronous mode, we won't return 39 # Make sure the launch went ok 138 "Launch a command interpreter session. Commands are read from standard input or
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBLaunchInfo.h | 57 /// Set the executable file that will be used to launch the process and 61 /// the exact path will be used to launch a binary. If you create a 63 /// and the resolved path will get used to launch the process. Calling 64 /// this function can help you still launch your process using the 68 /// SBTarget::Launch(...), the target will use the resolved executable
|
H A D | SBTarget.h | 113 /// Return the environment variables that would be used to launch a new 136 /// Launch a new process. 138 /// Launch a new process by spawning a new process using the 139 /// target object's executable module's file as the file to launch. 178 /// Some launch options specified by logical OR'ing 189 lldb::SBProcess Launch(SBListener &listener, char const **argv, 199 /// Launch a new process with sensible defaults. 216 /// Empty launch flags 228 SBProcess Launch(SBLaunchInfo &launch_info, SBError &error);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationServerCommon.h | 128 /// Launch a process with the current launch settings. 136 /// launch.
|
H A D | GDBRemoteCommunicationServerPlatform.cpp | 230 // Spawn a local debugserver as a platform so we can then attach or launch a in Handle_qLaunchGDBServer() 260 "launch failed: %s", in Handle_qLaunchGDBServer() 479 // If we launch a process and this GDB server is acting as a platform, then in Handle_qC() 480 // we need to clear the process launch state so we can start launching in Handle_qC() 481 // another process. In order to launch a process a bunch or packets need to in Handle_qC() 483 // more settings. When we launch a process we then need to know when to clear in Handle_qC() 530 return Status("%s: no process command line specified to launch", in LaunchProcess() 542 fprintf(stderr, "%s: failed to launch executable %s", __FUNCTION__, in LaunchProcess()
|
H A D | GDBRemoteCommunicationServerLLGS.h | 43 /// Launch a process with the current launch settings. 51 /// launch.
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | Alarm.cpp | 26 // launch. in Create() 53 // launch. in Restart() 84 // launch. in Cancel() 121 "failed to launch host thread: {0}"); in StartAlarmThread()
|
H A D | MonitoringProcessLauncher.cpp | 60 error.SetErrorStringWithFormatv("failed to launch host thread: {}", in LaunchProcess() 67 error.SetErrorString("process launch failed for unknown reasons"); in LaunchProcess()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | future.cppm |
|
/freebsd/contrib/libarchive/tar/test/ |
H A D | test_option_lz4.c | 30 * system call used to launch the subsidiary in DEFINE_TEST() 33 if (strstr(p, "Can't launch") != NULL && !canLz4()) { in DEFINE_TEST()
|
H A D | test_option_zstd.c | 30 * system call used to launch the subsidiary in DEFINE_TEST() 33 if (strstr(p, "Can't launch") != NULL && !canZstd()) { in DEFINE_TEST()
|
/freebsd/contrib/libarchive/cpio/test/ |
H A D | test_option_zstd.c | 30 * system call used to launch the subsidiary in DEFINE_TEST() 33 if (strstr(p, "Can't launch") != NULL && !canZstd()) { in DEFINE_TEST()
|
H A D | test_option_lz4.c | 31 * system call used to launch the subsidiary in DEFINE_TEST() 34 if (strstr(p, "Can't launch") != NULL && !canLz4()) { in DEFINE_TEST()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | RunLoopAutoreleaseLeakChecker.cpp | 102 assert(RLR && "Run loop launch not found"); in emitDiagnostics() 105 // Launch of run loop occurs before the message-sent expression is seen. in emitDiagnostics() 123 "followed by the launch of " + in emitDiagnostics()
|
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/ |
H A D | lldb-gdbserver.cpp | 81 Launch(ProcessLaunchInfo &launch_info, 164 llvm::errs() << llvm::formatv("error: failed to launch '{0}': {1}\n", in handle_launch() 315 client to launch or attach to a process. in PrintHelp() 440 // Any arguments left over are for the program that we need to launch. If in main_gdbserver() 444 // to launch a program, or a vAttach packet to attach to an existing process, in main_gdbserver()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | ScriptedProcessInterface.h |
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectProcess.cpp | 119 interpreter, "process launch", in CommandObjectProcessLaunch() 120 "Launch the executable in the debugger.", nullptr, in CommandObjectProcessLaunch() 138 // No repeat for "process launch"... in GetRepeatCommand() 146 // If our listener is nullptr, users aren't allows to launch in DoExecute() 150 // doesn't then someone must be trying to launch using a path that will in DoExecute() 167 // launch options explicitly turn on/off in DoExecute() 172 // The user specified an explicit setting on the process launch line. in DoExecute() 203 // Merge the launch info environment with the target environment. in DoExecute() 236 Status error = target->Launch(m_options.launch_info, &stream); in DoExecute() 248 // executable module before launch. in DoExecute() [all …]
|
/freebsd/usr.sbin/bsdconfig/dot/ |
H A D | USAGE | 55 NOTE: Image is scaled to fit window on launch. 68 NOTE: Image is scaled to fit window on launch.
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | ProcessLaunchInfo.h | 28 // Describes any information that is required to launch a process. 142 std::string m_event_data; // A string passed to the plugin launch, having no
|