OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
54
const char*
iniFile_getValue
( IniFile* f, const char* key );
ini.c
124
iniFile_getValue
( IniFile* i, const char* key )
370
const char* val =
iniFile_getValue
(f, key);
384
const char* valueStr =
iniFile_getValue
(f, key);
399
const char* valueStr =
iniFile_getValue
(f, key);
414
const char* value =
iniFile_getValue
(f, key);
434
const char* valStr =
iniFile_getValue
(f, key);
457
const char* valStr =
iniFile_getValue
(f, key);
/external/qemu/android/
user-config.c
123
if (
iniFile_getValue
(ini, KEY_UUID) != NULL) {
Completed in 871 milliseconds