Lines Matching refs:max_depth
108 int max_depth; member
289 if (object->max_depth == -1 || object->max_depth > object->level) { in spl_recursive_it_move_forward_ex()
551 intern->max_depth = -1; in spl_recursive_it_it_construct()
857 zend_long max_depth = -1; in SPL_METHOD() local
859 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &max_depth) == FAILURE) { in SPL_METHOD()
862 if (max_depth < -1) { in SPL_METHOD()
865 } else if (max_depth > INT_MAX) { in SPL_METHOD()
866 max_depth = INT_MAX; in SPL_METHOD()
869 object->max_depth = (int)max_depth; in SPL_METHOD()
882 if (object->max_depth == -1) { in SPL_METHOD()
885 RETURN_LONG(object->max_depth); in SPL_METHOD()
1010 ZEND_ARG_INFO(0, max_depth)