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

/system/core/adb/
H A Dsysdeps_win32.cpp1478 int handles_count; member in struct:WaitForAllParam
1497 memcpy(wait_on + 1, param->handles, param->handles_count * sizeof(HANDLE));
1499 res = WaitForMultipleObjects(param->handles_count + 1, wait_on, FALSE, INFINITE);
1500 if (res > 0 && res < (param->handles_count + 1)) {
1517 * handles_count Number of handles in the array.
1519 * (>= 0 && < handles_count) - Index of the signaled handle in the array, or
1523 _wait_for_all(HANDLE* handles, int handles_count) argument
1542 chunks = handles_count / WAIT_ALL_CHUNK_SIZE;
1543 remains = handles_count % WAIT_ALL_CHUNK_SIZE;
1547 D("Unable to allocate thread array for %d handles.", handles_count);
[all...]

Completed in 43 milliseconds