Home
last modified time | relevance | path

Searched refs:retval (Results 76 – 100 of 189) sorted by relevance

12345678

/PHP-5.5/Zend/
H A Dzend_ini_parser.y200 int retval; in zend_parse_ini_file() local
212 retval = ini_parse(TSRMLS_C); in zend_parse_ini_file()
217 if (retval == 0) { in zend_parse_ini_file()
229 int retval; in zend_parse_ini_string() local
241 retval = ini_parse(TSRMLS_C); in zend_parse_ini_string()
245 if (retval == 0) { in zend_parse_ini_string()
H A Dzend_vm_execute.h2224 int retval; in ZEND_JMPZNZ_SPEC_CONST_HANDLER() local
2258 int retval; in ZEND_JMPZ_EX_SPEC_CONST_HANDLER() local
2289 int retval; in ZEND_JMPNZ_EX_SPEC_CONST_HANDLER() local
2305 if (retval) { in ZEND_JMPNZ_EX_SPEC_CONST_HANDLER()
7544 int retval; in ZEND_JMPZNZ_SPEC_TMP_HANDLER() local
7578 int retval; in ZEND_JMPZ_EX_SPEC_TMP_HANDLER() local
7609 int retval; in ZEND_JMPNZ_EX_SPEC_TMP_HANDLER() local
12749 int retval; in ZEND_JMPZNZ_SPEC_VAR_HANDLER() local
12783 int retval; in ZEND_JMPZ_EX_SPEC_VAR_HANDLER() local
12814 int retval; in ZEND_JMPNZ_EX_SPEC_VAR_HANDLER() local
[all …]
H A Dzend_vm_def.h596 zval **retval; variable
663 *retval = z;
704 zval *retval; variable
1013 zval **retval; variable
1357 zval *retval; variable
1479 zval *retval; variable
2170 int retval; variable
2204 int retval; variable
2220 if (!retval) {
2235 int retval; variable
[all …]
H A Dzend_objects.c143 zend_object_value retval; in zend_objects_new() local
150retval.handle = zend_objects_store_put(*object, (zend_objects_store_dtor_t) zend_objects_destroy_o… in zend_objects_new()
151 retval.handlers = &std_object_handlers; in zend_objects_new()
152 return retval; in zend_objects_new()
H A Dzend_operators.c84 int retval; in zend_atoi() local
94 retval *= 1024; in zend_atoi()
98 retval *= 1024; in zend_atoi()
102 retval *= 1024; in zend_atoi()
106 return retval; in zend_atoi()
112 long retval; in zend_atol() local
134 return retval; in zend_atol()
2009 int retval; in zend_binary_strcmp() local
2015 if (!retval) { in zend_binary_strcmp()
2025 int retval; in zend_binary_strncmp() local
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dhtmlentities20.phpt7 $retval = pack('C', $k);
9 $retval = pack('C2',
13 $retval = pack('C3',
18 $retval = pack('C4',
24 return $retval;
H A Dhtmlentities_html4.phpt7 $retval = pack('C', $k);
9 $retval = pack('C2',
13 $retval = pack('C3',
18 $retval = pack('C4',
24 $retval = pack('C5',
31 $retval = pack('C6',
39 return $retval;
/PHP-5.5/ext/intl/converter/
H A Dconverter.c250 objval->to_cb.retval_ptr_ptr = &retval; in php_converter_to_u_callback()
255 } else if (retval) { in php_converter_to_u_callback()
257 zval_ptr_dtor(&retval); in php_converter_to_u_callback()
347 objval->from_cb.retval_ptr_ptr = &retval; in php_converter_from_u_callback()
352 } else if (retval) { in php_converter_from_u_callback()
354 zval_ptr_dtor(&retval); in php_converter_from_u_callback()
1053 zend_object_value retval; in php_converter_object_ctor() local
1067 return retval; in php_converter_object_ctor()
1076 return retval; in php_converter_create_object()
1099 return retval; in php_converter_clone_object()
[all …]
/PHP-5.5/ext/sqlite3/
H A Dsqlite3.c686 zval *retval = NULL; local
778 if (retval) {
814 if (retval) {
816 retval = NULL;
822 if (retval) {
866 zval *retval = NULL; local
901 if (!retval) {
913 if (retval) {
2174 return retval;
2195 return retval;
[all …]
/PHP-5.5/ext/standard/
H A Dincomplete_class.c141 char *retval = NULL; in php_lookup_class_name() local
148 retval = estrndup(Z_STRVAL_PP(val), Z_STRLEN_PP(val)); in php_lookup_class_name()
155 return retval; in php_lookup_class_name()
H A Dtype.c375 zend_bool retval; in PHP_FUNCTION() local
388 retval = zend_is_callable_ex(var, NULL, check_flags, &name, NULL, NULL, &error TSRMLS_CC); in PHP_FUNCTION()
392 retval = zend_is_callable_ex(var, NULL, check_flags, NULL, NULL, NULL, &error TSRMLS_CC); in PHP_FUNCTION()
399 RETURN_BOOL(retval); in PHP_FUNCTION()
H A Dcrypt_freesec.c191 int retval; in ascii_to_bin() local
193 retval = sch - '.'; in ascii_to_bin()
195 retval = sch - ('A' - 12); in ascii_to_bin()
197 retval = sch - ('a' - 38); in ascii_to_bin()
199 retval &= 0x3f; in ascii_to_bin()
201 return(retval); in ascii_to_bin()
586 int retval; in des_cipher() local
601 retval = do_des(rawl, rawr, &l_out, &r_out, count, data); in des_cipher()
612 return(retval); in des_cipher()
H A Ddns.c953 zval *retval; in PHP_FUNCTION() local
956 if (retval != NULL && store_results) { in PHP_FUNCTION()
957 add_next_index_zval(return_value, retval); in PHP_FUNCTION()
966 zval *retval = NULL; in PHP_FUNCTION() local
968 cp = php_parserr(cp, end, &answer, DNS_T_ANY, authns != NULL, raw, &retval); in PHP_FUNCTION()
969 if (retval != NULL) { in PHP_FUNCTION()
970 add_next_index_zval(authns, retval); in PHP_FUNCTION()
978 zval *retval = NULL; in PHP_FUNCTION() local
980 cp = php_parserr(cp, end, &answer, DNS_T_ANY, 1, raw, &retval); in PHP_FUNCTION()
981 if (retval != NULL) { in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/intl/dateformat/
H A Ddateformat_class.c64 zend_object_value retval; in IntlDateFormatter_object_create() local
76 retval.handle = zend_objects_store_put( in IntlDateFormatter_object_create()
82 retval.handlers = &IntlDateFormatter_handlers; in IntlDateFormatter_object_create()
84 return retval; in IntlDateFormatter_object_create()
/PHP-5.5/ext/date/
H A Dphp_date.c1136 retval = retval % 1000; in date_format()
1333 retval = retval % 1000; in php_idate()
1354 return retval; in php_idate()
1438 return retval; in php_parse_date()
2130 return retval; in date_object_new_date_ex()
2279 return retval; in date_object_new_timezone_ex()
2378 return retval; in date_object_new_interval_ex()
2467 return retval; in date_object_new_period_ex()
4003 return retval; in date_interval_initialize()
4010 zval *retval; in date_interval_read_property() local
[all …]
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c1873 int retval; in pdo_stmt_setup_fetch_mode() local
1901 retval = FAILURE; in pdo_stmt_setup_fetch_mode()
1916 retval = FAILURE; in pdo_stmt_setup_fetch_mode()
1930 retval = SUCCESS; in pdo_stmt_setup_fetch_mode()
1941 retval = SUCCESS; in pdo_stmt_setup_fetch_mode()
1952 retval = SUCCESS; in pdo_stmt_setup_fetch_mode()
2002 retval = SUCCESS; in pdo_stmt_setup_fetch_mode()
2040 return retval; in pdo_stmt_setup_fetch_mode()
2329 return retval; in dbstmt_clone_obj()
2445 return retval; in pdo_dbstmt_new()
[all …]
/PHP-5.5/ext/json/
H A Djson.c558 zval *retval = NULL, fname; in json_encode_serializable_object() local
575 …_user_function_ex(EG(function_table), &val, &fname, &retval, 0, NULL, 1, NULL TSRMLS_CC) || !retva… in json_encode_serializable_object()
583 zval_ptr_dtor(&retval); in json_encode_serializable_object()
588 if ((Z_TYPE_P(retval) == IS_OBJECT) && in json_encode_serializable_object()
589 (Z_OBJ_HANDLE_P(retval) == Z_OBJ_HANDLE_P(val))) { in json_encode_serializable_object()
591 json_encode_array(buf, &retval, options TSRMLS_CC); in json_encode_serializable_object()
594 php_json_encode(buf, retval, options TSRMLS_CC); in json_encode_serializable_object()
597 zval_ptr_dtor(&retval); in json_encode_serializable_object()
/PHP-5.5/sapi/isapi/stresstest/
H A Dstresstest.cpp110 bool retval; in CompareFiles() local
123 retval = TRUE; // success oriented in CompareFiles()
131 retval = FALSE; in CompareFiles()
136 retval = FALSE; in CompareFiles()
144 retval = FALSE; in CompareFiles()
151 return retval; in CompareFiles()
158 bool retval; in CompareStringWithFile() local
167 retval = TRUE; // success oriented in CompareStringWithFile()
176 retval = FALSE; in CompareStringWithFile()
180 if (!retval) fprintf(stderr, "File zero length %s\n",filename); in CompareStringWithFile()
[all …]
/PHP-5.5/ext/xsl/
H A Dxsltprocessor.c186 zval *retval; in xsl_ext_function_php() local
329 fci.retval_ptr_ptr = &retval; in xsl_ext_function_php()
347 } else if (retval == NULL) { in xsl_ext_function_php()
349 …if (retval->type == IS_OBJECT && instanceof_function( Z_OBJCE_P(retval), dom_node_class_entry TSRM… in xsl_ext_function_php()
356 zval_add_ref(&retval); in xsl_ext_function_php()
361 } else if (retval->type == IS_BOOL) { in xsl_ext_function_php()
362 valuePush(ctxt, xmlXPathNewBoolean(retval->value.lval)); in xsl_ext_function_php()
363 } else if (retval->type == IS_OBJECT) { in xsl_ext_function_php()
367 convert_to_string_ex(&retval); in xsl_ext_function_php()
368 valuePush(ctxt, xmlXPathNewString( Z_STRVAL_P(retval))); in xsl_ext_function_php()
[all …]
/PHP-5.5/ext/mysqli/
H A Dmysqli.c298 *retval = NULL; in mysqli_read_na()
324 zval *retval; in mysqli_read_property() local
344 ret = hnd->read_func(obj, &retval TSRMLS_CC); in mysqli_read_property()
347 Z_SET_REFCOUNT_P(retval, 0); in mysqli_read_property()
349 retval = EG(uninitialized_zval_ptr); in mysqli_read_property()
359 return(retval); in mysqli_read_property()
464 ALLOC_HASHTABLE(retval); in mysqli_object_get_debug_info()
482 return retval; in mysqli_object_get_debug_info()
490 zend_object_value retval; in mysqli_objects_new() local
527 retval.handlers = &mysqli_object_handlers; in mysqli_objects_new()
[all …]
/PHP-5.5/sapi/milter/
H A Dphp_milter.h26 sfsistat retval; member
/PHP-5.5/ext/spl/
H A Dspl_array.c68 zval *retval; member
153 zval_ptr_dtor(&intern->retval); in spl_array_object_free_storage()
169 zend_object_value retval = {0}; in spl_array_object_new_ex() local
178 ALLOC_INIT_ZVAL(intern->retval); in spl_array_object_new_ex()
271 return retval; in spl_array_object_new_ex()
305 zval **retval; in spl_array_get_dimension_ptr_ptr() local
340 return retval; in spl_array_get_dimension_ptr_ptr()
368 return retval; in spl_array_get_dimension_ptr_ptr()
393 MAKE_STD_ZVAL(intern->retval); in spl_array_read_dimension_ex()
395 return intern->retval; in spl_array_read_dimension_ex()
[all …]
/PHP-5.5/ext/intl/common/
H A Dcommon_enum.cpp197 zend_object_value retval; in IntlIterator_object_create() local
212 retval.handle = zend_objects_store_put( in IntlIterator_object_create()
218 retval.handlers = &IntlIterator_handlers; in IntlIterator_object_create()
220 return retval; in IntlIterator_object_create()
/PHP-5.5/ext/zip/
H A Dphp_zip.c847 ALLOC_ZVAL(*retval); in php_zip_property_reader()
865 ZVAL_NULL(*retval); in php_zip_property_reader()
876 zval **retval = NULL; in php_zip_get_property_ptr_ptr() local
910 return retval; in php_zip_get_property_ptr_ptr()
918 zval *retval; in php_zip_read_property() local
958 return retval; in php_zip_read_property()
968 int ret, retval = 0; in php_zip_has_property() local
994 retval = 1; in php_zip_has_property()
1014 return retval; in php_zip_has_property()
1108 zend_object_value retval; in php_zip_object_new() local
[all …]
/PHP-5.5/main/
H A Dmain.c1385 if (retval) { in php_get_configuration_directive_for_zend()
1525 return retval; in php_start_sapi()
1603 retval = FAILURE; in php_request_startup()
1608 return retval; in php_request_startup()
1633 retval = FAILURE; in php_request_startup()
1636 return retval; in php_request_startup()
1659 return retval; in php_request_startup_for_hook()
2343 return retval; in php_module_startup()
2437 int retval = 0; in php_execute_script()
2540 return retval; in php_execute_script()
[all …]

Completed in 358 milliseconds

12345678