| /openbmc/qemu/target/arm/ |
| H A D | arch_dump.c | 95 static void aarch64_note_init(struct aarch64_note *note, DumpState *s, in aarch64_note_init() argument 99 memset(note, 0, sizeof(*note)); in aarch64_note_init() 101 note->hdr.n_namesz = cpu_to_dump32(s, namesz); in aarch64_note_init() 102 note->hdr.n_descsz = cpu_to_dump32(s, descsz); in aarch64_note_init() 103 note->hdr.n_type = cpu_to_dump32(s, type); in aarch64_note_init() 105 memcpy(note->name, name, namesz); in aarch64_note_init() 112 struct aarch64_note note; in aarch64_write_elf64_prfpreg() local 115 aarch64_note_init(¬e, s, "CORE", 5, NT_PRFPREG, sizeof(note.vfp)); in aarch64_write_elf64_prfpreg() 119 note.vfp.vregs[2 * i + 0] = cpu_to_dump64(s, q[0]); in aarch64_write_elf64_prfpreg() 120 note.vfp.vregs[2 * i + 1] = cpu_to_dump64(s, q[1]); in aarch64_write_elf64_prfpreg() [all …]
|
| /openbmc/qemu/target/riscv/ |
| H A D | arch_dump.c | 54 static void riscv64_note_init(struct riscv64_note *note, DumpState *s, in riscv64_note_init() argument 58 memset(note, 0, sizeof(*note)); in riscv64_note_init() 60 note->hdr.n_namesz = cpu_to_dump32(s, namesz); in riscv64_note_init() 61 note->hdr.n_descsz = cpu_to_dump32(s, descsz); in riscv64_note_init() 62 note->hdr.n_type = cpu_to_dump32(s, type); in riscv64_note_init() 64 memcpy(note->name, name, namesz); in riscv64_note_init() 70 struct riscv64_note note; in riscv_cpu_write_elf64_note() local 76 riscv64_note_init(¬e, s, name, sizeof(name), in riscv_cpu_write_elf64_note() 77 NT_PRSTATUS, sizeof(note.prstatus)); in riscv_cpu_write_elf64_note() 79 note.prstatus.pr_pid = cpu_to_dump32(s, cpuid); in riscv_cpu_write_elf64_note() [all …]
|
| /openbmc/qemu/target/loongarch/ |
| H A D | arch_dump.c | 78 static void loongarch_note_init(struct loongarch_note *note, DumpState *s, in loongarch_note_init() argument 82 memset(note, 0, sizeof(*note)); in loongarch_note_init() 84 note->hdr.n_namesz = cpu_to_dump32(s, namesz); in loongarch_note_init() 85 note->hdr.n_descsz = cpu_to_dump32(s, descsz); in loongarch_note_init() 86 note->hdr.n_type = cpu_to_dump32(s, type); in loongarch_note_init() 88 memcpy(note->name, name, namesz); in loongarch_note_init() 95 struct loongarch_note note; in loongarch_write_elf64_fprpreg() local 98 loongarch_note_init(¬e, s, "CORE", 5, NT_PRFPREG, sizeof(note.fpu)); in loongarch_write_elf64_fprpreg() 99 note.fpu.fcsr = cpu_to_dump64(s, env->fcsr0); in loongarch_write_elf64_fprpreg() 100 note.fpu.fcc = cpu_to_dump64(s, read_fcc(env)); in loongarch_write_elf64_fprpreg() [all …]
|
| /openbmc/qemu/target/ppc/ |
| H A D | arch_dump.c | 100 Note note; member 110 Note *note = &arg->note; in ppc_write_elf_prstatus() local 113 note->hdr.n_type = cpu_to_dump32(s, NT_PRSTATUS); in ppc_write_elf_prstatus() 115 prstatus = ¬e->contents.prstatus; in ppc_write_elf_prstatus() 140 Note *note = &arg->note; in ppc_write_elf_fpregset() local 143 note->hdr.n_type = cpu_to_dump32(s, NT_PRFPREG); in ppc_write_elf_fpregset() 145 fpregset = ¬e->contents.fpregset; in ppc_write_elf_fpregset() 159 Note *note = &arg->note; in ppc_write_elf_vmxregset() local 162 note->hdr.n_type = cpu_to_dump32(s, NT_PPC_VMX); in ppc_write_elf_vmxregset() 163 vmxregset = ¬e->contents.vmxregset; in ppc_write_elf_vmxregset() [all …]
|
| /openbmc/qemu/target/s390x/ |
| H A D | arch_dump.c | 91 static void s390x_write_elf64_prstatus(Note *note, S390CPU *cpu, int id) in s390x_write_elf64_prstatus() argument 96 note->hdr.n_type = cpu_to_be32(NT_PRSTATUS); in s390x_write_elf64_prstatus() 98 regs = &(note->contents.prstatus.regs); in s390x_write_elf64_prstatus() 105 note->contents.prstatus.pid = cpu_to_be32(id); in s390x_write_elf64_prstatus() 108 static void s390x_write_elf64_fpregset(Note *note, S390CPU *cpu, int id) in s390x_write_elf64_fpregset() argument 113 note->hdr.n_type = cpu_to_be32(NT_FPREGSET); in s390x_write_elf64_fpregset() 114 note->contents.fpregset.fpc = cpu_to_be32(cpu->env.fpc); in s390x_write_elf64_fpregset() 116 note->contents.fpregset.fprs[i] = cpu_to_be64(*get_freg(cs, i)); in s390x_write_elf64_fpregset() 120 static void s390x_write_elf64_vregslo(Note *note, S390CPU *cpu, int id) in s390x_write_elf64_vregslo() argument 124 note->hdr.n_type = cpu_to_be32(NT_S390_VXRS_LOW); in s390x_write_elf64_vregslo() [all …]
|
| /openbmc/qemu/target/i386/ |
| H A D | arch_dump.c | 48 Elf64_Nhdr *note; in x86_64_write_elf64_note() local 85 note = g_malloc0(note_size); in x86_64_write_elf64_note() 86 note->n_namesz = cpu_to_le32(name_size); in x86_64_write_elf64_note() 87 note->n_descsz = cpu_to_le32(descsz); in x86_64_write_elf64_note() 88 note->n_type = cpu_to_le32(NT_PRSTATUS); in x86_64_write_elf64_note() 89 buf = (char *)note; in x86_64_write_elf64_note() 97 ret = f(note, note_size, s); in x86_64_write_elf64_note() 98 g_free(note); in x86_64_write_elf64_note() 154 Elf64_Nhdr *note; in x86_write_elf64_note() local 163 note = g_malloc0(note_size); in x86_write_elf64_note() [all …]
|
| /openbmc/qemu/tests/tcg/x86_64/system/ |
| H A D | kernel.ld | 3 note PT_NOTE FLAGS(0); /* ___ */ 20 *(.note.gnu*) 24 *(.note.*) 25 } :note
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/netperf/files/ |
| H A D | 0001-Fix-too-many-arguments-error-occurring-in-gcc-15.patch | 11 ../../git/src/netlib.h:690:26: note: declared here 19 ../../git/src/netlib.h:651:17: note: previous declaration of 'HIST_purge' with type 'void(void)' 26 ../../git/src/netlib.h:679:26: note: declared here 33 ../../git/src/netlib.h:679:26: note: declared here 40 ../../git/src/netlib.h:679:26: note: declared here 47 ../../git/src/netlib.h:679:26: note: declared here 53 ../../git/src/netlib.h:679:26: note: declared here 60 ../../git/src/netlib.h:679:26: note: declared here 66 ../../git/src/netlib.h:679:26: note: declared here 73 ../../git/src/netlib.h:679:26: note: declared here [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl/ |
| H A D | 0002-Fix-incompatible-pointer-types-error-with-gcc-15.patch | 12 ../../git/saslauthd/md5.c:335:9: note: expected 'POINTER' {aka 'unsigned char *'} but argument is o… 16 ../include/md5global.h:16:24: note: 'POINTER' declared here 24 ../../git/saslauthd/md5.c:335:9: note: expected 'POINTER' {aka 'unsigned char *'} but argument is o… 27 ../include/md5global.h:16:24: note: 'POINTER' declared here 35 ../../git/saslauthd/md5.c:335:9: note: expected 'POINTER' {aka 'unsigned char *'} but argument is o… 38 ../include/md5global.h:16:24: note: 'POINTER' declared here 47 ../../git/saslauthd/md5.c:335:9: note: expected 'POINTER' {aka 'unsigned char *'} but argument is o… 50 ../include/md5global.h:16:24: note: 'POINTER' declared here 59 ../../git/saslauthd/md5.c:335:9: note: expected 'POINTER' {aka 'unsigned char *'} but argument is o… 62 ../include/md5global.h:16:24: note: 'POINTER' declared here [all …]
|
| /openbmc/qemu/scripts/ |
| H A D | dump-guest-memory.py | 124 note = get_arch_note(self.endianness, len(n_name), len(n_desc)) 125 note.n_namesz = len(n_name) + 1 126 note.n_descsz = len(n_desc) 127 note.n_name = n_name.encode() 128 note.n_type = n_type 134 ctypes.memmove(note.n_desc, n_desc.encode(), len(n_desc)) 136 self.notes.append(note) 137 self.segments[0].p_filesz += ctypes.sizeof(note) 138 self.segments[0].p_memsz += ctypes.sizeof(note) 151 note = get_arch_note(self.endianness, [all …]
|
| /openbmc/openbmc/poky/meta-selftest/classes/ |
| H A D | test_events.bbclass | 2 bb.note("Test for bb.event.BuildStarted") 5 bb.note("Test for bb.event.BuildCompleted") 8 bb.note("Test for bb.event.InvalidEvent")
|
| /openbmc/openbmc/poky/meta/lib/oe/ |
| H A D | rootfs.py | 114 bb.note(" Renaming the original rootfs...") 121 bb.note(" Creating debug rootfs...") 124 bb.note(" Copying back package database...") 149 bb.note(" Install complementary '*-dbg' packages...") 153 bb.note(" Install complementary '*-src' packages...") 163 bb.note(" Install extra debug packages...") 166 bb.note(" Removing package database...") 173 bb.note(" Rename debug rootfs...") 180 bb.note(" Restoring original rootfs...") 192 bb.note("###### Generate rootfs #######") [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libsmi/libsmi/ |
| H A D | 0001-Fix-build-failure-with-gcc-15.patch | 13 parser-yang.h:16:12: note: declared here 21 parser-yang.h:16:12: note: previous declaration of 'yangparse' with type 'int(void)' 30 smi-data.c:42:12: note: declared here 37 parser-smi.h:27:12: note: previous declaration of 'smiparse' with type 'int(void)' 43 parser-smi.c:3207:1: note: in expansion of macro 'yyparse' 46 parser-smi.h:27:12: note: previous declaration of 'smiparse' with type 'int(void)' 52 parser-yang.c:2312:1: note: in expansion of macro 'yyparse' 55 parser-yang.h:16:12: note: previous declaration of 'yangparse' with type 'int(void)' 63 parser-yang.h:16:12: note: previous declaration of 'yangparse' with type 'int(void)' 76 error.h:25:44: note: in definition of macro 'yyerror' [all …]
|
| /openbmc/qemu/linux-headers/LICENSES/exceptions/ |
| H A D | Linux-syscall-note | 1 SPDX-Exception-Identifier: Linux-syscall-note 2 SPDX-URL: https://spdx.org/licenses/Linux-syscall-note.html 10 SPDX-License-Identifier: <SPDX-License> WITH Linux-syscall-note 16 Also note that the GPL below is copyrighted by the Free Software 20 Also note that the only valid version of the GPL as far as the kernel
|
| /openbmc/openbmc/poky/meta/lib/oe/package_manager/ |
| H A D | __init__.py | 27 bb.note("Executing '%s' ..." % index_cmd) 30 bb.note(result) 177 bb.note("Initializing intercept dir for %s" % self.target_rootfs) 211 bb.note("If an image is being built, the postinstalls for the following packages " 222 bb.note("Running intercept scripts:") 237 …bb.note("The postinstall intercept hook '%s' could not be executed due to missing wine support, de… 241 bb.note("> Executing %s intercept ..." % script) 245 if output: bb.note(output.decode("utf-8")) 247 bb.note("Exit code %d. Output:\n%s" % (e.returncode, e.output.decode("utf-8"))) 252 …bb.note("The postinstall intercept hook '%s' could not be executed due to missing qemu usermode su… [all …]
|
| /openbmc/qemu/linux-user/x86_64/ |
| H A D | vdso.ld | 33 note PT_NOTE FLAGS(4); 44 .note : { *(.note*) } :load :note
|
| /openbmc/qemu/linux-user/arm/ |
| H A D | vdso.ld | 27 note PT_NOTE FLAGS(4); 38 .note : { *(.note*) } :load :note
|
| /openbmc/qemu/linux-user/ppc/ |
| H A D | vdso-32.ld | 30 note PT_NOTE FLAGS(4); 41 .note : { *(.note*) } :load :note
|
| H A D | vdso-64.ld | 28 note PT_NOTE FLAGS(4); 39 .note : { *(.note*) } :load :note
|
| /openbmc/qemu/linux-user/i386/ |
| H A D | vdso.ld | 36 note PT_NOTE FLAGS(4); 47 .note : { *(.note*) } :load :note
|
| /openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-utils/udevil/files/ |
| H A D | Fix-build-with-gcc15.patch | 12 …aihub-webos-linux/udevil/0.4.4/recipe-sysroot/usr/include/signal.h:88:57: note: expected '__sighan… 15 ../../udevil-0.4.4/src/udevil.c:4798:6: note: 'command_monitor_finalize' declared here 18 …aihub-webos-linux/udevil/0.4.4/recipe-sysroot/usr/include/signal.h:72:16: note: '__sighandler_t' d… 28 …aihub-webos-linux/udevil/0.4.4/recipe-sysroot/usr/include/signal.h:88:57: note: expected '__sighan… 31 ../../udevil-0.4.4/src/udevil.c:4916:6: note: 'command_interrupt' declared here 34 …aihub-webos-linux/udevil/0.4.4/recipe-sysroot/usr/include/signal.h:72:16: note: '__sighandler_t' d…
|
| /openbmc/qemu/linux-user/s390x/ |
| H A D | vdso.ld | 32 note PT_NOTE FLAGS(4); 43 .note : { *(.note*) } :load :note
|
| /openbmc/openbmc/meta-openembedded/meta-gnome/recipes-graphics/cogl/cogl-1.0/ |
| H A D | 0001-cogl-path-add-explicit-cast-to-avoid-an-incompatible.patch | 22 |../../cogl-1.22.8/cogl-path/tesselator/tesselator.h:57:70: note: expected 'void (*)(void)' but arg… 25 |../../cogl-1.22.8/cogl-path/cogl-path.c:1094:1: note: '_cogl_path_tesselator_begin' declared here 33 |../../cogl-1.22.8/cogl-path/tesselator/tesselator.h:57:70: note: expected 'void (*)(void)' but arg… 36 |../../cogl-1.22.8/cogl-path/cogl-path.c:1164:1: note: '_cogl_path_tesselator_vertex' declared here 44 |../../cogl-1.22.8/cogl-path/tesselator/tesselator.h:57:70: note: expected 'void (*)(void)' but arg… 47 |../../cogl-1.22.8/cogl-path/cogl-path.c:1223:1: note: '_cogl_path_tesselator_end' declared here 55 |../../cogl-1.22.8/cogl-path/tesselator/tesselator.h:57:70: note: expected 'void (*)(void)' but arg… 58 |../../cogl-1.22.8/cogl-path/cogl-path.c:1229:1: note: '_cogl_path_tesselator_combine' declared here
|
| /openbmc/qemu/docs/specs/ |
| H A D | vmcoreinfo.rst | 41 The entry gives location and size of an ELF note that is appended in 44 The note format/class must be of the target bitness and the size must 47 If the ELF note name is ``VMCOREINFO``, it is expected to be the Linux 48 vmcoreinfo note (see `the kernel documentation for its format 54 ancient tools not handling the ``VMCOREINFO`` note.
|
| /openbmc/qemu/linux-user/loongarch64/ |
| H A D | vdso.ld | 28 note PT_NOTE FLAGS(4); 44 .note : { *(.note*) } :load :note
|