Lines Matching full:others

1355             /* all others */  in RetrieveTouchDeliveryData()
2421 InputClientsPtr others; in SelectForWindow() local
2430 for (others = wOtherInputMasks(pWin)->inputClients; others; in SelectForWindow()
2431 others = others->next) { in SelectForWindow()
2432 if (!SameClient(others, client) && (check & in SelectForWindow()
2433 others->mask[mskidx])) in SelectForWindow()
2437 for (others = wOtherInputMasks(pWin)->inputClients; others; in SelectForWindow()
2438 others = others->next) { in SelectForWindow()
2439 if (SameClient(others, client)) { in SelectForWindow()
2440 check = others->mask[mskidx]; in SelectForWindow()
2441 others->mask[mskidx] = mask; in SelectForWindow()
2444 if (i != mskidx && others->mask[i] != 0) in SelectForWindow()
2449 FreeResource(others->resource, RT_NONE); in SelectForWindow()
2487 InputClientsPtr others; in AddExtensionClient() local
2491 others = AllocInputClient(); in AddExtensionClient()
2492 if (!others) in AddExtensionClient()
2496 others->xi2mask = xi2mask_new(); in AddExtensionClient()
2497 if (!others->xi2mask) in AddExtensionClient()
2499 others->mask[mskidx] = mask; in AddExtensionClient()
2500 others->resource = FakeClientID(client->index); in AddExtensionClient()
2501 others->next = pWin->optional->inputMasks->inputClients; in AddExtensionClient()
2502 pWin->optional->inputMasks->inputClients = others; in AddExtensionClient()
2503 if (!AddResource(others->resource, RT_INPUTCLIENT, (void *) pWin)) in AddExtensionClient()
2508 FreeInputClient(&others); in AddExtensionClient()
2540 InputClientsPtr others; in RecalculateDeviceDeliverableEvents() local
2549 for (others = inputMasks->inputClients; others; in RecalculateDeviceDeliverableEvents()
2550 others = others->next) { in RecalculateDeviceDeliverableEvents()
2552 inputMasks->inputEvents[i] |= others->mask[i]; in RecalculateDeviceDeliverableEvents()
2553 xi2mask_merge(inputMasks->xi2mask, others->xi2mask); in RecalculateDeviceDeliverableEvents()
3071 InputClientsPtr others = NULL; in XISetEventMask() local
3075 for (others = wOtherInputMasks(win)->inputClients; others; in XISetEventMask()
3076 others = others->next) { in XISetEventMask()
3077 if (SameClient(others, client)) { in XISetEventMask()
3078 xi2mask_zero(others->xi2mask, dev->id); in XISetEventMask()
3084 if (len && !others) { in XISetEventMask()
3087 others = wOtherInputMasks(win)->inputClients; in XISetEventMask()
3090 if (others) { in XISetEventMask()
3091 xi2mask_zero(others->xi2mask, dev->id); in XISetEventMask()
3092 len = min(len, xi2mask_mask_size(others->xi2mask)); in XISetEventMask()
3096 xi2mask_set_one_mask(others->xi2mask, dev->id, mask, len); in XISetEventMask()