Lines Matching defs:s
1830 * Let's assume we always have esan3 and zarch.
2932 error_report("%s: requires virtual address space that is in use "
2986 uintptr_t s = base + ga->bounds[i][0];
2990 if (l < s) {
2992 return mmap_min_addr - s;
2995 n = interval_tree_iter_first(root, s, l);
2998 return n->last - s + 1;
3082 error_report("%s: Unable to find a guest_base to satisfy all "
3104 error_report("%s: requires more than reserved virtual "
3111 error_report("%s: requires more virtual address space "
3214 /* If the properties are crazy large, that's too bad. */
3242 * of the inputs to the kernel's round_up are multiples of 4.
3600 error_reportf_err(err, "%s: ", image_name);
3622 error_reportf_err(err, "%s: ", filename);
3695 static const char *lookup_symbolxx(struct syminfo *s, uint64_t orig_addr)
3698 struct elf_sym *syms = s->disas_symtab.elf32;
3700 struct elf_sym *syms = s->disas_symtab.elf64;
3706 sym = bsearch(&orig_addr, syms, s->disas_num_syms, sizeof(*syms), symfind);
3708 return s->disas_strtab + sym->st_name;
3822 struct syminfo *s = g_new(struct syminfo, 1);
3824 s->disas_strtab = strings;
3825 s->disas_num_syms = nsyms;
3827 s->disas_symtab.elf32 = syms;
3829 s->disas_symtab.elf64 = syms;
3831 s->lookup_symbol = lookup_symbolxx;
3832 s->next = syminfos;
3833 syminfos = s;
3927 fprintf(stderr, "%s: %s\n", bprm->filename, strerror(E2BIG));
3992 /* If we have an interpreter, set that as the program's entry point.