/third_party/rust/crates/rustix/src/backend/linux_raw/ |
D | elf.rs | 9 pub(super) const SELFMAG: usize = 4; constant 10 pub(super) const ELFMAG: [u8; SELFMAG] = [0x7f, b'E', b'L', b'F'];
|
/third_party/libunwind/src/ |
D | elfxx.h | 77 return (memcmp (ei->image, ELFMAG, SELFMAG) == 0 in elf_w()
|
D | elfxx.c | 594 if (!(memcmp (elf, ELFMAG, SELFMAG) == 0 in calc_elf_file_size()
|
/third_party/elfutils/libelf/ |
D | common.h | 47 if (len >= EI_NIDENT && memcmp (buf, ELFMAG, SELFMAG) == 0) in determine_kind()
|
D | elf32_updatenull.c | 57 if (memcmp (&ehdr->e_ident[EI_MAG0], ELFMAG, SELFMAG) != 0) in ELFW() 59 memcpy (&ehdr->e_ident[EI_MAG0], ELFMAG, SELFMAG); in ELFW()
|
D | elf.h | 117 #define SELFMAG 4 macro
|
/third_party/elfutils/libasm/ |
D | asm_begin.c | 104 memcpy (&ehdr->e_ident[EI_MAG0], ELFMAG, SELFMAG); in prepare_binary_output()
|
/third_party/skia/third_party/externals/angle2/util/posix/ |
D | crash_handler_posix.cpp | 317 static_assert(SELFMAG <= sizeof(ElfW(Ehdr)), "SELFMAG too large"); 320 memcmp(ehdr.e_ident, ELFMAG, SELFMAG) == 0)
|
/third_party/libunwind/src/coredump/ |
D | _UCD_create.c | 78 if (memcmp(&elf_header32, ELFMAG, SELFMAG) != 0) in _UCD_create()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/param/ |
D | auxv.rs | 318 if hdr.e_ident[..SELFMAG] != ELFMAG { in check_elf_base()
|
/third_party/elfutils/libdwfl/ |
D | elf-from-memory.c | 92 if (memcmp (buffer, ELFMAG, SELFMAG) != 0) in elf_from_remote_memory()
|
D | dwfl_segment_report_module.c | 342 || memcmp (buffer, ELFMAG, SELFMAG) != 0) in dwfl_segment_report_module()
|
/third_party/libunwind/include/mingw/ |
D | freebsd-elf_common.h | 72 #define SELFMAG 4 /* magic string size */ macro
|
/third_party/libunwind/include/win/ |
D | freebsd-elf_common.h | 72 #define SELFMAG 4 /* magic string size */ macro
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/ |
D | symbolize_elf.inc | 463 if (memcmp(elf_header.e_ident, ELFMAG, SELFMAG) != 0) { 1233 if (memcmp(obj->start_addr, ELFMAG, SELFMAG) != 0) {
|
/third_party/musl/porting/linux/user/include/ |
D | elf.h | 85 #define SELFMAG 4 macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | elf.h | 85 #define SELFMAG 4 macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | elf.h | 85 #define SELFMAG 4 macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | elf.h | 85 #define SELFMAG 4 macro
|
/third_party/musl/include/ |
D | elf.h | 85 #define SELFMAG 4 macro
|
/third_party/musl/ndk_musl_include/ |
D | elf.h | 85 #define SELFMAG 4 macro
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | linux.txt | 2148 SELFMAG
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
D | mod.rs | 1396 pub const SELFMAG: usize = 4; constant
|