Home | History | Annotate | Download | only in libXNVCtrl

Lines Matching refs:rep

156     xnvCtrlQueryExtensionReply rep;
168 if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
173 if (major) *major = rep.major;
174 if (minor) *minor = rep.minor;
186 xnvCtrlIsNvReply rep;
200 if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
205 isnv = rep.isnv;
218 xnvCtrlQueryTargetCountReply rep;
231 if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
236 if (value) *value = rep.count;
292 xnvCtrlSetAttributeAndGetStatusReply rep;
309 if (!_XReply (dpy, (xReply *) &rep, 0, False)) {
317 success = rep.flags;
344 xnvCtrlQueryAttributeReply rep;
362 if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
367 exists = rep.flags;
368 if (exists && value) *value = rep.value;
395 xnvCtrlQueryAttribute64Reply rep;
413 if (!_XReply(dpy, (xReply *)&rep, 0, xTrue)) {
418 exists = rep.flags;
419 if (exists && value) *value = rep.value_64;
435 xnvCtrlQueryStringAttributeReply rep;
456 if (!_XReply (dpy, (xReply *) &rep, 0, False)) {
461 length = rep.length;
462 numbytes = rep.n;
464 exists = rep.flags;
505 xnvCtrlSetStringAttributeReply rep;
528 if (!_XReply (dpy, (xReply *) &rep, 0, False)) {
536 success = rep.flags;
562 xnvCtrlQueryValidAttributeValuesReply rep;
574 if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
579 exists = rep.flags;
581 values->type = rep.attr_type;
582 if (rep.attr_type == ATTRIBUTE_TYPE_RANGE) {
583 values->u.range.min = rep
584 values->u.range.max = rep.max;
586 if (rep.attr_type == ATTRIBUTE_TYPE_INT_BITS) {
587 values->u.bits.ints = rep.bits;
589 values->permissions = rep.perms;
607 xnvCtrlQueryValidAttributeValuesReply rep;
625 if (!_XReply(dpy, (xReply *)&rep, 0, xTrue)) {
630 exists = rep.flags;
632 values->type = rep.attr_type;
633 values->permissions = rep.perms;
650 xnvCtrlQueryValidAttributeValues64Reply rep;
662 if (!_XReply(dpy, (xReply *)&rep,
669 exists = rep.flags;
671 values->type = rep.attr_type;
672 if (rep.attr_type == ATTRIBUTE_TYPE_RANGE) {
673 values->u.range.min = rep.min_64;
674 values->u.range.max = rep.max_64;
676 if (rep.attr_type == ATTRIBUTE_TYPE_INT_BITS) {
677 values->u.bits.ints = rep.bits_64;
679 values->permissions = rep.perms;
751 xnvCtrlQueryAttributePermissionsReply rep;
765 if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
770 exists = rep.flags;
772 permissions->type = rep.attr_type;
773 permissions->permissions = rep.perms;
880 xnvCtrlQueryGvoColorConversionReply rep;
895 if (!_XReply(dpy, (xReply *) &rep, 0, xFalse)) {
979 xnvCtrlQueryBinaryDataReply rep;
1000 if (!_XReply (dpy, (xReply *) &rep, 0, False)) {
1005 length = rep.length;
1006 numbytes = rep.n;
1008 exists = rep.flags;
1051 xnvCtrlStringOperationReply rep;
1089 if (!_XReply (dpy, (xReply *) &rep, 0, False)) {
1095 length = rep.length;
1096 outSize = rep.num_bytes;
1108 ret = rep.ret;