Lines Matching defs:buflen
511 size_t buflen;
518 os_strlen(token->string), &buflen);
521 ret = wpabuf_alloc_ext_data(buf, buflen);
552 char *buf, size_t buflen)
560 ret = os_snprintf(buf + len, buflen - len, "[%d:%s:%s]",
563 if (os_snprintf_error(buflen - len, ret)) {
567 json_print_token(token->child, depth + 1, buf, buflen);
568 json_print_token(token->sibling, depth, buf, buflen);
572 void json_print_tree(struct json_token *root, char *buf, size_t buflen)
575 json_print_token(root, 1, buf, buflen);