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