OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DL_ERR
(Results
1 - 3
of
3
) sorted by null
/bionic/linker/
linker_phdr.cpp
146
DL_ERR
("can't read file \"%s\": %s", name_, strerror(errno));
150
DL_ERR
("\"%s\" is too small to be an ELF executable", name_);
161
DL_ERR
("\"%s\" has bad ELF magic", name_);
166
DL_ERR
("\"%s\" not 32-bit: %d", name_, header_.e_ident[EI_CLASS]);
170
DL_ERR
("\"%s\" not little-endian: %d", name_, header_.e_ident[EI_DATA]);
175
DL_ERR
("\"%s\" has unexpected e_type: %d", name_, header_.e_type);
180
DL_ERR
("\"%s\" has unexpected e_version: %d", name_, header_.e_version);
193
DL_ERR
("\"%s\" has unexpected e_machine: %d", name_, header_.e_machine);
208
DL_ERR
("\"%s\" has invalid e_phnum: %d", name_, phdr_num_);
220
DL_ERR
("\"%s\" phdr mmap failed: %s", name_, strerror(errno))
[
all
...]
linker.cpp
299
DL_ERR
("library name \"%s\" too long", name);
304
DL_ERR
("out of memory when loading \"%s\"", name);
339
DL_ERR
("name \"%s\" is not in solist!", si->name);
706
DL_ERR
("library \"%s\" not found", name);
761
DL_ERR
("OOPS: recursive link to \"%s\"", si->name);
825
DL_ERR
("invalid flags to dlopen: %x", flags);
876
DL_ERR
("cannot locate symbol \"%s\" referenced by \"%s\"...", sym_name, si->name);
922
DL_ERR
("unknown weak reloc type %d @ %p (%d)",
931
DL_ERR
("cannot locate \"%s\"...",
1008
DL_ERR
("odd RELATIVE form...")
[
all
...]
linker.h
41
#define
DL_ERR
(fmt, x...) \
Completed in 315 milliseconds