Lines Matching refs:max_depth
85 int max_depth; member
321 if (object->max_depth == -1 || object->max_depth > object->level) { in spl_recursive_it_move_forward_ex()
626 intern->max_depth = -1; in spl_recursive_it_it_construct()
916 zend_long max_depth = -1; in PHP_METHOD() local
918 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &max_depth) == FAILURE) { in PHP_METHOD()
921 if (max_depth < -1) { in PHP_METHOD()
924 } else if (max_depth > INT_MAX) { in PHP_METHOD()
925 max_depth = INT_MAX; in PHP_METHOD()
928 object->max_depth = (int)max_depth; in PHP_METHOD()
940 if (object->max_depth == -1) { in PHP_METHOD()
943 RETURN_LONG(object->max_depth); in PHP_METHOD()