Searched refs:shell_command (Results 1 – 9 of 9) sorted by relevance
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | fork-child.c | 127 char *shell_command; in fork_inferior() local 168 shell_command = (char *) alloca (strlen (SHELL_COMMAND_CONCAT) + len); in fork_inferior() 169 strcpy (shell_command, SHELL_COMMAND_CONCAT); in fork_inferior() 171 shell_command = (char *) alloca (len); in fork_inferior() 172 shell_command[0] = '\0'; in fork_inferior() 196 strcat (shell_command, "exec "); in fork_inferior() 234 strcat (shell_command, "'"); in fork_inferior() 238 strcat (shell_command, "'\\''"); in fork_inferior() 240 strcat (shell_command, "\\!"); in fork_inferior() 242 strncat (shell_command, p, 1); in fork_inferior() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBPlatform.cpp | 51 llvm::StringRef shell_command) { in PlatformShellCommand() 55 if (!m_shell.empty() && !shell_command.empty()) in PlatformShellCommand() 56 m_command = shell_command.str(); in PlatformShellCommand() 59 PlatformShellCommand(llvm::StringRef shell_command = llvm::StringRef()) { in PlatformShellCommand() 60 if (!shell_command.empty()) in PlatformShellCommand() 61 m_command = shell_command.str(); in PlatformShellCommand() 164 const char *shell_command) in SBPlatformShellCommand() argument 165 : m_opaque_ptr(new PlatformShellCommand(shell_interpreter, shell_command)) { in SBPlatformShellCommand() 166 LLDB_INSTRUMENT_VA(this, shell_interpreter, shell_command); in SBPlatformShellCommand() 169 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_command) in SBPlatformShellCommand() argument [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Host/common/ |
| H A D | ProcessLaunchInfo.cpp | 259 StreamString shell_command; in ConvertArgumentsForLaunchingInShell() local 288 shell_command.PutCString(new_path); in ConvertArgumentsForLaunchingInShell() 293 shell_command.PutCString("exec"); in ConvertArgumentsForLaunchingInShell() 303 shell_command.Printf(" /usr/bin/arch -arch %s", in ConvertArgumentsForLaunchingInShell() 322 shell_command.Printf("%s", argv[0]); in ConvertArgumentsForLaunchingInShell() 329 shell_command.PutCString(" "); in ConvertArgumentsForLaunchingInShell() 330 shell_command.PutCString(safe_arg); in ConvertArgumentsForLaunchingInShell() 333 shell_arguments.AppendArgument(shell_command.GetString()); in ConvertArgumentsForLaunchingInShell()
|
| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBPlatform.i | 54 SBPlatformShellCommand (const char *shell, const char *shell_command); 55 SBPlatformShellCommand (const char *shell_command); 74 SetCommand(const char *shell_command); 193 Run (lldb::SBPlatformShellCommand &shell_command);
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
| H A D | SBPlatform.h | 54 SBPlatformShellCommand(const char *shell, const char *shell_command); 55 SBPlatformShellCommand(const char *shell_command); 71 void SetCommand(const char *shell_command); 148 SBError Run(SBPlatformShellCommand &shell_command);
|
| /openbsd-src/usr.bin/tmux/ |
| H A D | tmux.c | 48 const char *shell_command; variable 398 shell_command = optarg; in main() 456 if (shell_command != NULL && argc != 0) in main()
|
| H A D | client.c | 250 if (shell_command != NULL) { in client_main() 681 client_exec(data, shell_command); in client_dispatch_wait()
|
| H A D | tmux.h | 2171 extern const char *shell_command; 2173 extern const char *shell_command;
|
| /openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbtest.py | 1650 shell_command = lldb.SBPlatformShellCommand(cmd) 1651 err = platform.Run(shell_command) 1652 return (err, shell_command.GetStatus(), shell_command.GetOutput())
|