Home | History | Annotate | Download | only in avd

Lines Matching defs:ini

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;
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) {
131 avdPath = iniFile_getString(ini, "path", NULL);
133 iniFile_free(ini);
143 IniFile* ini;
146 p = bufprint(temp, end, "%s/config.ini", avdPath);
150 ini = iniFile_newFromFile(temp);
151 if (ini == NULL) {
154 targetArch = iniFile_getString(ini, "hw.cpu.arch", "arm");
155 iniFile_free(ini);