Lines Matching refs:new_value
692 XIPropertyValueRec new_value; in XIChangeDeviceProperty() local
718 new_value = *prop_value; in XIChangeDeviceProperty()
727 new_value.data = xallocarray(total_len, size_in_bytes); in XIChangeDeviceProperty()
728 if (!new_value.data && total_len && size_in_bytes) { in XIChangeDeviceProperty()
733 new_value.size = len; in XIChangeDeviceProperty()
734 new_value.type = type; in XIChangeDeviceProperty()
735 new_value.format = format; in XIChangeDeviceProperty()
739 new_data = new_value.data; in XIChangeDeviceProperty()
743 new_data = (void *) (((char *) new_value.data) + in XIChangeDeviceProperty()
745 old_data = new_value.data; in XIChangeDeviceProperty()
748 new_data = new_value.data; in XIChangeDeviceProperty()
749 old_data = (void *) (((char *) new_value.data) + in XIChangeDeviceProperty()
772 &new_value, checkonly); in XIChangeDeviceProperty()
775 free(new_value.data); in XIChangeDeviceProperty()
787 *prop_value = new_value; in XIChangeDeviceProperty()