Home
last modified time | relevance | path

Searched refs:aXferEvent (Results 1 – 1 of 1) sorted by relevance

/drivers/staging/ced1401/userspace/
Duse1401.c251 static HANDLE aXferEvent[MAX1401] = {0}; // transfer events for the 1401s variable
1461 if (aXferEvent[hand]) // if this 1401 has an open event handle in U14Close1401()
1463 CloseHandle(aXferEvent[hand]); // close down the handle in U14Close1401()
1464 aXferEvent[hand] = NULL; // and mark it as gone in U14Close1401()
2361 if ((bEvent != 0) != (aXferEvent[hand] != 0)) // change of event state? in U14SetTransferEvent()
2364 aXferEvent[hand] = CreateEvent(NULL, FALSE, FALSE, NULL); in U14SetTransferEvent()
2367 CloseHandle(aXferEvent[hand]); // clear the existing event in U14SetTransferEvent()
2368 aXferEvent[hand] = NULL; // and clear handle in U14SetTransferEvent()
2379 *((HANDLE*)&csBlock.longs[1]) = aXferEvent[hand]; // The event handle is 64-bits in U14SetTransferEvent()
2384 csBlock.longs[1] = (long)aXferEvent[hand]; // ...especially the event handle in U14SetTransferEvent()
[all …]