Searched refs:sofile (Results 1 – 10 of 10) sorted by relevance
/external/qemu/distrib/sdl-1.2.15/src/loadso/mint/ |
D | SDL_sysloadso.c | 35 void *SDL_LoadObject(const char *sofile) in SDL_LoadObject() argument 38 void *handle = (void *)ldg_open((char *)sofile, ldg_global); in SDL_LoadObject() 40 SDL_SetError("Failed loading %s: %s", sofile, loaderror); in SDL_LoadObject()
|
/external/qemu/distrib/sdl-1.2.15/src/loadso/dlopen/ |
D | SDL_sysloadso.c | 34 void *SDL_LoadObject(const char *sofile) in SDL_LoadObject() argument 36 void *handle = dlopen(sofile, RTLD_NOW); in SDL_LoadObject() 39 SDL_SetError("Failed loading %s: %s", sofile, loaderror); in SDL_LoadObject()
|
/external/qemu/distrib/sdl-1.2.15/src/loadso/os2/ |
D | SDL_sysloadso.c | 36 void *SDL_LoadObject(const char *sofile) in SDL_LoadObject() argument 40 APIRET ulrc = DosLoadModule(buf, sizeof (buf), (char *) sofile, &handle); in SDL_LoadObject() 44 SDL_SetError("Failed loading %s: %s", sofile, buf); in SDL_LoadObject()
|
/external/qemu/distrib/sdl-1.2.15/src/loadso/win32/ |
D | SDL_sysloadso.c | 34 void *SDL_LoadObject(const char *sofile) in SDL_LoadObject() argument 45 MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, sofile, -1, sofile_t, MAX_PATH); in SDL_LoadObject() 65 handle = (void *)LoadLibrary(sofile); in SDL_LoadObject() 79 SDL_SetError("Failed loading %s: %s", sofile, loaderror); in SDL_LoadObject()
|
/external/qemu/distrib/sdl-1.2.15/src/loadso/macos/ |
D | SDL_sysloadso.c | 38 void *SDL_LoadObject(const char *sofile) in SDL_LoadObject() argument 48 SDL_strlcpy(psofile, sofile, SDL_arraysize(psofile)); in SDL_LoadObject() 72 SDL_SetError("Failed loading %s: %s", sofile, loaderror); in SDL_LoadObject()
|
/external/chromium_org/build/toolchain/ |
D | gcc_toolchain.gni | 130 sofile = "{{root_out_dir}}/$soname" # Possibly including toolchain dir. 131 rspfile = sofile + ".rsp" 137 tocfile = sofile + ".TOC" 138 temporary_tocname = sofile + ".tmp" 139 link_command = "$ld -shared {{ldflags}} -o $sofile -Wl,-soname=$soname @$rspfile" 140 …toc_command = "{ readelf -d $sofile | grep SONAME ; nm -gD -f p $soname | cut -f1-2 -d' '; } > $te… 149 description = "SOLINK $sofile" 163 # Tell GN about the output files. It will link to the sofile but use the 166 sofile, 172 link_output = sofile
|
/external/qemu/distrib/sdl-1.2.15/src/loadso/dummy/ |
D | SDL_sysloadso.c | 31 void *SDL_LoadObject(const char *sofile) in SDL_LoadObject() argument 34 SDL_SetError("Failed loading %s: %s", sofile, loaderror); in SDL_LoadObject()
|
/external/qemu/distrib/sdl-1.2.15/src/loadso/beos/ |
D | SDL_sysloadso.c | 35 SDL_LoadObject(const char *sofile) in SDL_LoadObject() argument 38 image_id library_id = load_add_on(sofile); in SDL_LoadObject()
|
/external/qemu/distrib/sdl-1.2.15/include/ |
D | SDL_loadso.h | 60 extern DECLSPEC void * SDLCALL SDL_LoadObject(const char *sofile);
|
/external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/ |
D | SDL_dlcompat.c | 1381 void *SDL_LoadObject(const char *sofile) in SDL_LoadObject() argument 1383 void *handle = SDL_OSX_dlopen(sofile, RTLD_NOW); in SDL_LoadObject() 1386 SDL_SetError("Failed loading %s: %s", sofile, loaderror); in SDL_LoadObject()
|