Lines Matching defs:prop
247 void jsonw_string_field(json_writer_t *self, const char *prop, const char *val)
249 jsonw_name(self, prop);
253 void jsonw_bool_field(json_writer_t *self, const char *prop, bool val)
255 jsonw_name(self, prop);
260 void jsonw_float_field(json_writer_t *self, const char *prop, double val)
262 jsonw_name(self, prop);
268 const char *prop,
272 jsonw_name(self, prop);
276 void jsonw_uint_field(json_writer_t *self, const char *prop, uint64_t num)
278 jsonw_name(self, prop);
282 void jsonw_hu_field(json_writer_t *self, const char *prop, unsigned short num)
284 jsonw_name(self, prop);
289 const char *prop,
292 jsonw_name(self, prop);
296 void jsonw_int_field(json_writer_t *self, const char *prop, int64_t num)
298 jsonw_name(self, prop);
302 void jsonw_null_field(json_writer_t *self, const char *prop)
304 jsonw_name(self, prop);