Home
last modified time | relevance | path

Searched refs:notfound (Results 1 – 2 of 2) sorted by relevance

/rockchip-linux_mpp/utils/
H A Diniparser.h203 int iniparser_getint(const dictionary * d, const char * key, int notfound);
230 long int iniparser_getlongint(const dictionary * d, const char * key, long int notfound);
246 double iniparser_getdouble(const dictionary * d, const char * key, double notfound);
280 int iniparser_getboolean(const dictionary * d, const char * key, int notfound);
H A Diniparser.c454 long int iniparser_getlongint(const dictionary * d, const char * key, long int notfound) in iniparser_getlongint() argument
459 if (str == INI_INVALID_KEY) return notfound ; in iniparser_getlongint()
491 int iniparser_getint(const dictionary * d, const char * key, int notfound) in iniparser_getint() argument
493 return (int)iniparser_getlongint(d, key, notfound); in iniparser_getint()
509 double iniparser_getdouble(const dictionary * d, const char * key, double notfound) in iniparser_getdouble() argument
514 if (str == INI_INVALID_KEY) return notfound ; in iniparser_getdouble()
550 int iniparser_getboolean(const dictionary * d, const char * key, int notfound) in iniparser_getboolean() argument
556 if (c == INI_INVALID_KEY) return notfound ; in iniparser_getboolean()
562 ret = notfound ; in iniparser_getboolean()