Lines Matching defs:parsebuffer
55 parse_buffer parsebuffer = { 0, 0, 0, 0, { 0, 0, 0 } };
56 parsebuffer.content = (const unsigned char*)json;
57 parsebuffer.length = strlen(json) + sizeof("");
58 parsebuffer.hooks = global_hooks;
60 TEST_ASSERT_FALSE(parse_object(item, &parsebuffer));
67 parse_buffer parsebuffer = { 0, 0, 0, 0, { 0, 0, 0 } };
68 parsebuffer.content = (const unsigned char*)json;
69 parsebuffer.length = strlen(json) + sizeof("");
70 parsebuffer.hooks = global_hooks;
72 TEST_ASSERT_TRUE(parse_object(item, &parsebuffer));