• Home
  • Raw
  • Download

Lines Matching refs:IniFile

36 struct IniFile {  struct
43 iniFile_free( IniFile* i ) in iniFile_free() argument
55 static IniFile*
58 IniFile* i; in iniFile_alloc()
89 iniFile_addPair( IniFile* i, in iniFile_addPair()
110 iniFile_getPair( IniFile* i, const char* key ) in iniFile_getPair()
124 iniFile_getValue( IniFile* i, const char* key ) in iniFile_getValue()
134 iniFile_getPairCount( IniFile* i ) in iniFile_getPairCount()
179 IniFile*
183 IniFile* ini = iniFile_alloc(); in iniFile_newFromMemory()
258 IniFile*
264 IniFile* ini = NULL; in iniFile_newFromFile()
312 iniFile_saveToFileCommon( IniFile* f, const char* filepath, int strip ) in iniFile_saveToFileCommon()
341 iniFile_saveToFile( IniFile* f, const char* filepath ) in iniFile_saveToFile()
347 iniFile_saveToFileClean( IniFile* f, const char* filepath ) in iniFile_saveToFileClean()
353 iniFile_getEntry(IniFile* f, int index, char** key, char** value) in iniFile_getEntry()
368 iniFile_getString( IniFile* f, const char* key, const char* defaultValue ) in iniFile_getString()
382 iniFile_getInteger( IniFile* f, const char* key, int defaultValue ) in iniFile_getInteger()
397 iniFile_getDouble( IniFile* f, const char* key, double defaultValue ) in iniFile_getDouble()
412 iniFile_getBoolean( IniFile* f, const char* key, const char* defaultValue ) in iniFile_getBoolean()
432 iniFile_getDiskSize( IniFile* f, const char* key, const char* defaultValue ) in iniFile_getDiskSize()
455 iniFile_getInt64( IniFile* f, const char* key, int64_t defaultValue ) in iniFile_getInt64()
472 iniFile_setValue( IniFile* f, const char* key, const char* value ) in iniFile_setValue()
488 iniFile_setInteger( IniFile* f, const char* key, int value ) in iniFile_setInteger()
496 iniFile_setInt64( IniFile* f, const char* key, int64_t value ) in iniFile_setInt64()
504 iniFile_setDouble( IniFile* f, const char* key, double value ) in iniFile_setDouble()
512 iniFile_setBoolean( IniFile* f, const char* key, int value ) in iniFile_setBoolean()
518 iniFile_setDiskSize( IniFile* f, const char* key, int64_t size ) in iniFile_setDiskSize()