HomeSort by relevance Sort by last modified time
    Searched refs:iniFile_getValue (Results 1 - 4 of 4) sorted by null

  /external/qemu/android/avd/
hw-config.c 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); }
89 #define HWCFG_DOUBLE(n,s,d,a,t) if (iniFile_getValue(ini, s)) { config->n = iniFile_getDouble(ini, s, d); }
90 #define HWCFG_DISKSIZE(n,s,d,a,t) if (iniFile_getValue(ini, s)) { config->n = iniFile_getDiskSize(ini, s, d); }
  /external/qemu/android/utils/
ini.h 49 const char* iniFile_getValue( IniFile* f, const char* key );
ini.c 124 iniFile_getValue( IniFile* i, const char* key )
331 const char* val = iniFile_getValue(f, key);
345 const char* valueStr = iniFile_getValue(f, key);
360 const char* valueStr = iniFile_getValue(f, key);
375 const char* value = iniFile_getValue(f, key);
395 const char* valStr = iniFile_getValue(f, key);
418 const char* valStr = iniFile_getValue(f, key);
  /external/qemu/android/
user-config.c 123 if (iniFile_getValue(ini, KEY_UUID) != NULL) {

Completed in 656 milliseconds