Home | History | Annotate | Download | only in message_loop

Lines Matching defs:depth

351 void NestingFunc(int* depth) {
352 if (*depth > 0) {
353 *depth -= 1;
355 Bind(&NestingFunc, depth));
367 int depth = 100;
369 Bind(&NestingFunc, &depth));
371 EXPECT_EQ(depth, 0);
515 void RecursiveFunc(TaskList* order, int cookie, int depth,
518 if (depth > 0) {
523 Bind(&RecursiveFunc, order, cookie, depth - 1, is_reentrant));
566 void RecursiveSlowFunc(TaskList* order, int cookie, int depth,
568 RecursiveFunc(order, cookie, depth, is_reentrant);