Lines Matching defs:depth
62 int depth; /**< number of recursive runs */
543 orig_depth = loop->depth;
546 _dbus_verbose ("Iteration block=%d depth=%d timeout_count=%d watch_count=%d\n",
547 block, loop->depth, loop->timeout_count, loop->watch_count);
729 if (loop->depth != orig_depth)
784 if (loop->depth != orig_depth)
864 _dbus_assert (loop->depth >= 0);
868 our_exit_depth = loop->depth;
869 loop->depth += 1;
871 _dbus_verbose ("Running main loop, depth %d -> %d\n",
872 loop->depth - 1, loop->depth);
874 while (loop->depth != our_exit_depth)
883 _dbus_assert (loop->depth > 0);
885 loop->depth -= 1;
887 _dbus_verbose ("Quit main loop, depth %d -> %d\n",
888 loop->depth + 1, loop->depth);