Lines Matching refs:newval
3106 zval *link = NULL, *newval; in PHP_FUNCTION() local
3111 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "O!lz", &link, ldap_link_ce, &option, &newval) != SUCCE… in PHP_FUNCTION()
3152 zend_long lval = zval_try_get_long(newval, &failed); in PHP_FUNCTION()
3154 …_type_error(3, "must be of type int for the given option, %s given", zend_zval_value_name(newval)); in PHP_FUNCTION()
3172 zend_long lval = zval_try_get_long(newval, &failed); in PHP_FUNCTION()
3174 …t be of type int for the LDAP_OPT_NETWORK_TIMEOUT option, %s given", zend_zval_value_name(newval)); in PHP_FUNCTION()
3188 zend_long lval = zval_try_get_long(newval, &failed); in PHP_FUNCTION()
3190 …be of type int for the LDAP_X_OPT_CONNECT_TIMEOUT option, %s given", zend_zval_value_name(newval)); in PHP_FUNCTION()
3205 zend_long lval = zval_try_get_long(newval, &failed); in PHP_FUNCTION()
3207 …(3, "must be of type int for the LDAP_OPT_TIMEOUT option, %s given", zend_zval_value_name(newval)); in PHP_FUNCTION()
3246 zend_string *val = zval_try_get_string(newval); in PHP_FUNCTION()
3265 void *val = zend_is_true(newval) ? LDAP_OPT_ON : LDAP_OPT_OFF; in PHP_FUNCTION()
3277 if (Z_TYPE_P(newval) != IS_ARRAY) { in PHP_FUNCTION()
3278 …be of type array for the LDAP_OPT_CLIENT_CONTROLS option, %s given", zend_zval_value_name(newval)); in PHP_FUNCTION()
3282 ctrls = php_ldap_controls_from_array(ldap, Z_ARRVAL_P(newval), 3); in PHP_FUNCTION()