Home
last modified time | relevance | path

Searched refs:ret (Results 276 – 300 of 469) sorted by relevance

1...<<111213141516171819

/php-src/ext/phar/
H A Ddirstream.c312 php_stream *ret; in phar_wrapper_open_dir() local
319 ret = php_stream_opendir(entry->tmp, options, context); in phar_wrapper_open_dir()
321 return ret; in phar_wrapper_open_dir()
323 ret = phar_make_dirstream(internal_file, internal_file_len, &phar->manifest); in phar_wrapper_open_dir()
325 return ret; in phar_wrapper_open_dir()
333 ret = phar_make_dirstream(internal_file, internal_file_len, &phar->manifest); in phar_wrapper_open_dir()
335 return ret; in phar_wrapper_open_dir()
/php-src/ext/soap/tests/
H A Dtypemap008.phpt39 $ret = $client->dotest(new SoapVar($book, null, "book", "http://schemas.nothing.com"));
40 var_dump($ret);
/php-src/ext/bcmath/tests/number/operators/
H A Ddiv_object.phpt22 $ret = $num1 / $num2;
23 var_dump($ret);
H A Dpow_object.phpt30 $ret = $num1 ** $num2;
31 var_dump($ret);
/php-src/ext/hash/
H A Dhash_sha3.c44 uint64_t ret = 0; in load64() local
46 ret <<= 8; in load64()
47 ret |= x[i]; in load64()
49 return ret; in load64()
/php-src/ext/xsl/
H A Dxsltprocessor.c490 int ret; in PHP_METHOD() local
505 ret = -1; in PHP_METHOD()
507 ret = xsltSaveResultToFilename(uri, newdocp, sheetp, 0); in PHP_METHOD()
511 RETVAL_LONG(ret); in PHP_METHOD()
521 int ret; in PHP_METHOD() local
536 ret = -1; in PHP_METHOD()
538 ret = xsltSaveResultToString(&doc_txt_ptr, &doc_txt_len, newdocp, sheetp); in PHP_METHOD()
546 if (ret < 0) { in PHP_METHOD()
/php-src/sapi/fpm/fpm/
H A Dfpm_main.c241 ssize_t ret; in sapi_cgibin_single_write() local
247 if (ret <= 0) { in sapi_cgibin_single_write()
250 return (size_t)ret; in sapi_cgibin_single_write()
256 if (ret <= 0) { in sapi_cgibin_single_write()
259 return (size_t)ret; in sapi_cgibin_single_write()
270 size_t ret; in sapi_cgibin_ub_write() local
274 if (!ret) { in sapi_cgibin_ub_write()
278 ptr += ret; in sapi_cgibin_ub_write()
279 remaining -= ret; in sapi_cgibin_ub_write()
1821 if (ret == FPM_INIT_ERROR) { in main()
[all …]
H A Dfpm_unix.c610 int ret; in fpm_unix_init_main() local
644 ret = select(fpm_globals.send_config_pipe[0] + 1, &rfds, NULL, NULL, &tv); in fpm_unix_init_main()
645 if (ret == -1) { in fpm_unix_init_main()
649 if (ret) { /* data available */ in fpm_unix_init_main()
651 ret = read(fpm_globals.send_config_pipe[0], &readval, sizeof(readval)); in fpm_unix_init_main()
652 if (ret == -1) { in fpm_unix_init_main()
657 if (ret == 0) { in fpm_unix_init_main()
/php-src/Zend/asm/
H A Dmake_i386_sysv_macho_gas.S74 ret /* return pointer to context-data */
H A Dmake_arm64_aapcs_macho_gas.S75 ret lr ; return pointer to context-data (x0)
H A Dmake_arm64_aapcs_elf_gas.S75 ret x30 // return pointer to context-data (x0)
H A Dmake_riscv64_sysv_elf_gas.S81 ret // return pointer to context-data (a0)
H A Dmake_x86_64_ms_pe_gas.S149 ret /* return pointer to context-data */
/php-src/sapi/cli/tests/
H A Dsapi_windows_set_ctrl_handler.phpt46 $ret = sapi_windows_generate_ctrl_event($evt, $child_pid);
48 …echo ($ret ? "Successfully" : "Unsuccessfuly"), " sent ", get_evt_name($evt), " to child $child_pi…
/php-src/sapi/fpm/
H A Dconfig.m430 kern_return_t ret; clock_serv_t aClock; mach_timespec_t aTime;
31 ret = host_get_clock_service(mach_host_self(), REALTIME_CLOCK, &aClock);
33 if (ret != KERN_SUCCESS) {
37 ret = clock_get_time(aClock, &aTime);
38 if (ret != KERN_SUCCESS) {
89 int ret = 0;
106 ret = 3;
114 ret = 4;
121 return ret ? ret : (v1 != v2);
/php-src/Zend/
H A Dzend_execute.c257 return ret; in _get_zval_ptr_tmp()
264 return ret; in _get_zval_ptr_var()
272 return ret; in _get_zval_ptr_var_deref()
328 return ret; in _get_zval_ptr_cv()
344 return ret; in _get_zval_ptr_cv_deref()
354 return ret; in _get_zval_ptr_cv_BP_VAR_R()
365 return ret; in _get_zval_ptr_cv_deref_BP_VAR_R()
372 return ret; in _get_zval_ptr_cv_BP_VAR_IS()
384 return ret; in _get_zval_ptr_cv_BP_VAR_RW()
394 return ret; in _get_zval_ptr_cv_BP_VAR_W()
[all …]
H A Dzend_attributes.c246 ZEND_API zend_result zend_get_attribute_value(zval *ret, zend_attribute *attr, uint32_t i, zend_cla… in zend_get_attribute_value() argument
252 ZVAL_COPY_OR_DUP(ret, &attr->args[i].value); in zend_get_attribute_value()
254 if (Z_TYPE_P(ret) == IS_CONSTANT_AST) { in zend_get_attribute_value()
255 if (SUCCESS != zval_update_constant_ex(ret, scope)) { in zend_get_attribute_value()
256 zval_ptr_dtor(ret); in zend_get_attribute_value()
/php-src/ext/spl/tests/
H A Diterator_001.phpt25 $ret = $this->i < count($this->a);
26 echo __METHOD__ . '(' . ($ret ? 'true' : 'false') . ")\n";
27 return $ret;
/php-src/ext/standard/tests/file/
H A Dinclude_userstream_003.phpt33 $ret = substr($this->data, $this->pos, $count);
34 $this->pos += strlen($ret);
35 return $ret;
/php-src/main/streams/
H A Dglob_wrapper.c219 int ret, i; in php_glob_stream_opener() local
231 if (0 != (ret = glob(path, pglob->flags & GLOB_FLAGMASK, NULL, &pglob->glob))) { in php_glob_stream_opener()
233 if (GLOB_NOMATCH != ret) in php_glob_stream_opener()
/php-src/ext/com_dotnet/
H A Dcom_dotnet.c228 int ret = FAILURE; in PHP_METHOD() local
322 ret = SUCCESS; in PHP_METHOD()
332 ret = SUCCESS; in PHP_METHOD()
344 if (ret == FAILURE) { in PHP_METHOD()
/php-src/ext/opcache/jit/
H A Dzend_jit_internal.h286 #define ZEND_JIT_TRACE_STOP_OK(ret) \ argument
287 (ret < ZEND_JIT_TRACE_STOP_COMPILED)
289 #define ZEND_JIT_TRACE_STOP_DONE(ret) \ argument
290 (ret < ZEND_JIT_TRACE_STOP_ERROR)
292 #define ZEND_JIT_TRACE_STOP_REPEAT(ret) \ argument
293 (ret == ZEND_JIT_TRACE_STOP_INNER_LOOP)
295 #define ZEND_JIT_TRACE_STOP_MAY_RECOVER(ret) \ argument
296 (ret <= ZEND_JIT_TRACE_STOP_COMPILER_ERROR)
/php-src/ext/dom/parentnode/
H A Dcss_selectors.c184 const xmlNode *ret = NULL; in dom_query_closest() local
200 ret = current; in dom_query_closest()
209 return ret; in dom_query_closest()
/php-src/ext/intl/timezone/
H A Dtimezone_class.h67 …_to_datetimezone(const TimeZone *timeZone, intl_error *outside_error, const char *func, zval *ret);
/php-src/Zend/tests/
H A Ddynamic_call_to_ref_returning_function.phpt2 When performing a dynamic call to a ret-by-ref function, the reference should be unwrapped

Completed in 65 milliseconds

1...<<111213141516171819