Lines Matching defs:xid
779 * client_private returns true if xid is owned/created by
780 * client or is a default server xid
783 client_private (ClientPtr client, XID xid)
785 if (same_client(client, xid) || (xid & SERVER_BIT))
835 * same_client returns true if xid is owned/created by
839 same_client (ClientPtr client, XID xid)
845 if (CLIENT_ID(xid) == 0 || (clients[CLIENT_ID(xid)] == NULL))
848 if((SERVER_BIT & xid) == 0)
850 if (client->index == CLIENT_ID(xid))
852 xid_client = clients[CLIENT_ID(xid)];