Searched defs:active_count (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/mojo/common/
H A Dhandle_watcher_unittest.cc364 // Called on the main thread when a thread is done. Decrements |active_count|
365 // and if |active_count| is zero quits |run_loop|.
366 void StressThreadDone(base::RunLoop* run_loop, int* active_count) { argument
367 (*active_count)--;
368 EXPECT_GE(*active_count, 0);
369 if (*active_count == 0)
374 // |count| is the number of HandleWatchers to create. |active_count| is the
378 // |active_count| and |run_loop| should only be used on the main thread.
382 int* active_count) {
420 active_count));
379 RunStressTest(int count, scoped_refptr<base::TaskRunner> task_runner, base::RunLoop* run_loop, int* active_count) argument
[all...]
/external/pcre/dist/
H A Dpcre_dfa_exec.c353 if (active_count++ < wscount) \
363 if (active_count++ < wscount) \
418 int active_count, new_count, match_count; local
592 active_count = new_count;
596 workspace[1] = active_count;
604 for (i = 0; i < active_count; i++)
611 next_active_state = active_states + active_count;
638 for (i = 0; i < active_count; i++)
1185 active_count--; /* Remove non-match possibility */
1216 active_count
[all...]

Completed in 235 milliseconds