Lines Matching defs:root
372 json_t *root;
377 root = json_loads(input, 0, &error);
378 if (!root) {
385 if (!json_is_object(root)) {
391 element = json_object_get(root, "type");
408 element = json_object_get(root, "value");
428 json_decref(root);
437 json_t *root;
440 root = json_pack("{s:s, s:s}", "type", "simple", "value", secret);
441 if (!root) {
446 jsonized = json_dumps(root, JSON_INDENT(4));
462 json_decref(root);
472 json_t *root;
475 root = json_array();
476 if (root == NULL) {
485 json_array_append_new(root, json_string(array[i]));
488 jsonized = json_dumps(root, JSON_INDENT(4));
504 json_decref(root);