Lines Matching defs:others
3943 OtherClients *others;
3952 for (others = wOtherClients(pChild); others; others = others->next)
3954 pChild->optional->otherEventMasks |= others->mask;
4013 OtherClients * others;
4039 for (others = wOtherClients (pWin); others; others = others->next)
4041 if (!SameClient(others, client) && (check & others->mask))
4052 for (others = wOtherClients (pWin); others; others = others->next)
4054 if (SameClient(others, client))
4056 check = others->mask;
4059 FreeResource(others->resource, RT_NONE);
4063 others->mask = mask;
4070 others = malloc(sizeof(OtherClients));
4071 if (!others)
4073 others->mask = mask;
4074 others->resource = FakeClientID(client->index);
4075 others->next = pWin->optional->otherClients;
4076 pWin->optional->otherClients = others;
4077 if (!AddResource(others->resource, RT_OTHERCLIENT, (pointer)pWin))