Lines Matching refs:defaultValue
368 iniFile_getString( IniFile* f, const char* key, const char* defaultValue ) in iniFile_getString() argument
373 if (!defaultValue) in iniFile_getString()
375 val= defaultValue; in iniFile_getString()
382 iniFile_getInteger( IniFile* f, const char* key, int defaultValue ) in iniFile_getInteger() argument
385 int value = defaultValue; in iniFile_getInteger()
397 iniFile_getDouble( IniFile* f, const char* key, double defaultValue ) in iniFile_getDouble() argument
400 double value = defaultValue; in iniFile_getDouble()
412 iniFile_getBoolean( IniFile* f, const char* key, const char* defaultValue ) in iniFile_getBoolean() argument
417 value = defaultValue; in iniFile_getBoolean()
432 iniFile_getDiskSize( IniFile* f, const char* key, const char* defaultValue ) in iniFile_getDiskSize() argument
438 valStr = defaultValue; in iniFile_getDiskSize()
455 iniFile_getInt64( IniFile* f, const char* key, int64_t defaultValue ) in iniFile_getInt64() argument
458 int64_t value = defaultValue; in iniFile_getInt64()