Home | History | Annotate | Download | only in qemu

Lines Matching refs:android_hw

3511     androidHwConfig_init(android_hw, 0);
3512 androidHwConfig_read(android_hw, hw_ini);
3517 int width = android_hw->hw_lcd_width;
3518 int height = android_hw->hw_lcd_height;
3519 int depth = android_hw->hw_lcd_depth;
3543 if (android_hw->avd_name && *android_hw->avd_name) {
3544 android_op_avd_name = android_hw->avd_name;
3552 const char* sysImage = android_hw->disk_systemPartition_path;
3553 const char* initImage = android_hw->disk_systemPartition_initPath;
3554 uint64_t sysBytes = android_hw->disk_systemPartition_size;
3587 const char* dataImage = android_hw->disk_dataPartition_path;
3588 const char* initImage = android_hw->disk_dataPartition_initPath;
3589 uint64_t dataBytes = android_hw->disk_dataPartition_size;
3623 const char* sdPath = android_hw->hw_sdCard_path;
3644 const char* spath = android_hw->disk_snapStorage_path;
3659 if (android_hw->vm_heapSize > 0) {
3661 snprintf(tmp, sizeof(tmp), "%dm", android_hw->vm_heapSize);
3684 if (android_hw->hw_lcd_density) {
3685 long density = android_hw->hw_lcd_density;
3693 boot_property_add("qemu.hw.mainkeys", android_hw->hw_mainKeys ? "1" : "0");
3711 } else if (android_hw->hw_gsmModem != 0 ) {
3726 } else if (android_hw->hw_gps != 0) {
3745 if (android_hw->hw_fakeCamera) {
3746 boot_property_add("qemu.sf.fake_camera", android_hw->hw_fakeCamera);
3810 if (android_hw->disk_cachePartition != 0) {
3812 const char* partPath = android_hw->disk_cachePartition_path;
3813 uint64_t partSize = android_hw->disk_cachePartition_size;
3844 if (android_hw->hw_gpu_enabled) {
3847 android_startOpenglesRenderer(android_hw->hw_lcd_width, android_hw->hw_lcd_height);
3915 kernel_filename = android_hw->kernel_path;
3918 initrd_filename = android_hw->disk_ramdisk_path;
3999 ram_size = android_hw->hw_ramSize * 1024LL * 1024;
4170 if (strcmp(android_hw->hw_cpu_arch,"arm") != 0) {
4172 android_hw->hw_cpu_arch);
4176 if (strcmp(android_hw->hw_cpu_arch,"x86") != 0) {
4178 android_hw->hw_cpu_arch);
4185 && android_hw->hw_cpu_model
4186 && android_hw->hw_cpu_model[0] != '\0')
4188 cpu_model = android_hw->hw_cpu_model;
4202 if (android_hw->kernel_parameters) {
4204 stralloc_add_str(kernel_params, android_hw->kernel_parameters);