Lines Matching refs:prop_value

168     RRPropertyValuePtr prop_value;  in RRChangeOutputProperty()  local
184 prop_value = &prop->pending; in RRChangeOutputProperty()
186 prop_value = &prop->current; in RRChangeOutputProperty()
193 if ((format != prop_value->format) && (mode != PropModeReplace)) in RRChangeOutputProperty()
195 if ((prop_value->type != type) && (mode != PropModeReplace)) in RRChangeOutputProperty()
197 new_value = *prop_value; in RRChangeOutputProperty()
201 total_len = prop_value->size + len; in RRChangeOutputProperty()
223 (prop_value->size * size_in_bytes)); in RRChangeOutputProperty()
229 (prop_value->size * size_in_bytes)); in RRChangeOutputProperty()
235 memcpy((char *) old_data, (char *) prop_value->data, in RRChangeOutputProperty()
236 prop_value->size * size_in_bytes); in RRChangeOutputProperty()
246 free(prop_value->data); in RRChangeOutputProperty()
247 *prop_value = new_value; in RRChangeOutputProperty()
263 RRNoticePropertyChange(output, prop->propertyName, prop_value); in RRChangeOutputProperty()
616 RRPropertyValuePtr prop_value; in ProcRRGetOutputProperty() local
669 prop_value = RRGetOutputProperty(output, stuff->property, stuff->pending); in ProcRRGetOutputProperty()
670 if (!prop_value) in ProcRRGetOutputProperty()
676 if (((stuff->type != prop_value->type) && (stuff->type != AnyPropertyType)) in ProcRRGetOutputProperty()
678 reply.bytesAfter = prop_value->size; in ProcRRGetOutputProperty()
679 reply.format = prop_value->format; in ProcRRGetOutputProperty()
682 reply.propertyType = prop_value->type; in ProcRRGetOutputProperty()
697 n = (prop_value->format / 8) * prop_value->size; /* size (bytes) of prop */ in ProcRRGetOutputProperty()
716 reply.format = prop_value->format; in ProcRRGetOutputProperty()
718 if (prop_value->format) in ProcRRGetOutputProperty()
719 reply.nItems = len / (prop_value->format / 8); in ProcRRGetOutputProperty()
722 reply.propertyType = prop_value->type; in ProcRRGetOutputProperty()
745 memcpy(extra, (char *) prop_value->data + ind, len); in ProcRRGetOutputProperty()