Home
last modified time | relevance | path

Searched refs:errno (Results 1 – 25 of 346) sorted by last modified time

12345678910>>...14

/PHP-5.4/win32/
H A Dstrtoi64.c45 errno = EINVAL; in _strtoi64()
112 errno = ERANGE; in _strtoi64()
114 errno = EINVAL; in _strtoi64()
H A Dtime.c114 errno = EINVAL; in nanosleep()
175 errno = EINVAL;
191 errno = EINVAL;
H A Dglob.c635 errno = 0;
642 if (pglob->gl_errfunc(buf, errno) ||
751 errno = 0;
H A Dflock.c82 errno = EINVAL; /* bad call */ in flock()
/PHP-5.4/tests/security/
H A Dopen_basedir_scandir.phpt34 Warning: scandir(): (errno 1): %s in %s on line %d
41 Warning: scandir(): (errno 1): %s in %s on line %d
48 Warning: scandir(): (errno 1): %s in %s on line %d
55 Warning: scandir(): (errno 1): %s in %s on line %d
62 Warning: scandir(): (errno 1): %s in %s on line %d
69 Warning: scandir(): (errno 1): %s in %s on line %d
76 Warning: scandir(): (errno 1): %s in %s on line %d
83 Warning: scandir(): (errno 1): %s in %s on line %d
/PHP-5.4/tests/lang/
H A Derror_2_exception_001.phpt10 $this->errno = $_errno;
15 return $this->errno;
23 function ErrorsToExceptions($errno, $errmsg) {
24 throw new MyException($errno, $errmsg);
H A Dbug21094.phpt6 function hdlr($errno, $errstr, $errfile, $errline) {
7 …printf("[%d] errstr: %s, errfile: %s, errline: %d\n", $errno, $errstr, $errfile, $errline, $errstr…
H A D038.phpt8 function __construct($errstr, $errno=0, $errfile='', $errline='')
10 parent::__construct($errstr, $errno);
16 function Error2Exception($errno, $errstr, $errfile, $errline)
18 throw new MyException($errstr, $errno);//, $errfile, $errline);
H A D039.phpt12 function __construct($errstr, $errno, $errfile, $errline)
14 parent::__construct($errstr, $errno);
20 function Error2Exception($errno, $errstr, $errfile, $errline)
22 throw new MyException($errstr, $errno, $errfile, $errline);
H A Dbug22592.phpt5 function error_hdlr($errno, $errstr) {
H A Dbug25547.phpt6 function handler($errno, $errstr, $errfile, $errline, $context)
/PHP-5.4/tests/classes/
H A Dtostring_001.phpt6 function my_error_handler($errno, $errstr, $errfile, $errline) {
H A Dtype_hinting_004.phpt6 function myErrorHandler($errno, $errstr, $errfile, $errline) {
7 echo "$errno: $errstr - $errfile($errline)\n";
/PHP-5.4/
H A Dserver-tests.php249 public $errno = 0; variable in HTTPRequest
/PHP-5.4/sapi/tux/
H A Dphp_tux.c67 if ((m = writev(TG(req)->sock, vec, n)) == -1 && errno == EPIPE) in sapi_tux_ub_write()
82 if (n == -1 && errno == EPIPE) in sapi_tux_ub_write()
84 if (n == -1 && errno == EAGAIN) in sapi_tux_ub_write()
/PHP-5.4/sapi/roxen/
H A Droxen.c260 switch(errno) in php_roxen_sapi_ub_write()
/PHP-5.4/sapi/thttpd/
H A Dthttpd.c53 #define PHP_SYS_CALL(x) do { x } while (n == -1 && errno == EINTR)
81 if (errno == EAGAIN) { in sapi_thttpd_ub_write()
116 if (errno == EAGAIN) { in do_writev()
H A Dthttpd_patch1876 - if ( sz == 0 || ( sz < 0 && ( errno != EWOULDBLOCK ) ) )
1887 + if (errno != EWOULDBLOCK) {
2037 if ( errno != EPIPE && errno != EINVAL && errno != ECONNRESET )
2092 + if (errno == EAGAIN)
2116 + if (errno == EAGAIN)
/PHP-5.4/sapi/isapi/
H A Dphp5isapi.c44 # define GetLastError() errno
/PHP-5.4/sapi/litespeed/
H A Dlsapi_main.c1044 "Failed to bind socket [%s]: %s\n", php_bind, strerror( errno ) ); in main()
H A Dlsapilib.c350 if ( errno == EAGAIN ) in lsapi_writev()
357 else if ( errno != EINTR ) in lsapi_writev()
462 ( errno == ENOTCONN )) in isPipe()
1294 if (( errno == EINTR )||( errno == EAGAIN)) in LSAPI_Accept_r()
1665 if (( !ret )||( errno == EAGAIN )) in gsendfile()
2282 ret = errno; in LSAPI_CreateListenSock2()
2284 errno = ret; in LSAPI_CreateListenSock2()
2799 if ( errno == EINTR ) in lsapi_prefork_server_accept()
2876 if (( errno == EINTR )||( errno == EAGAIN)) in lsapi_prefork_server_accept()
2958 if ( errno == EINTR ) in LSAPI_Prefork_Accept_r()
[all …]
/PHP-5.4/sapi/milter/
H A Dphp_milter.c1155 exit(errno); in main()
/PHP-5.4/sapi/fpm/fpm/
H A Dfpm_events.c65 } while (res == -1 && errno == EINTR); in fpm_got_signal()
68 if (res < 0 && errno != EAGAIN && errno != EWOULDBLOCK) { in fpm_got_signal()
H A Dfpm_main.c514 request_body_filename, strerror(errno), errno); in sapi_cgi_read_post()
1919 zlog(ZLOG_ERROR, "Unable to open primary script: %s (%s)", primary_script, strerror(errno));
1920 if (errno == EACCES) {
H A Dfpm_sockets.c55 …error(ret), ret == EAI_SYSTEM ? ", system error: " : "", ret == EAI_SYSTEM ? strerror(errno) : ""); in fpm_sockets_resolve_af_inet()

Completed in 59 milliseconds

12345678910>>...14