Home
last modified time | relevance | path

Searched refs:note (Results 1 – 25 of 699) sorted by relevance

12345678910>>...28

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp515 ELFNote note = ELFNote(); in parseSegment() local
540 for (const auto &note : notes) { in parseFreeBSDNotes() local
554 switch (note.info.n_type) { in parseFreeBSDNotes()
570 m_auxv = DataExtractor(note.data, 4, note.data.GetByteSize() - 4); in parseFreeBSDNotes()
619 for (const auto &note : notes) { in parseNetBSDNotes() local
630 m_auxv = note.data; in parseNetBSDNotes()
776 switch (note.info.n_type) { in parseOpenBSDNotes()
781 m_auxv = note.data; in parseOpenBSDNotes()
818 if (note.info.n_name != "CORE" && note.info.n_name != "LINUX") in parseLinuxNotes()
831 switch (note.info.n_type) { in parseLinuxNotes()
[all …]
/freebsd-13.1/usr.bin/elfctl/
H A Delfctl.c369 Elf_Note note; in get_file_features() local
394 if (read(fd, &note, sizeof(note)) < in get_file_features()
395 (ssize_t)sizeof(note)) { in get_file_features()
399 read_total += sizeof(note); in get_file_features()
402 note.n_namesz = bswap32(note.n_namesz); in get_file_features()
403 note.n_descsz = bswap32(note.n_descsz); in get_file_features()
404 note.n_type = bswap32(note.n_type); in get_file_features()
411 namesz = roundup2(note.n_namesz, 4); in get_file_features()
417 descsz = roundup2(note.n_descsz, 4); in get_file_features()
425 if (note.n_namesz != 8 || in get_file_features()
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_globals.cpp58 const char *note = reinterpret_cast<const char *>(base + phdr[i].p_vaddr); in HwasanGlobalsFor() local
59 const char *nend = note + phdr[i].p_memsz; in HwasanGlobalsFor()
62 while (note < nend) { in HwasanGlobalsFor()
63 auto *nhdr = reinterpret_cast<const ElfW(Nhdr) *>(note); in HwasanGlobalsFor()
64 const char *name = note + sizeof(ElfW(Nhdr)); in HwasanGlobalsFor()
70 note = desc + RoundUpTo(nhdr->n_descsz, 4); in HwasanGlobalsFor()
80 note + global_note->begin_relptr); in HwasanGlobalsFor()
82 note + global_note->end_relptr); in HwasanGlobalsFor()
/freebsd-13.1/sys/dev/beri/virtio/
H A Dvirtio_mmio_platform.c175 int note; in platform_note() local
183 note = Q_NOTIFY; in platform_note()
185 note = Q_NOTIFY1; in platform_note()
187 note = 0; in platform_note()
190 note = Q_PFN; in platform_note()
193 note = Q_SEL; in platform_note()
196 note = 0; in platform_note()
199 if (note) { in platform_note()
205 PIO_SET(sc->pio_send, note, 1); in platform_note()
/freebsd-13.1/crypto/openssh/
H A Dhostfile.h31 u_int note; /* caller-specific note/flag */ member
42 const char *, FILE *, u_int note);
103 u_int note; /* caller-specified note copied from arguments */ member
116 const char *host, const char *ip, u_int options, u_int note);
119 const char *host, const char *ip, u_int options, u_int note);
H A Dhostfile.c259 hostkeys->entries[hostkeys->num_entries].note = l->note; in record_hostkey()
268 const char *path, FILE *f, u_int note) in load_hostkeys_file() argument
278 NULL, HKF_WANT_MATCH|HKF_WANT_PARSE_KEY, note)) != 0) { in load_hostkeys_file()
288 u_int note) in load_hostkeys() argument
297 load_hostkeys_file(hostkeys, host, path, f, note); in load_hostkeys()
750 void *ctx, const char *host, const char *ip, u_int options, u_int note) in hostkeys_foreach_file() argument
778 lineinfo.note = note; in hostkeys_foreach_file()
920 const char *host, const char *ip, u_int options, u_int note) in hostkeys_foreach() argument
930 options, note); in hostkeys_foreach()
/freebsd-13.1/usr.bin/ldd/
H A Dldd.c271 const Elf_Note *note; in has_freebsd_abi_tag() local
305 if (len < sizeof(*note)) in has_freebsd_abi_tag()
308 note = (const void *)buf; in has_freebsd_abi_tag()
309 buf += sizeof(*note); in has_freebsd_abi_tag()
310 len -= sizeof(*note); in has_freebsd_abi_tag()
312 namesz = roundup2(note->n_namesz, sizeof(uint32_t)); in has_freebsd_abi_tag()
313 descsz = roundup2(note->n_descsz, sizeof(uint32_t)); in has_freebsd_abi_tag()
318 if (note->n_namesz == sizeof(ELF_NOTE_FREEBSD) && in has_freebsd_abi_tag()
319 strncmp(name, ELF_NOTE_FREEBSD, note->n_namesz) == 0 && in has_freebsd_abi_tag()
320 note->n_type == NT_FREEBSD_ABI_TAG && in has_freebsd_abi_tag()
[all …]
/freebsd-13.1/sys/amd64/linux32/
H A Dlinux32_vdso.lds.s21 .note : { *(.note.*) } :text :note
50 note PT_NOTE FLAGS(4); /* PF_R */
/freebsd-13.1/sys/amd64/linux/
H A Dlinux_vdso.lds.s20 .note : { *(.note.*) } :text :note
49 note PT_NOTE FLAGS(4); /* PF_R */
/freebsd-13.1/sys/i386/linux/
H A Dlinux_vdso.lds.s21 .note : { *(.note.*) } :text :note
50 note PT_NOTE FLAGS(4); /* PF_R */
/freebsd-13.1/sys/compat/cloudabi/
H A Dcloudabi_vdso.lds20 .note : { *(.note.*) } :text :note
49 note PT_NOTE FLAGS(4); /* PF_R */
/freebsd-13.1/share/examples/diskless/
H A DREADME.TEMPLATING84 /kernel* ( note 2 )
85 /dev ( note 3 )
86 /var ( note 4 )
87 /home ( note 4 )
91 /usr/home ( note 4 )
92 /usr/crash ( note 5 )
93 /usr/obj ( note 5 )
94 /usr/ports ( note 5 )
95 /usr/src ( note 5 )
96 /usr/local/crack ( note 5 )
[all …]
/freebsd-13.1/tools/regression/netinet/ipdivert/
H A Dipdivert.c59 fail(const char *test, const char *note) in fail() argument
62 fprintf(stderr, "%s - %s: FAIL (%s)\n", test, note, strerror(errno)); in fail()
67 failx(const char *test, const char *note) in failx() argument
70 fprintf(stderr, "%s - %s: FAIL\n", test, note); in failx()
/freebsd-13.1/contrib/libxo/tests/gettext/saved/
H A Dgt_01.HP.out25 <div class="note">yebay</div>
30 <div class="note">yesbay</div>
35 <div class="note">yezbay</div>
40 <div class="note">yezbay</div>
45 <div class="note">yezbay</div>
56 <div class="note">ldb2</div>
69 <div class="note">yezbay</div>
82 <div class="note">ldb2</div>
95 <div class="note">arzlevanezmay</div>
H A Dgt_01.H.out1note">yebay</div></div><div class="line"><div class="data" data-tag="bytes">1</div><div class="pad…
H A Dgt_01.HIPx.out25 <div class="note">yebay</div>
30 <div class="note">yesbay</div>
35 <div class="note">yezbay</div>
40 <div class="note">yezbay</div>
45 <div class="note">yezbay</div>
56 <div class="note">ldb2</div>
69 <div class="note">yezbay</div>
82 <div class="note">ldb2</div>
95 <div class="note">arzlevanezmay</div>
/freebsd-13.1/lib/csu/arm/
H A Dcrt1_s.S69 .section .note.tag,"a",%note
79 .section .note.GNU-stack,"",%progbits
/freebsd-13.1/sys/kern/
H A Dimgact_elf.c227 p = (uintptr_t)(note + 1); in __elfN()
252 p = (uintptr_t)(note + 1); in kfreebsd_trans_osrel()
2166 Elf_Note *note; in __elfN() local
2174 note->n_descsz = size; in __elfN()
2175 note->n_type = type; in __elfN()
2176 buf += sizeof(*note); in __elfN()
2195 Elf_Note note; in __elfN() local
2208 sbuf_bcat(sb, &note, sizeof(note)); in __elfN()
2212 if (note.n_descsz == 0) in __elfN()
2752 for (i = 0; i < 100 && note >= note0 && note < note_end; i++) { in __elfN()
[all …]
/freebsd-13.1/lib/csu/common/
H A Dfeature_note.S34 .section .note.tag,"a",%note
H A Dignore_init_note.S35 .section .note.tag,"a",%note
H A Dcrtbrand.S41 .section .note.tag,"aG",%note,.freebsd.noteG,comdat
/freebsd-13.1/sys/conf/
H A Dldscript.mips.octeon126 .note.gnu.build-id : {
28 *(.note.gnu.build-id)
/freebsd-13.1/sys/contrib/device-tree/
H A DCOPYING3 SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note
12 LICENSES/exceptions/Linux-syscall-note
/freebsd-13.1/contrib/libxo/tests/core/saved/
H A Dtest_02.H.out5note">bytes</div></div><div class="line"><div class="data" data-tag="bytes">1</div><div class="pad…
H A Dtest_02.HP.out59 <div class="note">bytes</div>
64 <div class="note">byte</div>
69 <div class="note">bytes</div>
74 <div class="note">bytes</div>
79 <div class="note">bytes</div>
88 <div class="note">mbufs &lt;&amp;&gt; in use (current/cache/total)</div>
119 <div class="note">packets here/there/everywhere</div>
124 <div class="note">packets here/there/everywhere</div>

12345678910>>...28