Home | History | Annotate | Download | only in adb

Lines Matching refs:HANDLE

23     HANDLE    file;
99 HANDLE handle;
104 HANDLE event;
111 #define fh_handle u.handle
868 HANDLE evt_write; /* event signaled when one can write to a buffer */
870 HANDLE evt_read; /* event signaled when one can read from a buffer */
1284 HANDLE h;
1357 HANDLE htab[ MAX_LOOPER_HANDLES ];
1441 * handle array into chunks with the chunk size less than 64, and fire up as many
1443 * handles, and will report back to the caller which handle has been set.
1452 /* A handle to an event to signal when waiting is over. This handle is shared
1455 HANDLE main_event;
1456 /* Upon exit from a waiting thread contains the index of the handle that has
1457 * been signaled. The index is an absolute index of the signaled handle in
1461 * handle that was signaled. This is fine, because the caller cares only
1462 * about any handle being signaled. It doesn't care about the order, nor
1466 HANDLE* handles;
1469 /* Index inside the main array of the first handle in the 'handles' array. */
1471 /* Waiting thread handle. */
1472 HANDLE thread;
1479 HANDLE wait_on[WAIT_ALL_CHUNK_SIZE + 1];
1486 /* The rest of the handles go behind the main event handle. */
1487 memcpy(wait_on + 1, param->handles, param->handles_count * sizeof(HANDLE));
1509 * (>= 0 && < handles_count) - Index of the signaled handle in the array, or
1513 _wait_for_all(HANDLE* handles, int handles_count)
1516 HANDLE main_event;
1573 * need a handle to wait on for thread termination. */
1574 threads[chunk].thread = (HANDLE)_beginthreadex(NULL, 0, _in_waiter_thread,
1702 D("handle count %d exceeds MAXIMUM_WAIT_OBJECTS.\n", looper->htab_count);
2113 D("_event_socketpair_start: can't handle FDE_READ+FDE_WRITE\n" );