Lines Matching refs:newval
2397 zval *link, *newval; in PHP_FUNCTION() local
2402 if (zend_parse_parameters(ZEND_NUM_ARGS(), "zlz", &link, &option, &newval) != SUCCESS) { in PHP_FUNCTION()
2442 convert_to_long_ex(newval); in PHP_FUNCTION()
2443 val = Z_LVAL_P(newval); in PHP_FUNCTION()
2453 convert_to_long_ex(newval); in PHP_FUNCTION()
2454 timeout.tv_sec = Z_LVAL_P(newval); in PHP_FUNCTION()
2465 convert_to_long_ex(newval); in PHP_FUNCTION()
2466 timeout = 1000 * Z_LVAL_P(newval); /* Convert to milliseconds */ in PHP_FUNCTION()
2477 convert_to_long_ex(newval); in PHP_FUNCTION()
2478 timeout.tv_sec = Z_LVAL_P(newval); in PHP_FUNCTION()
2515 convert_to_string_ex(newval); in PHP_FUNCTION()
2516 val = Z_STRVAL_P(newval); in PHP_FUNCTION()
2531 convert_to_boolean_ex(newval); in PHP_FUNCTION()
2532 val = Z_TYPE_P(newval) == IS_TRUE in PHP_FUNCTION()
2547 if (Z_TYPE_P(newval) != IS_ARRAY) { in PHP_FUNCTION()
2551 ncontrols = zend_hash_num_elements(Z_ARRVAL_P(newval)); in PHP_FUNCTION()
2555 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(newval), ctrlval) { in PHP_FUNCTION()
3745 ZEND_ARG_INFO(0, newval)