Home | History | Annotate | Download | only in hal

Lines Matching defs:in

96   @brief    Get number of sections in a dictionary
98 @return int Number of sections found in dictionary
100 This function returns the number of sections found in a dictionary.
101 The test to recognize sections is done on the string stored in the
106 This clearly fails in the case a section name contains a colon, but
109 This function returns -1 in case of error.
131 @brief Get name for section n in a dictionary.
136 This function locates the n-th section in a dictionary and returns
140 This function returns NULL in case of error.
216 /* No section in file: dump all keys as they are */
272 @brief Get the number of keys in a section of a dictionary.
275 @return Number of keys in section
305 @brief Get the number of keys in a section of a dictionary.
310 This function queries a dictionary and finds all keys in a given section.
311 Each pointer in the returned char pointer-to-pointer is pointing to
312 a string allocated in the dictionary; do not free or modify them.
314 This function returns NULL in case of error.
364 The returned char pointer is pointing to a string allocated in
386 @param notfound Value to return in case of error
401 Warning: the conversion may overflow in various ways. Conversion is
422 @param notfound Value to return in case of error
444 @param notfound Value to return in case of error
490 @brief Finds out if a given entry exists in a dictionary
495 Finds out if a given entry exists in the dictionary. Since sections
497 of querying for the presence of sections in a dictionary.
514 @brief Set an entry in a dictionary.
520 If the given entry can be found in the dictionary, it is modified to
532 @brief Delete an entry in a dictionary
631 FILE * in ;
646 if ((in=fopen(ininame, "r"))==NULL) {
653 fclose(in);
663 while (fgets(line+last, ASCIILINESZ-last, in)!=NULL) {
671 "iniparser: input line too long in %s (%d)\n",
675 fclose(in);
707 fprintf(stderr, "iniparser: syntax error in %s (%d):\n",
728 fclose(in);