Lines Matching defs:others
4548 OtherClients *others;
4555 for (others = wOtherClients(pChild); others; others = others->next) {
4556 pChild->optional->otherEventMasks |= others->mask;
4609 OtherClients *others;
4631 for (others = wOtherClients(pWin); others; others = others->next) {
4632 if (!SameClient(others, client) && (check & others->mask))
4641 for (others = wOtherClients(pWin); others; others = others->next) {
4642 if (SameClient(others, client)) {
4643 check = others->mask;
4645 FreeResource(others->resource, RT_NONE);
4649 others->mask = mask;
4656 others = malloc(sizeof(OtherClients));
4657 if (!others)
4659 others->mask = mask;
4660 others->resource = FakeClientID(client->index);
4661 others->next = pWin->optional->otherClients;
4662 pWin->optional->otherClients = others;
4663 if (!AddResource(others->resource, RT_OTHERCLIENT, (void *) pWin))