| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
| H A D | ProcessElfCore.cpp | 578 ELFNote note = ELFNote(); in parseSegment() local 602 for (const auto ¬e : notes) { in parseFreeBSDNotes() local 616 switch (note.info.n_type) { in parseFreeBSDNotes() 632 m_auxv = DataExtractor(note.data, 4, note.data.GetByteSize() - 4); in parseFreeBSDNotes() 681 for (const auto ¬e : notes) { in parseNetBSDNotes() local 692 m_auxv = note.data; in parseNetBSDNotes() 838 switch (note.info.n_type) { in parseOpenBSDNotes() 843 m_auxv = note.data; in parseOpenBSDNotes() 880 if (note.info.n_name != "CORE" && note.info.n_name != "LINUX") in parseLinuxNotes() 893 switch (note.info.n_type) { in parseLinuxNotes() [all …]
|
| /freebsd-14.2/crypto/openssl/test/recipes/ |
| H A D | 01-test_symbol_presence.t | 36 note 69 note "Number of lines in \@nm_lines before massaging: ", scalar @nm_lines; 70 note "Number of lines in \@def_lines before massaging: ", scalar @def_lines; 81 note "Common symbol: $_"; 116 note "Number of lines in \@nm_lines after massaging: ", scalar @nm_lines; 117 note "Number of lines in \@def_lines after massaging: ", scalar @def_lines; 143 note "The following symbols are missing in ${shlibname}:"; 145 note " $_"; 149 note "The following symbols are extra in ${shlibname}:"; 151 note " $_";
|
| H A D | 70-test_sslvertol.t | 40 note("Checking enabled protocol $_"); 45 note("'$1', '$2', '$3' => $versionname"); 48 note("'$1', '$2' => $versionname"); 53 note("TLS versions we can expect: ", join(", ", @available_tls_versions)); 70 ok((note("Record version received: ".$record->version()), 88 ok((note("Record version received: ".$record->version()), 102 ok((note("Record version received: ".
|
| H A D | 25-test_crl.t | 59 note "Got ", $lines[0]; 60 note "Expected ", $str; 69 note "Got ", $lines[0]; 70 note "Expected ", $str;
|
| H A D | 15-test_genrsa.t | 43 note "Looking for lowest amount of bits"; 55 note 2 ** $checked, " bits is good"; 58 note 2 ** $checked, " bits is bad"; 64 note "Found lowest allowed amount of bits to be $good";
|
| /freebsd-14.2/usr.bin/elfctl/ |
| H A D | elfctl.c | 366 Elf_Note note; in get_file_features() local 391 if (read(fd, ¬e, sizeof(note)) < in get_file_features() 392 (ssize_t)sizeof(note)) { in get_file_features() 396 read_total += sizeof(note); in get_file_features() 399 note.n_namesz = bswap32(note.n_namesz); in get_file_features() 400 note.n_descsz = bswap32(note.n_descsz); in get_file_features() 401 note.n_type = bswap32(note.n_type); in get_file_features() 408 namesz = roundup2(note.n_namesz, 4); in get_file_features() 414 descsz = roundup2(note.n_descsz, 4); in get_file_features() 422 if (note.n_namesz != 8 || in get_file_features() [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_globals.cpp | 60 const char *note = reinterpret_cast<const char *>(base + phdr[i].p_vaddr); in HwasanGlobalsFor() local 61 const char *nend = note + phdr[i].p_memsz; in HwasanGlobalsFor() 64 while (note < nend) { in HwasanGlobalsFor() 65 auto *nhdr = reinterpret_cast<const ElfW(Nhdr) *>(note); in HwasanGlobalsFor() 66 const char *name = note + sizeof(ElfW(Nhdr)); in HwasanGlobalsFor() 72 note = desc + RoundUpTo(nhdr->n_descsz, 4); in HwasanGlobalsFor() 82 note + global_note->begin_relptr); in HwasanGlobalsFor() 84 note + global_note->end_relptr); in HwasanGlobalsFor()
|
| /freebsd-14.2/sys/arm64/linux/ |
| H A D | linux_vdso.lds.s | 19 *(.note.GNU-stack .note.gnu.property) 22 .note : { *(.note.*) } :text :note 50 note PT_NOTE FLAGS(4); /* PF_R */
|
| /freebsd-14.2/sys/dev/beri/virtio/ |
| H A D | virtio_mmio_platform.c | 173 int note; in platform_note() local 181 note = Q_NOTIFY; in platform_note() 183 note = Q_NOTIFY1; in platform_note() 185 note = 0; in platform_note() 188 note = Q_PFN; in platform_note() 191 note = Q_SEL; in platform_note() 194 note = 0; in platform_note() 197 if (note) { in platform_note() 203 PIO_SET(sc->pio_send, note, 1); in platform_note()
|
| /freebsd-14.2/crypto/openssh/ |
| H A D | hostfile.h | 31 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);
|
| /freebsd-14.2/usr.bin/ldd/ |
| H A D | ldd.c | 271 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-14.2/sys/amd64/linux/ |
| H A D | linux_vdso.lds.s | 18 .note : { *(.note.*) } :text :note 47 note PT_NOTE FLAGS(4); /* PF_R */
|
| /freebsd-14.2/sys/i386/linux/ |
| H A D | linux_vdso.lds.s | 19 .note : { *(.note.*) } :text :note 48 note PT_NOTE FLAGS(4); /* PF_R */
|
| /freebsd-14.2/sys/amd64/linux32/ |
| H A D | linux32_vdso.lds.s | 19 .note : { *(.note.*) } :text :note 48 note PT_NOTE FLAGS(4); /* PF_R */
|
| /freebsd-14.2/lib/csu/common/ |
| H A D | ignore_init_note.S | 33 .section .note.tag,"a",%note 43 .section .note.GNU-stack,"",%progbits
|
| H A D | feature_note.S | 32 .section .note.tag,"a",%note 42 .section .note.GNU-stack,"",%progbits
|
| H A D | crtbrand.S | 39 .section .note.tag,"aG",%note,.freebsd.noteG,comdat 49 .section .note.GNU-stack,"",%progbits
|
| /freebsd-14.2/lib/libclang_rt/asan/ |
| H A D | warn.txt | 5 …er-rt/lib/sanitizer_common/sanitizer_symbolizer_markup_constants.h:33:46: note: format string is d… 12 …er-rt/lib/sanitizer_common/sanitizer_symbolizer_markup_constants.h:36:48: note: format string is d… 19 …er-rt/lib/sanitizer_common/sanitizer_symbolizer_markup_constants.h:29:48: note: format string is d… 26 …er-rt/lib/sanitizer_common/sanitizer_symbolizer_markup_constants.h:39:50: note: format string is d… 33 …er-rt/lib/sanitizer_common/sanitizer_symbolizer_markup_constants.h:42:46: note: format string is d… 40 …er-rt/lib/sanitizer_common/sanitizer_symbolizer_markup_constants.h:42:51: note: format string is d… 47 …er-rt/lib/sanitizer_common/sanitizer_symbolizer_markup_constants.h:42:59: note: format string is d… 56 …er-rt/lib/sanitizer_common/sanitizer_symbolizer_markup_constants.h:42:67: note: format string is d…
|
| /freebsd-14.2/tools/regression/netinet/ipdivert/ |
| H A D | ipdivert.c | 57 fail(const char *test, const char *note) in fail() argument 60 fprintf(stderr, "%s - %s: FAIL (%s)\n", test, note, strerror(errno)); in fail() 65 failx(const char *test, const char *note) in failx() argument 68 fprintf(stderr, "%s - %s: FAIL\n", test, note); in failx()
|
| /freebsd-14.2/contrib/libxo/tests/gettext/saved/ |
| H A D | gt_01.HP.out | 25 <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 D | gt_01.H.out | 1 …note">yebay</div></div><div class="line"><div class="data" data-tag="bytes">1</div><div class="pad…
|
| /freebsd-14.2/lib/csu/arm/ |
| H A D | crt1_s.S | 67 .section .note.tag,"a",%note 77 .section .note.GNU-stack,"",%progbits
|
| /freebsd-14.2/sys/kern/ |
| H A D | imgact_elf.c | 2052 Elf_Note *note; in __elfN() local 2061 note->n_type = type; in __elfN() 2062 buf += sizeof(*note); in __elfN() 2081 Elf_Note note; in __elfN() local 2097 sbuf_bcat(sb, ¬e, sizeof(note)); in __elfN() 2284 .note = NT_PRSTATUS, 2328 .note = NT_FPREGSET, 2353 .note = NT_THRMISC, 2395 .note = NT_PTLWPINFO, 2746 for (i = 0; i < MAX_NOTES_LOOP && note >= note0 && note < note_end; in __elfN() [all …]
|
| /freebsd-14.2/usr.bin/gcore/ |
| H A D | elfcore.c | 406 Elf_Note note; in elf_putregnote() local 420 note.n_namesz = 8; /* strlen("FreeBSD") + 1 */ in elf_putregnote() 421 note.n_descsz = iov.iov_len; in elf_putregnote() 422 note.n_type = type; in elf_putregnote() 424 sbuf_bcat(sb, ¬e, sizeof(note)); in elf_putregnote() 426 sbuf_bcat(sb, "FreeBSD", note.n_namesz); in elf_putregnote() 440 Elf_Note note; in elf_putnote() local 447 note.n_descsz = descsz; in elf_putnote() 448 note.n_type = type; in elf_putnote() 450 sbuf_bcat(sb, ¬e, sizeof(note)); in elf_putnote() [all …]
|
| /freebsd-14.2/sys/i386/include/ |
| H A D | asmacros.h | 157 .pushsection .note.name, "a", @note ; \ 169 .pushsection .note.name, "a", @note ; \
|