OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IniFile
(Results
1 - 2
of
2
) 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
...]
Completed in 8539 milliseconds