Home | History | Annotate | Download | only in android

Lines Matching defs:ini

38 #define  USER_CONFIG_FILE  "emulator-user.ini"
56 IniFile* ini = NULL;
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) {
124 uc->uuid = (uint64_t) iniFile_getInt64(ini, KEY_UUID, 0LL);
129 iniFile_free(ini);
182 IniFile* ini;
200 ini = iniFile_newFromMemory(temp, uconfig->iniPath);
201 if (ini == NULL) {
205 if (iniFile_saveToFile(ini, uconfig->iniPath) < 0) {
211 iniFile_free(ini);