Home
last modified time | relevance | path

Searched refs:res (Results 1 – 25 of 570) sorted by last modified time

12345678910>>...23

/PHP-5.5/win32/
H A Dsendmail.c385 int res; in SendText() local
422 return (res); in SendText()
428 return (res); in SendText()
597 return (res); in SendText()
604 return (res); in SendText()
617 return (res); in SendText()
648 return(res); in SendText()
656 return (res); in SendText()
659 return (res); in SendText()
690 int res; in PostHeader() local
[all …]
/PHP-5.5/win32/build/
H A Dprojectgen.js98 res = new Enumerator(resdir.Files);
101 for (; !res.atEnd(); res.moveNext()) {
102 fname = FSO.GetFileName(res.item());
609 res = generate_resource_filelist(ext, ext_dir);
612 tmpl = tmpl.replace(/RESOURCEFILES/, res);
H A DMakefile70 PHPDLL_RES=$(BUILD_DIR)\$(PHPDLL).res
119 …-@del /F /Q $(BUILD_DIR)\*.res $(BUILD_DIR)\*.manifest $(BUILD_DIR)\*.lib $(BUILD_DIR)\*.ilk $(BUI…
131 …-@del /f /q $(BUILD_DIR)\*.res $(BUILD_DIR)\*.lib $(BUILD_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DI…
H A DMakefile.phpize22 …-@del /f /q $(BUILD_DIR)\*.res $(BUILD_DIR)\*.manifest $(BUILD_DIR)\*.lib $(BUILD_DIR)\*.ilk $(BUI…
27 …-@del /F /Q $(BUILD_DIR)\*.res $(BUILD_DIR)\*.lib $(BUILD_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DI…
/PHP-5.5/sapi/roxen/
H A Droxen.c380 int res = 0; in php_roxen_sapi_send_headers() local
381 THREAD_SAFE_RUN(res = php_roxen_low_send_headers(sapi_headers TSRMLS_CC), "send headers"); in php_roxen_sapi_send_headers()
382 return res; in php_roxen_sapi_send_headers()
576 int res, len; in php_roxen_module_main() local
589 res = php_request_startup(TSRMLS_C); in php_roxen_module_main()
591 if(res == FAILURE) { in php_roxen_module_main()
/PHP-5.5/sapi/litespeed/
H A Dlsapilib.c2294 struct addrinfo *res, hints; in LSAPI_ParseSockAddr() local
2369 if ( getaddrinfo(p, NULL, &hints, &res) ) in LSAPI_ParseSockAddr()
2374 memcpy(pAddr, res->ai_addr, res->ai_addrlen); in LSAPI_ParseSockAddr()
2375 freeaddrinfo(res); in LSAPI_ParseSockAddr()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_process_ctl.c155 int res = kill(child->pid, signo); in fpm_pctl_kill_all() local
161 if (res == 0) { in fpm_pctl_kill_all()
H A Dfpm_stdio.c97 int res; in fpm_stdio_child_said() local
112 res = read(fd, buf + in_buf, max_buf_size - 1 - in_buf); in fpm_stdio_child_said()
113 if (res <= 0) { /* no data */ in fpm_stdio_child_said()
115 if (res < 0 && (errno == EAGAIN || errno == EWOULDBLOCK)) { in fpm_stdio_child_said()
119 if (res < 0) { /* error */ in fpm_stdio_child_said()
135 in_buf += res; in fpm_stdio_child_said()
H A Dfpm_atomic.h45 unsigned char res; in atomic_cmp_set() local
48 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); in atomic_cmp_set()
50 return res; in atomic_cmp_set()
71 unsigned char res; in atomic_cmp_set() local
74 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); in atomic_cmp_set()
76 return res; in atomic_cmp_set()
H A Dfpm_events.c59 int res, ret; in fpm_got_signal() local
64 res = read(fd, &c, 1); in fpm_got_signal()
65 } while (res == -1 && errno == EINTR); in fpm_got_signal()
67 if (res <= 0) { in fpm_got_signal()
68 if (res < 0 && errno != EAGAIN && errno != EWOULDBLOCK) { in fpm_got_signal()
/PHP-5.5/sapi/apache_hooks/
H A Dphp_apache.c718 char *res; in PHP_FUNCTION() local
730 res = (char *)ap_get_remote_host(r->connection, r->per_dir_config, (int)type); in PHP_FUNCTION()
732 if (res) { in PHP_FUNCTION()
733 RETURN_STRING(res, 1); in PHP_FUNCTION()
/PHP-5.5/sapi/caudium/
H A Dcaudium.c388 int res = 0; in php_caudium_sapi_send_headers() local
389 THREAD_SAFE_RUN(res = php_caudium_low_send_headers(sapi_headers TSRMLS_CC), "send headers"); in php_caudium_sapi_send_headers()
390 return res; in php_caudium_sapi_send_headers()
566 int res; in php_caudium_module_main() local
648 res = php_request_startup(TSRMLS_C); in php_caudium_module_main()
650 if(res == FAILURE) { in php_caudium_module_main()
/PHP-5.5/
H A Drun-tests.php1673 if (empty($env['CONTENT_TYPE']) && preg_match('/^Content-Type:(.*)/i', $line, $res)) {
1674 $env['CONTENT_TYPE'] = trim(str_replace("\r", '', $res[1]));
1707 if (empty($env['CONTENT_TYPE']) && preg_match('/^Content-Type:(.*)/i', $line, $res)) {
1708 $env['CONTENT_TYPE'] = trim(str_replace("\r", '', $res[1]));
/PHP-5.5/main/
H A Dphp_variables.c281 char *res = NULL, *var, *val, *separator = NULL; in SAPI_TREAT_DATA_FUNC() local
329 res = (char *) estrdup(c_var); in SAPI_TREAT_DATA_FUNC()
337 res = (char *) estrdup(c_var); in SAPI_TREAT_DATA_FUNC()
343 res = str; in SAPI_TREAT_DATA_FUNC()
347 if (!res) { in SAPI_TREAT_DATA_FUNC()
361 var = php_strtok_r(res, separator, &strtok_buf); in SAPI_TREAT_DATA_FUNC()
414 efree(res); in SAPI_TREAT_DATA_FUNC()
H A Drfc1867.c482 char *res; in php_ap_getword() local
500 res = estrdup(*line); in php_ap_getword()
502 return res; in php_ap_getword()
505 res = estrndup(*line, pos - *line); in php_ap_getword()
512 return res; in php_ap_getword()
H A Dnetwork.c177 struct addrinfo hints, *res, *sai; in php_network_getaddresses() local
213 if ((n = getaddrinfo(host, NULL, &hints, &res))) { in php_network_getaddresses()
221 } else if (res == NULL) { in php_network_getaddresses()
231 sai = res; in php_network_getaddresses()
236 sai = res; in php_network_getaddresses()
245 freeaddrinfo(res); in php_network_getaddresses()
1065 char *res; local
1069 reslen = spprintf(&res, 0, "tcp://%s:%d", host, port);
1071 stream = php_stream_xport_create(res, reslen, REPORT_ERRORS,
1074 efree(res);
/PHP-5.5/ext/zlib/tests/
H A Dgzopen_variation3.phpt114 $res = gzopen($filename, $mode, $value);
115 var_dump($res);
116 if ($res === true) {
117 gzclose($res);
/PHP-5.5/ext/zip/tests/
H A Dbug64342_0.phpt11 $res = $zip->open(dirname(__FILE__) . '/bug64342.zip', ZipArchive::CREATE);
12 if ($res === TRUE) {
15 $res = $zip->addFile($f);
16 if (true == $res) {
21 $res = $zip->close();
22 if (true == $res) {
H A Dpecl12414.phpt13 $res =$za->open($zipname);
14 if ($res === TRUE) {
/PHP-5.5/ext/xsl/tests/
H A Dxslt002.phpt11 $res = $xp->query("/xsl:stylesheet/xsl:output/@method");
12 if ($res->length != 1) {
16 $res->item(0)->value = "html";
H A Dxslt004.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@encoding");
11 if ($res->length != 1) {
15 $res->item(0)->value = "utf-8";
H A Dxslt005.phpt10 $res = $xp->query("/xsl:stylesheet/xsl:output/@indent");
11 if ($res->length != 1) {
15 $res->item(0)->value = "yes";
/PHP-5.5/ext/xmlwriter/tests/
H A D003.phpt15 $res = xmlwriter_start_attribute($xw, 'attr1');
21 $res = xmlwriter_start_element($xw, 'tag2');
22 if ($res < 1) {
H A DOO_003.phpt14 $res = $xw->startAttribute('attr1');
18 $res = $xw->startAttribute('attr2');
23 $res = $xw->startElement('tag2');
24 if ($res < 1) {
/PHP-5.5/ext/xmlwriter/examples/
H A Dxmlwriter_file.php6 $res = xmlwriter_set_indent_string($xw, ' '); variable

Completed in 82 milliseconds

12345678910>>...23