Lines Matching defs:obj
76 auto obj = json_object();
77 json_object_set_new(obj, "seq", json_integer(seq));
78 json_object_set(obj, "wire", wire);
79 json_object_set(obj, "headers", headers);
83 json_object_set_new(obj, "header_table_size",
87 json_object_set_new(obj, "header_table",
90 json_dumpf(obj, stdout, JSON_INDENT(2) | JSON_PRESERVE_ORDER);
91 json_decref(obj);
95 static int inflate_hd(json_t *obj, nghttp2_hd_inflater *inflater, int seq) {
102 auto wire = json_object_get(obj, "wire");
114 auto table_size = json_object_get(obj, "header_table_size");
201 auto obj = json_array_get(cases, i);
202 if (!json_is_object(obj)) {
206 if (inflate_hd(obj, inflater, i) != 0) {