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

  /external/google-breakpad/src/common/linux/
file_id.cc 65 const Nhdr* note_header = reinterpret_cast<const Nhdr*>(section); local
66 while (reinterpret_cast<const void *>(note_header) < section_end) {
67 if (note_header->n_type == NT_GNU_BUILD_ID)
69 note_header = reinterpret_cast<const Nhdr*>(
70 reinterpret_cast<const char*>(note_header) + sizeof(Nhdr) +
71 NOTE_PADDING(note_header->n_namesz) +
72 NOTE_PADDING(note_header->n_descsz));
74 if (reinterpret_cast<const void *>(note_header) >= section_end ||
75 note_header->n_descsz == 0) {
79 const char* build_id = reinterpret_cast<const char*>(note_header)
    [all...]
synth_elf.cc 246 Elf32_Nhdr note_header; local
247 memset(&note_header, 0, sizeof(note_header));
248 note_header.n_namesz = name.length() + 1;
249 note_header.n_descsz = desc_size;
250 note_header.n_type = type;
252 Append(reinterpret_cast<const uint8_t*>(&note_header),
253 sizeof(note_header));

Completed in 166 milliseconds