Lines Matching refs:g
32 yajl_gen g; member
39 if ((ctx)->g == NULL) { \
41 (ctx)->g = yajl_gen_alloc(&conf, NULL); \
45 if ((ctx)->g == NULL) { \
46 (ctx)->g = yajl_gen_alloc(NULL); \
47 yajl_gen_config((ctx)->g, yajl_gen_beautify, 1); \
48 yajl_gen_config((ctx)->g, yajl_gen_indent_string, " "); \
52 if ((ctx)->g) yajl_gen_free((ctx)->g)
53 # define DEBUG_GEN(ctx, type) yajl_gen_##type(ctx->g)
54 # define DEBUG_GEN_VALUE(ctx, type, value) yajl_gen_##type(ctx->g, value)
55 # define DEBUG_GEN_STRING(ctx, str, n) yajl_gen_string(ctx->g, str, n)
56 # define DEBUG_GEN_NUMBER(ctx, str, n) yajl_gen_number(ctx->g, str, n)
61 yajl_gen_get_buf((yajl_ctx)->g, &buf, &len); \
64 yajl_gen_free((yajl_ctx)->g); \
65 (yajl_ctx)->g = NULL; \