Lines Matching refs:config
38 #define APPEND_ARRAY ZZJSON *temp_array; temp_array = zzjson_array_append(config, *item, zzjson_create_object(config,
39 #define APPEND_OBJECT_ARRAY(value) ZZJSON *temp_ar; temp_ar = zzjson_array_append(config, *item, value); *item=temp_ar;
40 #define CREATE_ARRAY *item = zzjson_create_array(config, zzjson_create_object(config,
41 #define add_ai(name,value) name,zzjson_create_number_i(config,value),
43 #define add_as(name,value) name,zzjson_create_string(config,value),
49 #define CREATE_NEW_OBJECT *item = zzjson_create_object(config, NULL);
50 #define FLUSH_OBJECT flush(config, item);
53 #define add_i(name,value) *item = zzjson_object_append(config, *item, name, zzjson_create_number_i(config, value))
57 #define add_s(name,value) *item = zzjson_object_append(config, *item, name, zzjson_create_string(config, value))
61 #define add_bool_true(name) *item = zzjson_object_append(config, *item, (char *)name, zzjson_create_true(config))
62 #define add_bool_false(name) *item = zzjson_object_append(config, *item, (char*)name, zzjson_create_false(config))
68 void print_and_flush(ZZJSON_CONFIG *config, ZZJSON **item);
70 void flush (ZZJSON_CONFIG *config, ZZJSON ** item);
73 void dump_cpu(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);
74 void dump_pxe(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);
75 void dump_syslinux(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);
76 void dump_vpd(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);
77 void dump_vesa(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);
78 void dump_disks(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);
79 void dump_dmi(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);
80 void dump_memory(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);
81 void dump_pci(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);
82 void dump_acpi(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);
83 void dump_kernel(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);
84 void dump_hdt(struct s_hardware *hardware, ZZJSON_CONFIG *config, ZZJSON **item);