Lines Matching defs:pending
62 free(prop->pending.data);
119 RRInitOutputPropertyValue(&prop->pending);
162 const void *value, Bool sendevent, Bool pending)
183 if (pending && prop->is_pending)
184 prop_value = &prop->pending;
238 if (pending && pScrPriv->rrOutputSetProperty &&
259 if (pending && prop->is_pending)
262 if (!(pending && prop->is_pending))
292 /* Skip non-pending properties */
296 pending_value = &property->pending;
300 * If the pending and current values are equal, don't mark it
331 RRGetOutputProperty(RROutputPtr output, Atom property, Bool pending)
338 if (pending && prop->is_pending)
339 return &prop->pending;
353 Bool pending, Bool range, Bool immutable,
388 * Property moving from pending to non-pending
389 * loses any pending values
391 if (prop->is_pending && !pending) {
392 free(prop->pending.data);
393 RRInitOutputPropertyValue(&prop->pending);
396 prop->is_pending = pending;
484 .pending = prop->is_pending,
520 return RRConfigureOutputProperty(output, stuff->property, stuff->pending,
669 prop_value = RRGetOutputProperty(output, stuff->property, stuff->pending);