Searched refs:sym (Results 1 - 25 of 258) sorted by last modified time

1234567891011

/haiku-fatelf/src/system/kernel/
H A Delf.cpp592 void dump_symbol(struct elf_image_info *image, elf_sym *sym)
595 kprintf("symbol at %p, in image %p\n", sym, image);
597 kprintf(" name index %d, '%s'\n", sym->st_name, SYMNAME(image, sym));
598 kprintf(" st_value 0x%x\n", sym->st_value);
599 kprintf(" st_size %d\n", sym->st_size);
600 kprintf(" st_info 0x%x\n", sym->st_info);
601 kprintf(" st_other 0x%x\n", sym->st_other);
602 kprintf(" st_shndx %d\n", sym->st_shndx);
/haiku-fatelf/src/system/kernel/arch/arm/
H A Darch_elf.cpp370 struct Elf32_Sym *sym; local
401 "sym 0x%lx, addend 0x%lx\n", ELF32_R_TYPE(rel[i].r_info),
407 sym = SYMBOL(image, ELF32_R_SYM(rel[i].r_info));
410 vlErr = boot_elf_resolve_symbol(image, sym, &S);
412 vlErr = elf_resolve_symbol(image, sym, resolve_image, &S);
416 "entry index %d, rel type %d, offset 0x%lx, sym 0x%lx, "
/haiku-fatelf/src/system/kernel/arch/m68k/
H A Darch_elf.cpp200 struct Elf32_Sym *sym; local
228 dprintf("looking at rel type %d, offset 0x%lx, sym 0x%lx, addend 0x%lx\n",
240 sym = SYMBOL(image, ELF32_R_SYM(rel[i].r_info));
243 vlErr = boot_elf_resolve_symbol(image, sym, &S);
245 vlErr = elf_resolve_symbol(image, sym, resolve_image, &S);
249 "entry index %d, rel type %d, offset 0x%lx, sym 0x%lx, "
/haiku-fatelf/src/system/kernel/arch/ppc/
H A Darch_elf.cpp177 struct Elf32_Sym *sym; local
205 dprintf("looking at rel type %d, offset 0x%lx, sym 0x%lx, addend 0x%lx\n",
237 sym = SYMBOL(image, ELF32_R_SYM(rel[i].r_info));
240 vlErr = boot_elf_resolve_symbol(image, sym, &S);
242 vlErr = elf_resolve_symbol(image, sym, resolve_image, &S);
246 "entry index %d, rel type %d, offset 0x%lx, sym 0x%lx, "
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/definitions/errno_h/
H A D3-2.c26 } sym[] = {{E2BIG,"E2BIG",E2BIG},{EACCES,"EACCES",EACCES}, variable in typeref:struct:unique
74 tst = sym;
77 for(i = 0; sym[i].name; i++) {
78 if (tst->value == sym[i].value
79 && tst->duplicate != sym[i].value
80 && strcmp(tst->name,sym[i].name)) {//In case EAGAIN is not equal to EWOULDBLOCK,compare the name
82 tst->name,sym[i].name);
H A D4-1.c22 } sym[] = {{E2BIG,"E2BIG"},{EACCES,"EACCES"}, variable in typeref:struct:unique
67 struct unique *tst=sym;
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/definitions/sched_h/
H A D10-1.c23 } sym[] = { variable in typeref:struct:unique
48 tst = sym;
51 for (i = 0; sym[i].name; i++) {
52 if (tst->value == sym[i].value
53 && strcmp(tst->name, sym[i].name)) {
55 tst->name, sym[i].name);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/sched_getscheduler/
H A D3-1.c22 } sym[] = { variable in typeref:struct:unique
54 tst = sym;
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/sched_setscheduler/
H A D1-1.c27 } sym[] = { variable in typeref:struct:unique
54 tst = sym;
H A D17-1.c30 } sym[] = { variable in typeref:struct:unique
59 tst = sym;
H A D19-1.c25 } sym[] = { variable in typeref:struct:unique
53 tst = sym;
/haiku-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A Dfraiseexcpt.c21 #include <bp-sym.h>
/haiku-fatelf/src/system/libroot/posix/glibc/arch/ppc/
H A Dadd_n.S21 #include <bp-sym.h>
H A Daddmul_1.S21 #include <bp-sym.h>
H A Dfesetenv.c21 #include <bp-sym.h>
H A Dfraiseexcpt.c21 #include <bp-sym.h>
H A Dlshift.S21 #include <bp-sym.h>
H A Dmul_1.S21 #include <bp-sym.h>
H A Drshift.S21 #include <bp-sym.h>
H A Dstrlen.S21 #include <bp-sym.h>
H A Dsub_n.S21 #include <bp-sym.h>
H A Dsubmul_1.S21 #include <bp-sym.h>
/haiku-fatelf/src/system/libroot/posix/glibc/include/
H A Dsysdep.h44 #define END(sym)
/haiku-fatelf/src/system/runtime_loader/arch/m68k/
H A Darch_relocate.cpp100 struct Elf32_Sym *sym; local
102 sym = SYMBOL(image, ELF32_R_SYM(rel[i].r_info));
104 status = resolve_symbol(rootImage, image, sym, cache, &S);
107 SYMNAME(image, sym), status));
109 SYMNAME(image, sym), status);
/haiku-fatelf/src/system/runtime_loader/arch/x86/
H A Darch_relocate.cpp42 struct Elf32_Sym *sym; local
44 sym = SYMBOL(image, ELF32_R_SYM(rel[i].r_info));
46 status = resolve_symbol(rootImage, image, sym, cache, &S);
49 SYMNAME(image, sym), status));
51 SYMNAME(image, sym), status);

Completed in 95 milliseconds

1234567891011