Searched refs:JSON_Value (Results 1 – 4 of 4) sorted by relevance
48 typedef struct json_value_t JSON_Value; typedef94 JSON_Value * json_parse_file(const char *filename);98 JSON_Value * json_parse_file_with_comments(const char *filename);101 JSON_Value * json_parse_string(const char *string);105 JSON_Value * json_parse_string_with_comments(const char *string);108 size_t json_serialization_size(const JSON_Value *value); /* returns 0 on fail */109 JSON_Status json_serialize_to_buffer(const JSON_Value *value, char *buf, size_t buf_size_in_bytes);110 JSON_Status json_serialize_to_file(const JSON_Value *value, const char *filename);111 char * json_serialize_to_string(const JSON_Value *value);114 size_t json_serialization_size_pretty(const JSON_Value *value); /* returns 0 on fail */[all …]
127 JSON_Value *parent;133 JSON_Value *wrapping_value;137 JSON_Value **values;145 JSON_Value *wrapping_value;146 JSON_Value **items;167 static JSON_Object * json_object_make(JSON_Value *wrapping_value);172 static JSON_Status json_object_add(JSON_Object *object, char *name, JSON_Value *value);173 static JSON_Value * json_object_getn_value(const JSON_Object *object, const char *name, size_t nam…179 static JSON_Array * json_array_make(JSON_Value *wrapping_value);180 static JSON_Status json_array_add(JSON_Array *array, JSON_Value *value);[all …]
41 JSON_Value *intel_device_info_dump_json(const struct intel_device_info *devinfo);
264 JSON_Value *json = intel_device_info_dump_json(&devinfo); in main()