Searched defs:bootstrap (Results 1 - 3 of 3) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_audio.c38 static AudioBootStrap *bootstrap[] = { variable
319 for ( i=0; bootstrap[i]; ++i ) {
320 if ( SDL_strcasecmp(bootstrap[i]->name, "esd") == 0 ) {
330 if ( bootstrap[i]->available() ) {
331 audio = bootstrap[i]->create(0);
350 for ( i=0; bootstrap[i]; ++i ) {
351 if (SDL_strcasecmp(bootstrap[i]->name, driver_name) == 0) {
352 if ( bootstrap[i]->available() ) {
353 audio=bootstrap[i]->create(idx);
359 for ( i=0; bootstrap[
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGame.java62 public void bootstrap(Context context, int viewWidth, int viewHeight, int gameWidth, int gameHeight, int difficulty) { method in class:Game
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_video.c35 static VideoBootStrap *bootstrap[] = { variable
183 for ( i=0; bootstrap[i]; ++i ) {
184 if ( SDL_strcasecmp(bootstrap[i]->name, driver_name) == 0) {
185 if ( bootstrap[i]->available() ) {
186 video = bootstrap[i]->create(index);
192 for ( i=0; bootstrap[i]; ++i ) {
193 if ( bootstrap[i]->available() ) {
194 video = bootstrap[i]->create(index);
206 current_video->name = bootstrap[i]->name;

Completed in 126 milliseconds