Lines Matching full:c_str
187 DL_ERR("can't read file \"%s\": %s", name_.c_str(), strerror(errno));
192 DL_ERR("\"%s\" is too small to be an ELF executable: only found %zd bytes", name_.c_str(),
201 DL_ERR("\"%s\" has bad ELF magic", name_.c_str());
211 DL_ERR("\"%s\" is 32-bit instead of 64-bit", name_.c_str());
213 DL_ERR("\"%s\" has unknown ELF class: %d", name_.c_str(), elf_class);
220 DL_ERR("\"%s\" is 64-bit instead of 32-bit", name_.c_str());
222 DL_ERR("\"%s\" has unknown ELF class: %d", name_.c_str(), elf_class);
229 DL_ERR("\"%s\" not little-endian: %d", name_.c_str(), header_.e_ident[EI_DATA]);
234 DL_ERR("\"%s\" has unexpected e_type: %d", name_.c_str(), header_.e_type);
239 DL_ERR("\"%s\" has unexpected e_version: %d", name_.c_str(), header_.e_version);
244 DL_ERR("\"%s\" has unexpected e_machine: %d", name_.c_str(), header_.e_machine);
270 DL_ERR("\"%s\" has invalid e_phnum: %zd", name_.c_str(), phdr_num_);
278 name_.c_str(),
285 DL_ERR("\"%s\" phdr mmap failed: %s", name_.c_str(), strerror(errno));
297 DL_ERR_AND_LOG("\"%s\" has no section headers", name_.c_str());
304 name_.c_str(),
311 DL_ERR("\"%s\" shdr mmap failed: %s", name_.c_str(), strerror(errno));
330 DL_ERR_AND_LOG("\"%s\" .dynamic section header was not found", name_.c_str());
336 name_.c_str(),
345 name_.c_str(), dynamic_shdr->sh_link, strtab_shdr->sh_type);
350 DL_ERR_AND_LOG("\"%s\" has invalid offset/size of .dynamic section", name_.c_str());
355 DL_ERR("\"%s\" dynamic section mmap failed: %s", name_.c_str(), strerror(errno));
363 name_.c_str());
368 DL_ERR("\"%s\" strtab section mmap failed: %s", name_.c_str(), strerror(errno));
433 DL_ERR("\"%s\" has no loadable segments", name_.c_str());
464 reserved_size - load_size_, load_size_, name_.c_str());
470 DL_ERR("couldn't reserve %zd bytes of address space for \"%s\"", load_size_, name_.c_str());
476 load_size_, mmap_hint, name_.c_str());
514 DL_ERR("\"%s\" invalid file size: %" PRId64, name_.c_str(), file_size_);
521 name_.c_str(), i, reinterpret_cast<void*>(phdr->p_offset),
534 "Please fix the library.", name_.c_str());
544 DL_ERR("couldn't map \"%s\" segment %zd: %s", name_.c_str(), i, strerror(errno));
570 DL_ERR("couldn't zero fill \"%s\" gap: %s", name_.c_str(), strerror(errno));
967 DL_ERR("can't find loaded phdr for \"%s\"", name_.c_str());
989 name_.c_str(), reinterpret_cast<void*>(loaded));