HomeSort by relevance Sort by last modified time
    Searched refs:Nhdr (Results 1 - 9 of 9) sorted by null

  /external/google-breakpad/src/common/linux/
elf_core_dump.cc 50 const ElfCoreDump::Nhdr* ElfCoreDump::Note::GetHeader() const {
51 return content_.GetData<Nhdr>(0);
55 const Nhdr* header = GetHeader();
61 const Nhdr* header = GetHeader();
63 return content_.Subrange(sizeof(Nhdr), header->n_namesz);
69 const Nhdr* header = GetHeader();
71 return content_.Subrange(AlignedSize(sizeof(Nhdr) + header->n_namesz),
79 const Nhdr* header = GetHeader();
81 size_t next_offset = AlignedSize(sizeof(Nhdr) + header->n_namesz);
elf_core_dump.h 50 typedef ElfW(Nhdr) Nhdr;
77 const Nhdr* GetHeader() const;
file_id.cc 62 typedef typename ElfClass::Nhdr Nhdr;
65 const Nhdr* note_header = reinterpret_cast<const Nhdr*>(section);
69 note_header = reinterpret_cast<const Nhdr*>(
70 reinterpret_cast<const char*>(note_header) + sizeof(Nhdr) +
80 sizeof(Nhdr) + NOTE_PADDING(note_header->n_namesz);
elfutils.h 47 typedef Elf32_Nhdr Nhdr;
60 typedef Elf64_Nhdr Nhdr;
  /external/google-breakpad/src/tools/linux/md2core/
minidump-2-core.cc 65 #define Nhdr ElfW(Nhdr)
756 Nhdr nhdr; local
757 memset(&nhdr, 0, sizeof(nhdr));
758 nhdr.n_namesz = 5;
759 nhdr.n_descsz = sizeof(struct prstatus);
760 nhdr.n_type = NT_PRSTATUS;
761 if (!writea(1, &nhdr, sizeof(nhdr)) |
1169 Nhdr nhdr; local
    [all...]
  /external/elfutils/libelf/
abstract.h 163 START (Bits, Nhdr, Ext##Nhdr) \
167 END (Bits, Ext##Nhdr)
elf_getdata.c 106 [ELF_T_NHDR] = __alignof__ (ElfW2(Bits,Nhdr)), \
  /external/valgrind/coregrind/m_coredump/
coredump-elf.c 154 ESZ(Nhdr) note;
160 return sizeof(ESZ(Nhdr)) + VG_ROUNDUP(VG_(strlen)(n->name)+1, 4)
coredump-solaris.c 54 VKI_ESZ(Nhdr) nhdr;
793 n->nhdr.n_type = type;
794 n->nhdr.n_namesz = 5;
795 n->nhdr.n_descsz = VG_ROUNDUP(datasz, 4);
812 return sizeof(note_t) - sizeof(note_t *) + note->nhdr.n_descsz;
845 write_part(fd, filename, CONST_CAST(void *, &note->nhdr),
    [all...]

Completed in 541 milliseconds