Lines Matching defs:others

1417             /* all others */
2667 InputClientsPtr others;
2676 for (others = wOtherInputMasks(pWin)->inputClients; others;
2677 others = others->next) {
2678 if (!SameClient(others, client) && (check &
2679 others->mask[mskidx]))
2683 for (others = wOtherInputMasks(pWin)->inputClients; others;
2684 others = others->next) {
2685 if (SameClient(others, client)) {
2686 check = others->mask[mskidx];
2687 others->mask[mskidx] = mask;
2690 if (i != mskidx && others->mask[i] != 0)
2695 FreeResource(others->resource, RT_NONE);
2733 InputClientsPtr others;
2737 others = AllocInputClient();
2738 if (!others)
2742 others->xi2mask = xi2mask_new();
2743 if (!others->xi2mask)
2745 others->mask[mskidx] = mask;
2746 others->resource = FakeClientID(client->index);
2747 others->next = pWin->optional->inputMasks->inputClients;
2748 pWin->optional->inputMasks->inputClients = others;
2749 if (!AddResource(others->resource, RT_INPUTCLIENT, (void *) pWin))
2754 FreeInputClient(&others);
2792 InputClientsPtr others;
2801 for (others = inputMasks->inputClients; others;
2802 others = others->next) {
2804 inputMasks->inputEvents[i] |= others->mask[i];
2805 xi2mask_merge(inputMasks->xi2mask, others->xi2mask);
3328 InputClientsPtr others = NULL;
3332 for (others = wOtherInputMasks(win)->inputClients; others;
3333 others = others->next) {
3334 if (SameClient(others, client)) {
3335 xi2mask_zero(others->xi2mask, dev->id);
3341 if (len && !others) {
3345 others = wOtherInputMasks(win)->inputClients;
3348 if (others) {
3349 xi2mask_zero(others->xi2mask, dev->id);
3350 len = min(len, xi2mask_mask_size(others->xi2mask));
3354 xi2mask_set_one_mask(others->xi2mask, dev->id, mask, len);