Home
last modified time | relevance | path

Searched refs:result (Results 1 – 25 of 737) sorted by last modified time

12345678910>>...30

/PHP-5.3/win32/
H A Dreaddir.c91 int readdir_r(DIR *dp, struct dirent *entry, struct dirent **result) in readdir_r() argument
94 *result = NULL; in readdir_r()
101 *result = NULL; in readdir_r()
114 *result = &dp->dent; in readdir_r()
H A Dsendmail.c158 char *result, *result2; in php_win32_mail_trim_header() local
169 result = php_pcre_replace(PHP_WIN32_MAIL_UNIFY_PATTERN, sizeof(PHP_WIN32_MAIL_UNIFY_PATTERN)-1, in php_win32_mail_trim_header()
176 if (NULL == result) { in php_win32_mail_trim_header()
184 result, result_len, in php_win32_mail_trim_header()
190 efree(result); in php_win32_mail_trim_header()
980 int result; in FormatEmailAddress() local
984 result = snprintf(Buf, MAIL_BUFFER_SIZE, FormatString , tmpAddress1+1); in FormatEmailAddress()
986 return result; in FormatEmailAddress()
H A Dinstall.txt988 virtual()) to make subrequests on the web server and insert the result
1323 This will result in the following directory:
/PHP-5.3/tests/
H A Dquicktester.inc51 $result = $left === $right;
56 $result = FALSE;
59 $result = abs(($left-$right) / $left) < 1e-12;
66 $success = $success && $result;
67 if (!$result) {
/PHP-5.3/tests/lang/operators/
H A Doperator_gt_basic.phpt24 // boolean test will result in both sides being converted to boolean so !0 = true and true is not >…
/PHP-5.3/tests/lang/
H A Dbug20175.phpt12 * Storing the result of a function in a static variable.
36 * Storing a reference to the result of a function in a static variable.
61 * Storing a reference to the result of a function in a static variable.
H A Dbug22592.phpt14 $result = "* *-*";
15 var_dump($result);
16 $result[6] = '*';
18 $result[1] = $i;
20 $result[3] = $s;
22 $result[7] = 0;
24 $a = $result[1] = $result[3] = '-';
26 $b = $result[3] = $result[5] = $s;
28 $c = $result[0] = $result[2] = $result[4] = $i;
30 $d = $result[6] = $result[8] = 5;
[all …]
H A D023.phpt39 Correct result - 8: 8<br>
40 Correct result - 8: 8<br>
41 Correct result - 2: 2<br>
42 Correct result - -2: -2<br>
45 Correct result - 2: 2<br>
46 Correct result - 3: 3<br>
50 Correct result - 8: 8<br>
51 Correct result - 8: 8<br>
52 Correct result - 2: 2<br>
56 Correct result - 2: 2<br>
[all …]
H A D024.phpt382 Correct result - 8: 8
383 Correct result - 8: 8
384 Correct result - 2: 2
388 Correct result - 2: 2
389 Correct result - 3: 3
393 Correct result - 8: 8
394 Correct result - 8: 8
395 Correct result - 2: 2
399 Correct result - 2: 2
400 Correct result - 3: 3
[all …]
/PHP-5.3/tests/func/
H A D003.phpt84 $result = factorial(factorial(3));
85 echo "$result\n";
87 $result=factorial2(return4(),return7());
88 echo "$result\n";
/PHP-5.3/tests/classes/
H A Dthis.phpt25 $result = $this = $other;
26 print $result->prop;
/PHP-5.3/sapi/nsapi/
H A Dnsapi-readme.txt130 to make subrequests on the webserver and insert the result in the webpage.
/PHP-5.3/sapi/isapi/stresstest/
H A Dstresstest.cpp450 TResults result = Results.GetAt(i); in DoTestFiles() local
451 printf("%s\r\nOK: %d FAILED: %d\r\n", TestNames.GetAt(i), result.ok, result.bad); in DoTestFiles()
/PHP-5.3/sapi/fpm/fpm/
H A Dfastcgi.c375 static inline size_t fcgi_get_params_len( int *result, unsigned char *p, unsigned char *end) in fcgi_get_params_len() argument
380 *result = p[0]; in fcgi_get_params_len()
381 if (*result < 128) { in fcgi_get_params_len()
385 *result = ((*result & 0x7f) << 24); in fcgi_get_params_len()
386 *result |= (p[1] << 16); in fcgi_get_params_len()
387 *result |= (p[2] << 8); in fcgi_get_params_len()
388 *result |= p[3]; in fcgi_get_params_len()
392 if (*result < 0) { in fcgi_get_params_len()
H A Dfpm_config.h39 # define timeradd(a, b, result) \ argument
41 (result)->tv_sec = (a)->tv_sec + (b)->tv_sec; \
42 (result)->tv_usec = (a)->tv_usec + (b)->tv_usec; \
43 if ((result)->tv_usec >= 1000000) \
45 ++(result)->tv_sec; \
46 (result)->tv_usec -= 1000000; \
/PHP-5.3/sapi/apache_hooks/
H A Dmod_php5.c750 int result = send_php(r, 0, NULL); in send_parsed_php() local
756 return result; in send_parsed_php()
/PHP-5.3/sapi/apache/
H A Dmod_php5.c697 int result = send_php(r, 0, NULL); in send_parsed_php() local
703 return result; in send_parsed_php()
/PHP-5.3/
H A Drun-tests.php1131 $result = run_test($php, $name, $env);
1133 if (!is_array($name) && $result != 'REDIR') {
1134 $test_results[$index] = $result;
1135 …if ($failed_tests_file && ($result == 'XFAILED' || $result == 'FAILED' || $result == 'WARNED' || $
2536 echo "$result $tested [$tested_file] $extra\n";
2578 "<td>$result</td>" .
2628 $result = sprintf(
2635 $result .= junit_get_suite_xml($sub_suite['name']);
2641 $result .= $JUNIT['files'][$file]['xml'];
2645 $result .= '</testsuite>' . PHP_EOL;
[all …]
H A Dphp.ini-development283 ; outputs chunks that are few hundreds bytes each as a result of
492 ; E_NOTICE - run-time notices (these are warnings which often result
732 ; are not used within a script, having this directive on will result in a
1068 ; If mysqlnd is used: Number of cache slots for the internal result set cache
1207 ; If mysqlnd is used: Number of cache slots for the internal result set cache
1274 ; If mysqlnd is used: Number of cache slots for the internal result set cache
H A Dphp.ini-production283 ; outputs chunks that are few hundreds bytes each as a result of
492 ; E_NOTICE - run-time notices (these are warnings which often result
732 ; are not used within a script, having this directive on will result in a
1068 ; If mysqlnd is used: Number of cache slots for the internal result set cache
1207 ; If mysqlnd is used: Number of cache slots for the internal result set cache
1274 ; If mysqlnd is used: Number of cache slots for the internal result set cache
/PHP-5.3/main/streams/
H A Dcast.c157 void php_stream_mode_sanitize_fdopen_fopencookie(php_stream *stream, char *result) in php_stream_mode_sanitize_fdopen_fopencookie() argument
168 result[res_curs++] = cur_mode[0]; in php_stream_mode_sanitize_fdopen_fopencookie()
172 result[res_curs++] = 'w'; in php_stream_mode_sanitize_fdopen_fopencookie()
189 result[res_curs++] = 'b'; in php_stream_mode_sanitize_fdopen_fopencookie()
192 result[res_curs++] = '+'; in php_stream_mode_sanitize_fdopen_fopencookie()
195 result[res_curs] = '\0'; in php_stream_mode_sanitize_fdopen_fopencookie()
H A Dphp_streams_int.h67 void php_stream_mode_sanitize_fdopen_fopencookie(php_stream *stream, char *result);
H A Dplain_wrapper.c460 off_t result; in php_stdiop_seek() local
462 result = lseek(data->fd, offset, whence); in php_stdiop_seek()
463 if (result == (off_t)-1) in php_stdiop_seek()
466 *newoffset = result; in php_stdiop_seek()
817 struct dirent *result = (struct dirent *)&entry; in php_plain_files_dirstream_read() local
824 if (php_readdir_r(dir, (struct dirent *)entry, &result) == 0 && result) { in php_plain_files_dirstream_read()
825 PHP_STRLCPY(ent->d_name, result->d_name, sizeof(ent->d_name), strlen(result->d_name)); in php_plain_files_dirstream_read()
/PHP-5.3/main/
H A Dphp_ini.c895 PHPAPI int cfg_get_long(const char *varname, long *result) in cfg_get_long() argument
900 *result = 0; in cfg_get_long()
906 *result = Z_LVAL(var); in cfg_get_long()
913 PHPAPI int cfg_get_double(const char *varname, double *result) in cfg_get_double() argument
918 *result = (double) 0; in cfg_get_double()
924 *result = Z_DVAL(var); in cfg_get_double()
931 PHPAPI int cfg_get_string(const char *varname, char **result) in cfg_get_string() argument
936 *result = NULL; in cfg_get_string()
939 *result = Z_STRVAL_P(tmp); in cfg_get_string()
H A Dphp_reentrancy.h58 struct dirent **result);

Completed in 91 milliseconds

12345678910>>...30