Lines Matching refs:max_depth
97 int max_depth; member
280 if (object->max_depth == -1 || object->max_depth > object->level) { in spl_recursive_it_move_forward_ex()
570 intern->max_depth = -1; in spl_recursive_it_it_construct()
859 zend_long max_depth = -1; in PHP_METHOD() local
861 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &max_depth) == FAILURE) { in PHP_METHOD()
864 if (max_depth < -1) { in PHP_METHOD()
867 } else if (max_depth > INT_MAX) { in PHP_METHOD()
868 max_depth = INT_MAX; in PHP_METHOD()
871 object->max_depth = (int)max_depth; in PHP_METHOD()
883 if (object->max_depth == -1) { in PHP_METHOD()
886 RETURN_LONG(object->max_depth); in PHP_METHOD()