Searched refs:ElfNoteHdr (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DDBGFCoreWrite.cpp241 Elf64_Nhdr ElfNoteHdr; local
242 RT_ZERO(ElfNoteHdr);
243 ElfNoteHdr.n_namesz = (Elf64_Word)cchName - 1; /* Again, a discrepancy between ELF-64 and Solaris (see @bugref{5211} comment #3), we will follow ELF-64 */
244 ElfNoteHdr.n_type = Type;
245 ElfNoteHdr.n_descsz = (Elf64_Word)cbDataAlign;
250 int rc = RTFileWrite(hFile, &ElfNoteHdr, sizeof(ElfNoteHdr), NULL /* all */);
/vbox/src/VBox/Runtime/r3/solaris/
H A Dcoredumper-solaris.cpp1342 ELFNOTEHDR ElfNoteHdr; local
1343 RT_ZERO(ElfNoteHdr);
1344 ElfNoteHdr.achName[0] = 'C';
1345 ElfNoteHdr.achName[1] = 'O';
1346 ElfNoteHdr.achName[2] = 'R';
1347 ElfNoteHdr.achName[3] = 'E';
1355 ElfNoteHdr.Hdr.n_namesz = 5;
1356 ElfNoteHdr.Hdr.n_type = Type;
1357 ElfNoteHdr.Hdr.n_descsz = cbAlign;
1362 rc = pSolCore->pfnWriter(pSolCore->fdCoreFile, &ElfNoteHdr, sizeo
[all...]

Completed in 95 milliseconds