Searched refs:sofile (Results 1 - 9 of 9) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/loadso/dummy/
H A DSDL_sysloadso.c31 void *SDL_LoadObject(const char *sofile) argument
34 SDL_SetError("Failed loading %s: %s", sofile, loaderror);
/external/qemu/distrib/sdl-1.2.15/src/loadso/mint/
H A DSDL_sysloadso.c35 void *SDL_LoadObject(const char *sofile) argument
38 void *handle = (void *)ldg_open((char *)sofile, ldg_global);
40 SDL_SetError("Failed loading %s: %s", sofile, loaderror);
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_loadso.h58 * The 'sofile' parameter is a system dependent name of the object file.
60 extern DECLSPEC void * SDLCALL SDL_LoadObject(const char *sofile);
/external/qemu/distrib/sdl-1.2.15/src/loadso/dlopen/
H A DSDL_sysloadso.c34 void *SDL_LoadObject(const char *sofile) argument
36 void *handle = dlopen(sofile, RTLD_NOW);
39 SDL_SetError("Failed loading %s: %s", sofile, loaderror);
/external/qemu/distrib/sdl-1.2.15/src/loadso/os2/
H A DSDL_sysloadso.c36 void *SDL_LoadObject(const char *sofile) argument
40 APIRET ulrc = DosLoadModule(buf, sizeof (buf), (char *) sofile, &handle);
44 SDL_SetError("Failed loading %s: %s", sofile, buf);
/external/qemu/distrib/sdl-1.2.15/src/loadso/beos/
H A DSDL_sysloadso.c35 SDL_LoadObject(const char *sofile) argument
38 image_id library_id = load_add_on(sofile);
/external/qemu/distrib/sdl-1.2.15/src/loadso/macos/
H A DSDL_sysloadso.c38 void *SDL_LoadObject(const char *sofile) argument
48 SDL_strlcpy(psofile, sofile, SDL_arraysize(psofile));
72 SDL_SetError("Failed loading %s: %s", sofile, loaderror);
/external/qemu/distrib/sdl-1.2.15/src/loadso/win32/
H A DSDL_sysloadso.c34 void *SDL_LoadObject(const char *sofile) argument
45 MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, sofile, -1, sofile_t, MAX_PATH);
65 handle = (void *)LoadLibrary(sofile);
79 SDL_SetError("Failed loading %s: %s", sofile, loaderror);
/external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/
H A DSDL_dlcompat.c1381 void *SDL_LoadObject(const char *sofile) argument
1383 void *handle = SDL_OSX_dlopen(sofile, RTLD_NOW);
1386 SDL_SetError("Failed loading %s: %s", sofile, loaderror);

Completed in 712 milliseconds