/external/qemu/android/avd/ |
hw-config.c | 13 #include "android/utils/ini.h" 70 * a custom hardware.ini 79 IniFile* ini ) 81 if (ini == NULL) 86 #define HWCFG_BOOL(n,s,d,a,t) if (iniFile_getValue(ini, s)) { config->n = iniFile_getBoolean(ini, s, d); } 87 #define HWCFG_INT(n,s,d,a,t) if (iniFile_getValue(ini, s)) { config->n = iniFile_getInteger(ini, s, d); } 88 #define HWCFG_STRING(n,s,d,a,t) if (iniFile_getValue(ini, s)) { AFREE(config->n); config->n = iniFile_getString(ini, s, d); [all...] |
util.c | 17 #include "android/utils/ini.h" 77 /* Return the path to the AVD's root configuration .ini file. it is located in 78 * ~/.android/avd/<name>.ini or Windows equivalent 81 * includes its own config.ini. 89 p = bufprint(p, end, "/" ANDROID_AVD_DIR "/%s.ini", avdName); 117 IniFile* ini; local 120 /* Look for the root .ini file */ 121 p = bufprint(temp, end, "%s/avd/%s.ini", sdkHome, avdName); 126 ini = iniFile_newFromFile(temp); 127 if (ini == NULL) 143 IniFile* ini; local [all...] |
/external/qemu/android/ |
user-config.c | 38 #define USER_CONFIG_FILE "emulator-user.ini" 56 IniFile* ini = NULL; local 61 * in ~/.android/emulator-user.ini. otherwise, store it in the file 62 * emulator-user.ini in the AVD's content directory. 109 ini = iniFile_newFromFile(uc->iniPath); 110 if (ini == NULL) { 116 if (ini != NULL) { 117 uc->windowX = iniFile_getInteger(ini, KEY_WINDOW_X, DEFAULT_X); 120 uc->windowY = iniFile_getInteger(ini, KEY_WINDOW_Y, DEFAULT_Y); 123 if (iniFile_getValue(ini, KEY_UUID) != NULL) 182 IniFile* ini; local [all...] |
/device/sample/products/ |
sample_addon.mk | 17 device/sample/sdk_addon/manifest.ini:manifest.ini \ 18 device/sample/sdk_addon/hardware.ini:hardware.ini \
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/ |
Makefile | 26 cp -f _perf.ini $(OMXTESTDIR) 46 rm -f $(OMXTESTDIR)/_perf.ini
|
perf | 320 mask=0x3cffff" > ./perf.ini 323 echo csv=1 > ./perf.ini 343 echo csv=1 > ./perf.ini
|
/external/qemu/android/utils/ |
ini.c | 12 #include "android/utils/ini.h" 27 /* a simple .ini file parser and container for Android 28 * no sections support. see android/utils/ini.h for 183 IniFile* ini = iniFile_alloc(); local 189 D("%s: parsing as .ini file", fileName); 246 iniFile_addPair(ini, key, keyLen, value, valueLen); 255 return ini; 264 IniFile* ini = NULL; local 268 D("could not open .ini file: %s: %s", 293 ini = iniFile_newFromMemory(text, filepath) [all...] |
/sdk/build/ |
tools.atree | 79 external/qemu/android/avd/hardware-properties.ini tools/lib/hardware-properties.ini
|
/sdk/sdkmanager/app/src/com/android/sdkmanager/ |
Main.java | 1223 File ini = info.getIniFile(); local [all...] |