Searched refs:notfound (Results 1 – 2 of 2) sorted by relevance
/device/google/dragon/audio/hal/ |
D | iniparser.h | 184 int iniparser_getint(dictionary * d, const char * key, int notfound); 199 double iniparser_getdouble(dictionary * d, const char * key, double notfound); 233 int iniparser_getboolean(dictionary * d, const char * key, int notfound);
|
D | iniparser.c | 408 int iniparser_getint(dictionary * d, const char * key, int notfound) in iniparser_getint() argument 413 if (str==INI_INVALID_KEY) return notfound ; in iniparser_getint() 430 double iniparser_getdouble(dictionary * d, const char * key, double notfound) in iniparser_getdouble() argument 435 if (str==INI_INVALID_KEY) return notfound ; in iniparser_getdouble() 471 int iniparser_getboolean(dictionary * d, const char * key, int notfound) in iniparser_getboolean() argument 477 if (c==INI_INVALID_KEY) return notfound ; in iniparser_getboolean() 483 ret = notfound ; in iniparser_getboolean()
|