Home
last modified time | relevance | path

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

12345678910>>...34

/PHP-5.5/win32/
H A Dreaddir.c92 int readdir_r(DIR *dp, struct dirent *entry, struct dirent **result) in readdir_r() argument
95 *result = NULL; in readdir_r()
102 *result = NULL; in readdir_r()
115 *result = &dp->dent; in readdir_r()
H A Dsendmail.c159 char *result, *result2; in php_win32_mail_trim_header() local
170 result = php_pcre_replace(PHP_WIN32_MAIL_UNIFY_PATTERN, sizeof(PHP_WIN32_MAIL_UNIFY_PATTERN)-1, in php_win32_mail_trim_header()
177 if (NULL == result) { in php_win32_mail_trim_header()
185 result, result_len, in php_win32_mail_trim_header()
191 efree(result); in php_win32_mail_trim_header()
981 int result; in FormatEmailAddress() local
985 result = snprintf(Buf, MAIL_BUFFER_SIZE, FormatString , tmpAddress1+1); in FormatEmailAddress()
987 return result; in FormatEmailAddress()
H A Dinstall.txt847 virtual()) to make subrequests on the web server and insert the result
1182 This will result in the following directory:
/PHP-5.5/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.5/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.5/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.5/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.5/tests/classes/
H A Dthis.phpt25 $result = $this = $other;
26 print $result->prop;
/PHP-5.5/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.5/sapi/nsapi/
H A Dnsapi-readme.txt130 to make subrequests on the webserver and insert the result in the webpage.
/PHP-5.5/sapi/fpm/fpm/
H A Dfastcgi.c382 static inline size_t fcgi_get_params_len( int *result, unsigned char *p, unsigned char *end) in fcgi_get_params_len() argument
387 *result = p[0]; in fcgi_get_params_len()
388 if (*result < 128) { in fcgi_get_params_len()
392 *result = ((*result & 0x7f) << 24); in fcgi_get_params_len()
393 *result |= (p[1] << 16); in fcgi_get_params_len()
394 *result |= (p[2] << 8); in fcgi_get_params_len()
395 *result |= p[3]; in fcgi_get_params_len()
399 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.5/sapi/cli/
H A Dphp_cli_server.c400 php_cli_server_http_response_status_code_pair needle, *result = NULL; in get_status_string() local
405result = bsearch(&needle, status_map, sizeof(status_map) / sizeof(needle), sizeof(needle), status_… in get_status_string()
407 if (result) { in get_status_string()
408 return result->str; in get_status_string()
/PHP-5.5/sapi/apache_hooks/
H A Dmod_php5.c745 int result = send_php(r, 0, NULL); in send_parsed_php() local
751 return result; in send_parsed_php()
/PHP-5.5/sapi/apache/
H A Dmod_php5.c693 int result = send_php(r, 0, NULL); in send_parsed_php() local
699 return result; in send_parsed_php()
/PHP-5.5/
H A Drun-tests.php1152 $result = run_test($php, $name, $env);
1154 if (!is_array($name) && $result != 'REDIR') {
1155 $test_results[$index] = $result;
1156 …if ($failed_tests_file && ($result == 'XFAILED' || $result == 'FAILED' || $result == 'WARNED' || $
2568 echo "$result $tested [$tested_file] $extra\n";
2610 "<td>$result</td>" .
2660 $result = sprintf(
2667 $result .= junit_get_suite_xml($sub_suite['name']);
2673 $result .= $JUNIT['files'][$file]['xml'];
2677 $result .= '</testsuite>' . PHP_EOL;
[all …]
H A Dphp.ini-development194 ; should be disabled, as enabling it may result in issues when generating XML
255 ; outputs chunks that are few hundreds bytes each as a result of
420 ; E_NOTICE - run-time notices (these are warnings which often result
641 ; variables are not used within a script, having this directive on will result
970 ; If mysqlnd is used: Number of cache slots for the internal result set cache
1104 ; If mysqlnd is used: Number of cache slots for the internal result set cache
1171 ; If mysqlnd is used: Number of cache slots for the internal result set cache
H A Dphp.ini-production194 ; should be disabled, as enabling it may result in issues when generating XML
255 ; outputs chunks that are few hundreds bytes each as a result of
420 ; E_NOTICE - run-time notices (these are warnings which often result
641 ; variables are not used within a script, having this directive on will result
970 ; If mysqlnd is used: Number of cache slots for the internal result set cache
1104 ; If mysqlnd is used: Number of cache slots for the internal result set cache
1171 ; If mysqlnd is used: Number of cache slots for the internal result set cache
/PHP-5.5/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.c496 off_t result; in php_stdiop_seek() local
498 result = lseek(data->fd, offset, whence); in php_stdiop_seek()
499 if (result == (off_t)-1) in php_stdiop_seek()
502 *newoffset = result; in php_stdiop_seek()
850 struct dirent *result = (struct dirent *)&entry; in php_plain_files_dirstream_read() local
857 if (php_readdir_r(dir, (struct dirent *)entry, &result) == 0 && result) { in php_plain_files_dirstream_read()
858 PHP_STRLCPY(ent->d_name, result->d_name, sizeof(ent->d_name), strlen(result->d_name)); in php_plain_files_dirstream_read()
/PHP-5.5/main/
H A Dphp_ini.c894 PHPAPI int cfg_get_long(const char *varname, long *result) argument
899 *result = 0;
905 *result = Z_LVAL(var);
912 PHPAPI int cfg_get_double(const char *varname, double *result) argument
917 *result = (double) 0;
923 *result = Z_DVAL(var);
930 PHPAPI int cfg_get_string(const char *varname, char **result) argument
935 *result = NULL;
938 *result = Z_STRVAL_P(tmp);

Completed in 115 milliseconds

12345678910>>...34