OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IniFile
(Results
1 - 9
of
9
) 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
/* free an
IniFile
object */
41
void iniFile_free(
IniFile
* f )
[
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/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/android/
user-config.c
56
IniFile
* ini = NULL;
182
IniFile
* ini;
202
D("Weird: can't create user-config
iniFile
?");
main.c
[
all
...]
/external/qemu/
vl-android.c
[
all
...]
Completed in 54 milliseconds