/external/llvm-project/lldb/source/API/ |
D | SBLaunchInfo.cpp | 44 m_opaque_sp->GetArguments().SetArguments(argv); in SBLaunchInfo() 153 void SBLaunchInfo::SetArguments(const char **argv, bool append) { in SetArguments() function in SBLaunchInfo 154 LLDB_RECORD_METHOD(void, SBLaunchInfo, SetArguments, (const char **, bool), in SetArguments() 162 m_opaque_sp->GetArguments().SetArguments(argv); in SetArguments() 370 LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetArguments, in RegisterMethods()
|
D | SBTarget.cpp | 300 launch_info.SetArguments(argv, /*append*/ true); in LaunchSimple()
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | Args.h | 77 SetArguments(const_cast<const char **>(env.getEnvp().get())); 229 void SetArguments(size_t argc, const char **argv); 231 void SetArguments(const char **argv);
|
D | ProcessInfo.h | 83 void SetArguments(const Args &args, bool first_arg_is_executable); 85 void SetArguments(char const **argv, bool first_arg_is_executable);
|
/external/llvm-project/lldb/source/Utility/ |
D | ProcessInfo.cpp | 82 void ProcessInfo::SetArguments(char const **argv, in SetArguments() function in ProcessInfo 84 m_arguments.SetArguments(argv); in SetArguments() 98 void ProcessInfo::SetArguments(const Args &args, bool first_arg_is_executable) { in SetArguments() function in ProcessInfo
|
D | Args.cpp | 355 void Args::SetArguments(size_t argc, const char **argv) { in SetArguments() function in Args 372 void Args::SetArguments(const char **argv) { in SetArguments() function in Args 373 SetArguments(ArgvToArgc(argv), argv); in SetArguments()
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBLaunchInfo.i | 56 SetArguments (const char **argv, bool append);
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBLaunchInfo.h | 91 void SetArguments(const char **argv, bool append);
|
/external/llvm-project/lldb/tools/lldb-server/ |
D | lldb-platform.cpp | 275 inferior_arguments.SetArguments(argc, const_cast<const char **>(argv)); in main_platform()
|
D | lldb-gdbserver.cpp | 146 info.SetArguments(Args(Arguments), true); in handle_launch()
|
/external/llvm-project/lldb/unittests/tools/lldb-server/tests/ |
D | TestClient.cpp | 100 Info.SetArguments(args, true); in launchCustom()
|
/external/llvm-project/lldb/source/Host/common/ |
D | Host.cpp | 524 launch_info.SetArguments(args, first_arg_is_executable); in RunShellCommand()
|
/external/llvm-project/lldb/source/Interpreter/ |
D | CommandInterpreter.cpp | 2031 cmd_args.SetArguments(new_args.GetArgumentCount(), in BuildAliasCommandArgs() 2041 cmd_args.SetArguments(new_args.GetArgumentCount(), in BuildAliasCommandArgs()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectPlatform.cpp | 1051 m_options.launch_info.SetArguments(args, first_arg_is_executable); in DoExecute()
|
/external/python/cpython3/PC/bdist_wininst/ |
D | install.c | 569 hr = ps1->lpVtbl->SetArguments(ps1, arguments); in CreateShortcut()
|
/external/python/cpython2/PC/bdist_wininst/ |
D | install.c | 541 hr = ps1->lpVtbl->SetArguments(ps1, arguments); in CreateShortcut()
|
/external/llvm-project/lldb/tools/lldb-vscode/ |
D | lldb-vscode.cpp | 1578 launch_info.SetArguments(MakeArgv(args).data(), true); in request_launch()
|