Lines Matching +defs:file +defs:start
108 // and get the packet history dumped to a file.
110 auto file = FileSystem::Instance().Open(
112 if (!file) {
113 llvm::consumeError(file.takeError());
116 StreamFile stream(std::move(file.get()));
227 // For now we are just making sure the file exists for a given module
390 // 1 - Use the target definition python file if one is specified.
404 // See if we can get register definitions from a python file
408 Debugger::ReportError("target description file " +
662 // the inferior will be reading stdin from the specified file or stdio is
682 // set to /dev/null unless redirected to a file above
1472 const size_t start = thread_pcs_pos + strlen(";thread-pcs:");
1473 const size_t end = stop_info_str.find(';', start);
1475 std::string value = stop_info_str.substr(start, end - start);
1482 const size_t start = threads_pos + strlen(";threads:");
1483 const size_t end = stop_info_str.find(';', start);
1485 std::string value = stop_info_str.substr(start, end - start);
1801 // \a wp_addr which is the original start address that
2191 false; // says if locals below that start with "queue_" are valid
2447 // file handle and debugserver will go away, but with remote proxies, it
3494 LLDB_LOGF(log, "failed to start debugserver process: %s",
4363 std::optional<unsigned> start;
4367 field_node.ForEachAttribute([&name, &start, &end, &type, max_start_bit,
4378 } else if (attr_name == "start") {
4383 "ProcessGDBRemote::ParseFlagsFields Invalid start {0} in "
4388 start = parsed_start;
4392 "ProcessGDBRemote::ParseFlagsFields Invalid start \"{0}\" in "
4426 if (name && start && end) {
4427 if (*start > *end)
4432 *start, *end, name->data());
4434 if (RegisterFlags::Field::GetSizeInBits(*start, *end) > 64)
4450 RegisterFlags::Field::GetMaxValue(*start, *end);
4474 RegisterFlags::Field(name->str(), *start, *end, enum_type));
4569 "{0} (start: {1} end: {2}) and {3} (start: {4} end: {5}) "
4766 // This method fetches a register description feature xml file from
4770 // to fetch and parse an xml file.
4774 // request the target xml file
4786 // The top level feature XML file will start with a <target> tag.
4827 // In an included XML feature file, we're already "inside" the <target>
4828 // tag of the initial XML file; this included file will likely only have
4973 // parse the xml file in memory
5118 lldb::ModuleSP ProcessGDBRemote::LoadModuleAtAddress(const FileSpec &file,
5126 return loader->LoadModuleAtAddress(file, link_map, base_addr,
5157 FileSpec file(mod_name);
5158 FileSystem::Instance().Resolve(file);
5160 LoadModuleAtAddress(file, link_map, mod_base, mod_base_is_offset);
5211 Status ProcessGDBRemote::GetFileLoadAddress(const FileSpec &file,
5217 std::string file_path = file.GetPath(false);
5219 return Status::FromErrorString("Empty file name specified");
5232 // The file is not loaded into the inferior
5239 "Fetching file load address from remote server returned an error");
5412 // now transfer the core file
5418 // NB: we unlink the file on error too