OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IniFile
(Results
1 - 11
of
11
) sorted by null
/external/qemu/android/utils/
ini.h
22
typedef struct
IniFile
IniFile
;
24
/* creates a new
IniFile
object from a config file loaded in memory.
28
IniFile
* iniFile_newFromMemory( const char* text, const char* fileName );
30
/* creates a new
IniFile
object from a file path,
33
IniFile
* iniFile_newFromFile( const char* filePath);
35
/* try to write an
IniFile
into a given file.
38
int iniFile_saveToFile(
IniFile
* f, const char* filePath );
40
/* try to write an
IniFile
into a given file, ignorig pairs with empty values.
43
int iniFile_saveToFileClean(
IniFile
* f, const char* filepath )
[
all
...]
ini.c
36
struct
IniFile
{
43
iniFile_free(
IniFile
* i )
55
static
IniFile
*
58
IniFile
* i;
89
iniFile_addPair(
IniFile
* i,
110
iniFile_getPair(
IniFile
* i, const char* key )
124
iniFile_getValue(
IniFile
* i, const char* key )
134
iniFile_getPairCount(
IniFile
* i )
179
IniFile
*
183
IniFile
* ini = iniFile_alloc()
[
all
...]
/external/qemu/android/
snaphost-android.h
18
* hw_ini -
IniFile
instance containing the current HW config settings.
23
extern int snaphost_match_configs(
IniFile
* hw_ini, const char* name);
snaphost-android.c
36
_cmp_hw_config(
IniFile
* current,
IniFile
* saved)
109
snaphost_match_configs(
IniFile
* hw_ini, const char* name)
124
IniFile
* hwcfg_bkp = iniFile_newFromFile(bkp_path);
162
IniFile
* hwcfg_bkp = iniFile_newFromMemory("", bkp_path);
user-config.c
56
IniFile
* ini = NULL;
182
IniFile
* ini;
202
D("Weird: can't create user-config
iniFile
?");
main.c
[
all
...]
/external/qemu/android/avd/
hw-config.h
48
IniFile
* configFile );
55
IniFile
* configFile );
hw-config.c
79
IniFile
* ini )
99
IniFile
* ini )
util.c
117
IniFile
* ini;
143
IniFile
* ini;
info.c
142
IniFile
* rootIni; /* root <foo>.ini file, empty if missing */
143
IniFile
* configIni; /* virtual device's config.ini, NULL if missing */
144
IniFile
* skinHardwareIni; /* skin-specific hardware.ini */
239
_getSearchPaths(
IniFile
* configIni,
[
all
...]
/external/qemu/
vl-android.c
[
all
...]
Completed in 589 milliseconds