Home
last modified time | relevance | path

Searched refs:SELFMAG (Results 1 – 23 of 23) sorted by relevance

/third_party/rust/crates/rustix/src/backend/linux_raw/
Delf.rs9 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/
Delfxx.h77 return (memcmp (ei->image, ELFMAG, SELFMAG) == 0 in elf_w()
Delfxx.c594 if (!(memcmp (elf, ELFMAG, SELFMAG) == 0 in calc_elf_file_size()
/third_party/elfutils/libelf/
Dcommon.h47 if (len >= EI_NIDENT && memcmp (buf, ELFMAG, SELFMAG) == 0) in determine_kind()
Delf32_updatenull.c57 if (memcmp (&ehdr->e_ident[EI_MAG0], ELFMAG, SELFMAG) != 0) in ELFW()
59 memcpy (&ehdr->e_ident[EI_MAG0], ELFMAG, SELFMAG); in ELFW()
Delf.h117 #define SELFMAG 4 macro
/third_party/elfutils/libasm/
Dasm_begin.c104 memcpy (&ehdr->e_ident[EI_MAG0], ELFMAG, SELFMAG); in prepare_binary_output()
/third_party/skia/third_party/externals/angle2/util/posix/
Dcrash_handler_posix.cpp317 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.c78 if (memcmp(&elf_header32, ELFMAG, SELFMAG) != 0) in _UCD_create()
/third_party/rust/crates/rustix/src/backend/linux_raw/param/
Dauxv.rs318 if hdr.e_ident[..SELFMAG] != ELFMAG { in check_elf_base()
/third_party/elfutils/libdwfl/
Delf-from-memory.c92 if (memcmp (buffer, ELFMAG, SELFMAG) != 0) in elf_from_remote_memory()
Ddwfl_segment_report_module.c342 || memcmp (buffer, ELFMAG, SELFMAG) != 0) in dwfl_segment_report_module()
/third_party/libunwind/include/mingw/
Dfreebsd-elf_common.h72 #define SELFMAG 4 /* magic string size */ macro
/third_party/libunwind/include/win/
Dfreebsd-elf_common.h72 #define SELFMAG 4 /* magic string size */ macro
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/
Dsymbolize_elf.inc463 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/
Delf.h85 #define SELFMAG 4 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Delf.h85 #define SELFMAG 4 macro
/third_party/musl/porting/uniproton/kernel/include/
Delf.h85 #define SELFMAG 4 macro
/third_party/musl/porting/liteos_m/kernel/include/
Delf.h85 #define SELFMAG 4 macro
/third_party/musl/include/
Delf.h85 #define SELFMAG 4 macro
/third_party/musl/ndk_musl_include/
Delf.h85 #define SELFMAG 4 macro
/third_party/rust/crates/libc/libc-test/semver/
Dlinux.txt2148 SELFMAG
/third_party/rust/crates/libc/src/unix/linux_like/linux/
Dmod.rs1396 pub const SELFMAG: usize = 4; constant