Searched refs:handles_count (Results 1 - 1 of 1) sorted by relevance

/system/core/adb/
H A Dsysdeps_win32.c1468 int handles_count; member in struct:WaitForAllParam
1487 memcpy(wait_on + 1, param->handles, param->handles_count * sizeof(HANDLE));
1489 res = WaitForMultipleObjects(param->handles_count + 1, wait_on, FALSE, INFINITE);
1490 if (res > 0 && res < (param->handles_count + 1)) {
1507 * handles_count Number of handles in the array.
1509 * (>= 0 && < handles_count) - Index of the signaled handle in the array, or
1513 _wait_for_all(HANDLE* handles, int handles_count) argument
1532 chunks = handles_count / WAIT_ALL_CHUNK_SIZE;
1533 remains = handles_count % WAIT_ALL_CHUNK_SIZE;
1537 D("Unable to allocate thread array for %d handles.", handles_count);
[all...]

Completed in 17 milliseconds