HomeSort by relevance Sort by last modified time
    Searched refs:device_index (Results 1 - 7 of 7) sorted by null

  /external/qemu/distrib/sdl-1.2.15/include/
SDL_joystick.h 61 extern DECLSPEC const char * SDLCALL SDL_JoystickName(int device_index);
66 * @param[in] device_index
73 extern DECLSPEC SDL_Joystick * SDLCALL SDL_JoystickOpen(int device_index);
78 extern DECLSPEC int SDLCALL SDL_JoystickOpened(int device_index);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_joystick.h 61 extern DECLSPEC const char * SDLCALL SDL_JoystickName(int device_index);
66 * @param[in] device_index
73 extern DECLSPEC SDL_Joystick * SDLCALL SDL_JoystickOpen(int device_index);
78 extern DECLSPEC int SDLCALL SDL_JoystickOpened(int device_index);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_joystick.h 61 extern DECLSPEC const char * SDLCALL SDL_JoystickName(int device_index);
66 * @param[in] device_index
73 extern DECLSPEC SDL_Joystick * SDLCALL SDL_JoystickOpen(int device_index);
78 extern DECLSPEC int SDLCALL SDL_JoystickOpened(int device_index);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_joystick.h 61 extern DECLSPEC const char * SDLCALL SDL_JoystickName(int device_index);
66 * @param[in] device_index
73 extern DECLSPEC SDL_Joystick * SDLCALL SDL_JoystickOpen(int device_index);
78 extern DECLSPEC int SDLCALL SDL_JoystickOpened(int device_index);
  /external/qemu/distrib/sdl-1.2.15/src/joystick/
SDL_joystick.c 77 const char *SDL_JoystickName(int device_index)
79 if ( (device_index < 0) || (device_index >= SDL_numjoysticks) ) {
84 return(SDL_SYS_JoystickName(device_index));
94 SDL_Joystick *SDL_JoystickOpen(int device_index)
99 if ( (device_index < 0) || (device_index >= SDL_numjoysticks) ) {
107 if ( device_index == SDL_joysticks[i]->index ) {
122 joystick->index = device_index;
184 int SDL_JoystickOpened(int device_index)
    [all...]
  /bootable/recovery/mtdutils/
mtdutils.c 32 int device_index; member in struct:MtdPartition
102 p->device_index = -1;
144 p->device_index = mtdnum;
182 if (p->device_index >= 0 && p->name != NULL) {
200 sprintf(devname, "/dev/block/mtdblock%d", partition->device_index);
242 sprintf(mtddevname, "/dev/mtd/mtd%d", partition->device_index);
269 sprintf(mtddevname, "/dev/mtd/mtd%d", partition->device_index);
385 sprintf(mtddevname, "/dev/mtd/mtd%d", partition->device_index);
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzVideo.m 96 static SDL_VideoDevice* QZ_CreateDevice (int device_index);
169 static SDL_VideoDevice* QZ_CreateDevice (int device_index)
171 #pragma unused (device_index)
    [all...]

Completed in 73 milliseconds