Lines Matching +full:full +full:- +full:hd
7 * A full copy of the text of the CDDL should have accompanied this
27 return (-1); \
43 * The output will be entirely 7-bit ASCII (as a subset of UTF-8) with all
55 if (sz == (size_t)-1 || sz == (size_t)-2) { in nvlist_print_json_string()
60 return (-1); in nvlist_print_json_string()
90 * as JSON-escaped multibyte characters. in nvlist_print_json_string()
95 * Render other 7-bit ASCII characters directly in nvlist_print_json_string()
110 * Dump a JSON-formatted representation of an nvlist to the provided FILE *.
111 * This routine does not output any new-lines or additional whitespace other
131 if (nvlist_print_json_string(fp, nvpair_name(curr)) == -1) in nvlist_print_json()
132 return (-1); in nvlist_print_json()
138 if (nvlist_print_json_string(fp, string) == -1) in nvlist_print_json()
139 return (-1); in nvlist_print_json()
170 FPRINTF(fp, "%hd", fnvpair_value_int16(curr)); in nvlist_print_json()
217 fnvpair_value_nvlist(curr)) == -1) in nvlist_print_json()
218 return (-1); in nvlist_print_json()
230 if (nvlist_print_json_string(fp, val[i]) == -1) in nvlist_print_json()
231 return (-1); in nvlist_print_json()
245 if (nvlist_print_json(fp, val[i]) == -1) in nvlist_print_json()
246 return (-1); in nvlist_print_json()
331 FPRINTF(fp, "%hd", val[i]); in nvlist_print_json()
396 return (-1); in nvlist_print_json()