Home
last modified time | relevance | path

Searched refs:note_buf (Results 1 – 2 of 2) sorted by relevance

/device/google/dragon/crash_collector/
Dcoredump_writer.cc150 std::vector<char> note_buf; in WriteCoredumpToFD() local
151 if (!ReadUntilNote(&reader, &elf_header, &program_headers, &note_buf)) { in WriteCoredumpToFD()
156 if (!GetFileMappings(note_buf, &file_mappings)) { in WriteCoredumpToFD()
181 if (!WriteAuxv(note_buf, proc_files_dir_ + "/auxv") || in WriteCoredumpToFD()
204 !android::base::WriteFully(fd_dest, note_buf.data(), note_buf.size())) { in WriteCoredumpToFD()
230 std::vector<char>* note_buf) { in ReadUntilNote() argument
261 note_buf->resize(note_program_header.p_filesz); in ReadUntilNote()
263 !reader->Read(note_buf->data(), note_buf->size())) { in ReadUntilNote()
270 bool CoredumpWriter::GetFileMappings(const std::vector<char>& note_buf, in GetFileMappings() argument
274 google_breakpad::MemoryRange(note_buf.data(), note_buf.size())); in GetFileMappings()
[all …]
Dcoredump_writer.h65 std::vector<char>* note_buf);
68 bool GetFileMappings(const std::vector<char>& note_buf,
77 bool WriteAuxv(const std::vector<char>& note_buf,