/external/qemu/android/ |
config.h | 54 extern int aconfig_int (AConfig *root, const char *name, int _default);
|
config.c | 95 aconfig_int(AConfig *root, const char *name, int _default) function
|
main-common.c | 454 int width = aconfig_int(n, "width", hwConfig->hw_lcd_width); 455 int height = aconfig_int(n, "height", hwConfig->hw_lcd_height); 456 int depth = aconfig_int(n, "bpp", hwConfig->hw_lcd_depth); [all...] |
/external/qemu/android/skin/ |
file.c | 53 int x = aconfig_int(node, "x", 0); 54 int y = aconfig_int(node, "y", 0); 89 display->rect.pos.x = aconfig_int(node, "x", 0); 90 display->rect.pos.y = aconfig_int(node, "y", 0); 91 display->rect.size.w = aconfig_int(node, "width", 0); 92 display->rect.size.h = aconfig_int(node, "height", 0); 94 display->bpp = aconfig_int(node, "bpp", 16); 236 int x = aconfig_int(node, "x", 0); 237 int y = aconfig_int(node, "y", 0); 284 int x = aconfig_int(node, "x", 0) [all...] |
/external/qemu/telephony/ |
android_modem.c | 412 value = aconfig_int(modem->nvram_config, nvname, defval); 514 modem->technology = aconfig_int( modem->nvram_config, NV_MODEM_TECHNOLOGY, A_TECH_GSM ); [all...] |