Lines Matching refs:DL_ERR

190     DL_ERR("can't read file \"%s\": %s", name_.c_str(), strerror(errno));  in ReadElfHeader()
195 DL_ERR("\"%s\" is too small to be an ELF executable: only found %zd bytes", name_.c_str(), in ReadElfHeader()
204 DL_ERR("\"%s\" has bad ELF magic", name_.c_str()); in VerifyElfHeader()
214 DL_ERR("\"%s\" is 32-bit instead of 64-bit", name_.c_str()); in VerifyElfHeader()
216 DL_ERR("\"%s\" has unknown ELF class: %d", name_.c_str(), elf_class); in VerifyElfHeader()
223 DL_ERR("\"%s\" is 64-bit instead of 32-bit", name_.c_str()); in VerifyElfHeader()
225 DL_ERR("\"%s\" has unknown ELF class: %d", name_.c_str(), elf_class); in VerifyElfHeader()
232 DL_ERR("\"%s\" not little-endian: %d", name_.c_str(), header_.e_ident[EI_DATA]); in VerifyElfHeader()
237 DL_ERR("\"%s\" has unexpected e_type: %d", name_.c_str(), header_.e_type); in VerifyElfHeader()
242 DL_ERR("\"%s\" has unexpected e_version: %d", name_.c_str(), header_.e_version); in VerifyElfHeader()
247 DL_ERR("\"%s\" has unexpected e_machine: %d", name_.c_str(), header_.e_machine); in VerifyElfHeader()
301 DL_ERR("\"%s\" has invalid e_phnum: %zd", name_.c_str(), phdr_num_); in ReadProgramHeaders()
316 DL_ERR("\"%s\" phdr mmap failed: %s", name_.c_str(), strerror(errno)); in ReadProgramHeaders()
342 DL_ERR("\"%s\" shdr mmap failed: %s", name_.c_str(), strerror(errno)); in ReadSectionHeaders()
431 DL_ERR("\"%s\" dynamic section mmap failed: %s", name_.c_str(), strerror(errno)); in ReadDynamicSection()
444 DL_ERR("\"%s\" strtab section mmap failed: %s", name_.c_str(), strerror(errno)); in ReadDynamicSection()
543 DL_ERR("\"%s\" has no loadable segments", name_.c_str()); in ReserveAddressSpace()
573 DL_ERR("reserved address space %zd smaller than %zd bytes needed for \"%s\"", in ReserveAddressSpace()
579 DL_ERR("couldn't reserve %zd bytes of address space for \"%s\"", load_size_, name_.c_str()); in ReserveAddressSpace()
584 DL_ERR("couldn't reserve %zd bytes of address space at %p for \"%s\"", in ReserveAddressSpace()
623 DL_ERR("\"%s\" invalid file size: %" PRId64, name_.c_str(), file_size_); in LoadSegments()
628 DL_ERR("invalid ELF file \"%s\" load segment[%zd]:" in LoadSegments()
655 DL_ERR("couldn't map \"%s\" segment %zd: %s", name_.c_str(), i, strerror(errno)); in LoadSegments()
681 DL_ERR("couldn't zero fill \"%s\" gap: %s", name_.c_str(), strerror(errno)); in LoadSegments()
1078 DL_ERR("can't find loaded phdr for \"%s\"", name_.c_str()); in FindPhdr()
1099 DL_ERR("\"%s\" loaded phdr %p not in loadable segment", in CheckPhdr()