Home
last modified time | relevance | path

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

12345678910>>...31

/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp233 // Check we found a signal in a SIGINFO note. in DoLoadCore()
242 // PRSTATUS note. in DoLoadCore()
477 // Parse a FreeBSD NT_PRSTATUS note - see FreeBSD sys/procfs.h for details. in ParseFreeBSDPrStatus()
505 // Parse a FreeBSD NT_PRPSINFO note - see FreeBSD sys/procfs.h for details. in ParseFreeBSDPrPsInfo()
588 ELFNote note = ELFNote(); in parseSegment()
589 if (!note.Parse(segment, &offset)) in parseSegment()
591 "Unable to parse note segment", llvm::inconvertibleErrorCode()); in parseSegment()
594 size_t note_size = llvm::alignTo(note.n_descsz, 4); in parseFreeBSDNotes()
596 result.push_back({note, DataExtractor(segment, note_start, note_size)}); in parseFreeBSDNotes()
612 for (const auto &note in parseFreeBSDNotes()
578 ELFNote note = ELFNote(); parseSegment() local
602 for (const auto &note : notes) { parseFreeBSDNotes() local
681 for (const auto &note : notes) { parseNetBSDNotes() local
832 for (const auto &note : notes) { parseOpenBSDNotes() local
879 for (const auto &note : notes) { parseLinuxNotes() local
[all...]
/freebsd-src/crypto/openssl/test/recipes/
H A D01-test_symbol_presence.t36 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 D70-test_sslvertol.t40 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 D25-test_crl.t59 note "Got ", $lines[0];
60 note "Expected ", $str;
69 note "Got ", $lines[0];
70 note "Expected ", $str;
H A D15-test_genrsa.t43 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-src/usr.bin/elfctl/
H A Delfctl.c366 Elf_Note note; in get_file_features() local
391 if (read(fd, &note, 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-src/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_globals.cpp60 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-src/sys/arm64/linux/
H A Dlinux_vdso.lds.s19 *(.note.GNU-stack .note.gnu.property)
22 .note : { *(.note.*) } :text :note
50 note PT_NOTE FLAGS(4); /* PF_R */
/freebsd-src/sys/dev/beri/virtio/
H A Dvirtio_mmio_platform.c
/freebsd-src/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);
/freebsd-src/usr.bin/ldd/
H A Dldd.c270 const Elf_Note *note; in has_freebsd_abi_tag() local
304 if (len < sizeof(*note)) in has_freebsd_abi_tag()
307 note = (const void *)buf; in has_freebsd_abi_tag()
308 buf += sizeof(*note); in has_freebsd_abi_tag()
309 len -= sizeof(*note); in has_freebsd_abi_tag()
311 namesz = roundup2(note->n_namesz, sizeof(uint32_t)); in has_freebsd_abi_tag()
312 descsz = roundup2(note->n_descsz, sizeof(uint32_t)); in has_freebsd_abi_tag()
317 if (note->n_namesz == sizeof(ELF_NOTE_FREEBSD) && in has_freebsd_abi_tag()
318 strncmp(name, ELF_NOTE_FREEBSD, note->n_namesz) == 0 && in has_freebsd_abi_tag()
319 note->n_type == NT_FREEBSD_ABI_TAG && in has_freebsd_abi_tag()
[all …]
/freebsd-src/sys/amd64/linux/
H A Dlinux_vdso.lds.s18 .note : { *(.note.*) } :text :note
47 note PT_NOTE FLAGS(4); /* PF_R */
/freebsd-src/sys/amd64/linux32/
H A Dlinux32_vdso.lds.s19 .note : { *(.note.*) } :text :note
48 note PT_NOTE FLAGS(4); /* PF_R */
/freebsd-src/sys/i386/linux/
H A Dlinux_vdso.lds.s19 .note : { *(.note.*) } :text :note
48 note PT_NOTE FLAGS(4); /* PF_R */
/freebsd-src/lib/csu/common/
H A Dfeature_note.S32 .section .note.tag,"aR",%note
42 .section .note.GNU-stack,"",%progbits
H A Dignore_init_note.S33 .section .note.tag,"aR",%note
43 .section .note.GNU-stack,"",%progbits
H A Dcrtbrand.S34 * Special ".note.tag" entry specifying the ABI version. See
39 .section .note.tag,"aGR",%note,.freebsd.noteG,comdat
49 .section .note.GNU-stack,"",%progbits
/freebsd-src/lib/libclang_rt/asan/
H A Dwarn.txt
/freebsd-src/tools/regression/netinet/ipdivert/
H A Dipdivert.c57 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-src/contrib/libxo/tests/gettext/saved/
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.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>
/freebsd-src/lib/csu/arm/
H A Dcrt1_s.S67 .section .note.tag,"a",%note
77 .section .note.GNU-stack,"",%progbits
/freebsd-src/share/examples/sound/
H A Dmidi.c69 printf("Channel %d, note on %d, velocity %d\n", in main()
73 printf("Channel %d, note off %d, velocity %d\n", in main()
/freebsd-src/sys/kern/
H A Dimgact_elf.c95 static bool __elfN(freebsd_trans_osrel)(const Elf_Note *note,
97 static bool kfreebsd_trans_osrel(const Elf_Note *note, int32_t *osrel);
239 __elfN(freebsd_trans_osrel)(const Elf_Note *note, int32_t *osrel) in __elfN()
243 p = (uintptr_t)(note + 1); in __elfN()
244 p += roundup2(note->n_namesz, ELF_NOTE_ROUNDSIZE); in __elfN()
262 kfreebsd_trans_osrel(const Elf_Note *note, int32_t *osrel) in kfreebsd_trans_osrel() argument
267 p = (uintptr_t)(note + 1); in kfreebsd_trans_osrel()
268 p += roundup2(note->n_namesz, ELF_NOTE_ROUNDSIZE); in kfreebsd_trans_osrel()
351 * field, and (4) the ".note.ABI-tag" ELF section. in __elfN()
354 /* Look for an ".note in __elfN()
2059 Elf_Note *note; __elfN() local
2088 Elf_Note note; __elfN() local
2719 const Elf_Note *note, *note0, *note_end; __elfN() local
2796 brandnote_cb(const Elf_Note * note,void * arg0,bool * res) brandnote_cb() argument
2825 note_fctl_cb(const Elf_Note * note,void * arg0,bool * res) note_fctl_cb() argument
[all...]
/freebsd-src/usr.bin/gcore/
H A Delfcore.c406 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, &note, sizeof(note)); in elf_putregnote()
426 sbuf_bcat(sb, "FreeBSD", note.n_namesz); in elf_putregnote()
440 Elf_Note note; in elf_putnote() local
446 note.n_namesz = 8; /* strlen("FreeBSD") + 1 */ in elf_putnote()
447 note.n_descsz = descsz; in elf_putnote()
448 note.n_type = type; in elf_putnote()
[all …]

12345678910>>...31