Lines Matching +defs:format +defs:message
291 // "description": "Event message for 'output' event type. The event
339 // format."
426 // * Optional, more detailed progress message.
428 // message?: string;
448 // * Optional, more detailed progress message. If omitted, the previous
449 // * message (if any) is used.
451 // message?: string;
471 // * Optional, more detailed progress message. If omitted, the previous
472 // * message (if any) is used.
474 // message?: string;
478 void DAP::SendProgressEvent(uint64_t progress_id, const char *message,
480 progress_event_reporter.Push(progress_id, message, completed, total);
483 void __attribute__((format(printf, 3, 4)))
484 DAP::SendFormattedOutput(OutputType o, const char *format, ...) {
487 va_start(args, format);
488 int actual_length = vsnprintf(buffer, sizeof(buffer), format, args);
687 // Update message if there was an error.
782 llvm::StringRef message = GetString(object, "message");
783 if (message.empty()) {
784 message = "Unknown error, response failed";
787 std::error_code(-1, std::generic_category()), message));
924 // Command format like: `start-debugging <launch|attach> <configuration>`
926 result.SetError("Invalid use of start-debugging, expected format "
976 // Command format like: `repl-mode <variable|command|auto>?`
1027 // Command format like: `send-event <name> <body>?`
1029 result.SetError("Not enough arguments found, expected format "
1082 void DAP::SetFrameFormat(llvm::StringRef format) {
1083 if (format.empty())
1086 frame_format = lldb::SBFormat(format.str().c_str(), error);
1090 "The provided frame format '{0}' couldn't be parsed: {1}\n",
1091 format, error.GetCString())
1096 void DAP::SetThreadFormat(llvm::StringRef format) {
1097 if (format.empty())
1100 thread_format = lldb::SBFormat(format.str().c_str(), error);
1104 "The provided thread format '{0}' couldn't be parsed: {1}\n",
1105 format, error.GetCString())