Home
last modified time | relevance | path

Searched refs:IniFile (Results 1 – 6 of 6) sorted by relevance

/external/qemu/android/utils/
Dini.h52 typedef struct IniFile IniFile; typedef
58 IniFile* iniFile_newFromMemory( const char* text, const char* fileName );
63 IniFile* iniFile_newFromFile( const char* filePath);
68 int iniFile_saveToFile( IniFile* f, const char* filePath );
71 void iniFile_free( IniFile* f );
74 int iniFile_getPairCount( IniFile* f );
82 void iniFile_getPair( IniFile* f,
90 const char* iniFile_getValue( IniFile* f, const char* key );
94 char* iniFile_getString( IniFile* f, const char* key );
99 int iniFile_getInteger( IniFile* f, const char* key, int defaultValue );
[all …]
Dini.c36 struct IniFile { struct
43 iniFile_free( IniFile* i ) in iniFile_free() argument
55 static IniFile*
58 IniFile* i; in iniFile_alloc()
65 iniFile_addPair( IniFile* i, const char* key, int keyLen, in iniFile_addPair()
92 iniFile_getValue( IniFile* i, const char* key ) in iniFile_getValue()
106 iniFile_getPairCount( IniFile* i ) in iniFile_getPairCount()
112 iniFile_getPair( IniFile* i, in iniFile_getPair()
168 IniFile*
172 IniFile* ini = iniFile_alloc(); in iniFile_newFromMemory()
[all …]
/external/qemu/android/
Duser-config.c56 IniFile* ini = NULL; in auserConfig_new()
182 IniFile* ini; in auserConfig_save()
/external/qemu/android/avd/
Dhw-config.h44 IniFile* configFile );
Dhw-config.c23 IniFile* ini ) in androidHwConfig_read()
Dinfo.c134 IniFile* rootIni; /* root <foo>.ini file */
135 IniFile* configIni; /* virtual device's config.ini */
1400 IniFile* ini = i->configIni; in avdInfo_getHwConfig()