Lines Matching full:die

108 static void die(char *fmt, ...)  in die()  function
121 die("Cannot read ELF header: %s\n", strerror(errno)); in read_ehdr()
123 die("No ELF magic\n"); in read_ehdr()
125 die("Not a %d bit executable\n", ELF_BITS); in read_ehdr()
127 die("ELF endian mismatch\n"); in read_ehdr()
129 die("Unknown ELF version\n"); in read_ehdr()
150 die("Unsupported ELF header type\n"); in read_ehdr()
152 die("Not for %s\n", ELF_MACHINE_NAME); in read_ehdr()
154 die("Unknown ELF version\n"); in read_ehdr()
156 die("Bad Elf header size\n"); in read_ehdr()
158 die("Bad program header entry\n"); in read_ehdr()
160 die("Bad section header entry\n"); in read_ehdr()
166 die("Seek to %" FMT " failed: %s\n", ehdr.e_shoff, strerror(errno)); in read_ehdr()
169 die("Cannot read initial ELF section header: %s\n", strerror(errno)); in read_ehdr()
179 die("String table index out of bounds\n"); in read_ehdr()
189 die("Unable to allocate %ld section headers\n", shnum); in read_shdrs()
192 die("Seek to %" FMT " failed: %s\n", ehdr.e_shoff, strerror(errno)); in read_shdrs()
198 die("Cannot read ELF section headers %d/%ld: %s\n", in read_shdrs()
231 die("malloc of %" FMT " bytes for relocs failed\n", sec->shdr.sh_size); in read_relocs()
234 die("Seek to %" FMT " failed: %s\n", sec->shdr.sh_offset, strerror(errno)); in read_relocs()
237 die("Cannot read symbol table: %s\n", strerror(errno)); in read_relocs()
258 die("realloc of %ld entries for relocs failed\n", newsize); in add_reloc()
286 die("Unsupported relocation type: %d\n", r_type); in do_reloc()
358 die("relocs vmlinux\n"); in usage()
376 die("Cannot open %s: %s\n", fname, strerror(errno)); in main()
379 die("Cannot read %s: %s", fname, strerror(errno)); in main()