Lines Matching refs:newval
3201 zval *link, *newval; in PHP_FUNCTION() local
3206 if (zend_parse_parameters(ZEND_NUM_ARGS(), "zlz", &link, &option, &newval) != SUCCESS) { in PHP_FUNCTION()
3246 convert_to_long_ex(newval); in PHP_FUNCTION()
3247 if (ZEND_LONG_EXCEEDS_INT(Z_LVAL_P(newval))) { in PHP_FUNCTION()
3251 val = (int)Z_LVAL_P(newval); in PHP_FUNCTION()
3261 convert_to_long_ex(newval); in PHP_FUNCTION()
3262 timeout.tv_sec = Z_LVAL_P(newval); in PHP_FUNCTION()
3273 convert_to_long_ex(newval); in PHP_FUNCTION()
3274 timeout = 1000 * Z_LVAL_P(newval); /* Convert to milliseconds */ in PHP_FUNCTION()
3285 convert_to_long_ex(newval); in PHP_FUNCTION()
3286 timeout.tv_sec = Z_LVAL_P(newval); in PHP_FUNCTION()
3323 val = zval_get_string(newval); in PHP_FUNCTION()
3343 val = zend_is_true(newval) ? LDAP_OPT_ON : LDAP_OPT_OFF; in PHP_FUNCTION()
3355 if (Z_TYPE_P(newval) != IS_ARRAY) { in PHP_FUNCTION()
3360 ctrls = _php_ldap_controls_from_array(ldap, newval); in PHP_FUNCTION()
4716 ZEND_ARG_INFO(0, newval)