Lines Matching +defs:start +defs:file +defs:process

101     "There is a .lldbinit file in the current directory which is not being "
104 "add the following to the lldbinit file in your home directory:\n"
306 cmd_obj_sp = GetCommandSPExact("process detach");
311 cmd_obj_sp = GetCommandSPExact("process continue");
422 AddAlias("file", cmd_obj_sp);
476 cmd_obj_sp = GetCommandSPExact("process kill");
481 cmd_obj_sp = GetCommandSPExact("process launch");
576 REGISTER_COMMAND_OBJECT("process", CommandObjectMultiwordProcess);
595 "breakpoint set --file '%1' --line %2 --column %3"},
597 "breakpoint set --file '%1' --line %2"},
627 "file\n\n"
642 "current file\n"
678 "file\n\n"
693 "current file\n"
720 *this, "_regexp-attach", "Attach to process by ID or name.",
721 "_regexp-attach <pid> | <process-name>", 0, false));
724 "process attach --pid %1") &&
726 "^(-.*|.* -.*)$", "process attach %1") && // Any options that are
728 // 'process attach'
730 "process attach --name '%1'") &&
731 attach_regex_cmd_up->AddRegexCommand("^$", "process attach")) {
801 "Connect to a process via remote GDB server.\n"
803 "gdb-remote is an abbreviation for 'process connect --plugin "
809 "process connect --plugin gdb-remote connect://%1:%2") &&
812 "process connect --plugin gdb-remote connect://localhost:%1")) {
821 "Connect to a process via remote KDP server.\n"
823 "kdp-remote is an abbreviation for 'process connect --plugin "
829 "process connect --plugin kdp-remote udp://%1") &&
831 "^(.+)$", "process connect --plugin kdp-remote udp://%1:41139")) {
867 "_regexp-list <file>:<line> // List around specific file/line\n"
868 "_regexp-list <line> // List current file around specified "
881 "source list --file '%1' --line %2") &&
924 "_regexp-jump <file>:<line>\n"
933 "thread jump --file %1 --line %2") &&
1525 size_t start = command_string.find_first_not_of(k_white_space);
1529 if (start != std::string::npos) {
1531 end = command_string.find_first_of(k_white_space, start);
1535 std::string(command_string.substr(start, end - start));
1556 // we are done. Otherwise, find the start of the next word.
1562 start = command_string.find_first_not_of(k_white_space, end);
1647 // actual commands can't start with '-' or '_'
1766 // don't treat the backtick as the start of an expression.
2352 // Does it start with '%'
2358 const char *start = cptr;
2365 position = atoi(start);
2412 void CommandInterpreter::SourceInitFile(FileSpec file,
2416 if (!FileSystem::Instance().Exists(file)) {
2421 // Use HandleCommand to 'source' the given file; this will do the actual
2430 HandleCommandsFromFile(file, options, result);
2470 /// We will first see if there is an application specific ".lldbinit" file
2472 /// If this file doesn't exist, we fall back to the REPL init file or the
2473 /// default home init file in "~/.lldbinit".
2553 // an abnormal stop, to consider the process to be stopped abnormally.
2735 "Error reading commands from file %s - file not found.\n",
2746 "error: an error occurred read file '{0}': {1}\n", cmd_file_path,
3147 // sourcing a commands file. We don't want blank lines to repeat the
3149 // alias, get an error and stop parsing the commands file).
3155 // When using a non-interactive file handle (like when sourcing commands
3156 // from a file) we need to echo the command out so we don't just see the
3253 Process *process = exe_ctx.GetProcessPtr();
3258 if (process) {
3259 StateType state = process->GetState();
3261 process->Halt();
3280 // Can't have file name with colons on Windows
3309 return error_out("Unable to create file",
3312 FileUP file = std::move(opened_file.get());
3316 Status error = file->Write(m_transcript_stream.GetData(), byte_size);
3319 return error_out("Unable to write to destination file",
3332 error = file->GetFileSpec(const_cast<FileSpec &>(file_spec));
3444 // Always re-create the command interpreter when we run it in case any file