Lines Matching defs:buf_sz
81 #define scf_entity_to_fmri(ent, buf, buf_sz) \
82 (ent.type ? scf_service_to_fmri(ent.u.svc, buf, buf_sz) : \
83 scf_instance_to_fmri(ent.u.inst, buf, buf_sz))
236 size_t buf_sz;
239 buf_sz = max_scf_fmri_length + 1;
240 buf = safe_malloc(buf_sz);
242 if (scf_property_to_fmri(prop, buf, buf_sz) == -1)
248 buf_sz = max_scf_name_length + 1;
249 buf = safe_malloc(buf_sz);
251 if (scf_pg_get_name(pg, buf, buf_sz) < 0)
256 if (scf_property_get_name(prop, buf, buf_sz) < 0)