Home
last modified time | relevance | path

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

12345678910>>...14

/PHP-5.5/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 Dflock.c82 errno = EINVAL; /* bad call */ in flock()
H A Dglob.c644 errno = 0;
651 if (pglob->gl_errfunc(buf, errno) ||
760 errno = 0;
/PHP-5.5/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.5/tests/lang/
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 Dbug22592.phpt5 function error_hdlr($errno, $errstr) {
H A Dbug25547.phpt6 function handler($errno, $errstr, $errfile, $errline, $context)
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 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);
/PHP-5.5/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.5/
H A Dserver-tests.php249 public $errno = 0; variable in HTTPRequest
/PHP-5.5/sapi/roxen/
H A Droxen.c260 switch(errno) in php_roxen_sapi_ub_write()
/PHP-5.5/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.5/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.5/sapi/isapi/
H A Dphp5isapi.c44 # define GetLastError() errno
/PHP-5.5/sapi/litespeed/
H A Dlsapi_main.c1092 "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.5/sapi/milter/
H A Dphp_milter.c1155 exit(errno); in main()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_shm.c28 zlog(ZLOG_SYSERROR, "unable to allocate %zu bytes in shared memory: %s", size, strerror(errno)); in fpm_shm_alloc()
H A Dfpm_signals.c144 int saved_errno = errno; in sig_soft_quit()
152 errno = saved_errno; in sig_soft_quit()
175 saved_errno = errno; in sig_handler()
178 errno = saved_errno; in sig_handler()
H A Dfpm_stdio.c115 if (res < 0 && (errno == EAGAIN || errno == EWOULDBLOCK)) { in fpm_stdio_child_said()

Completed in 137 milliseconds

12345678910>>...14