Home
last modified time | relevance | path

Searched refs:fd (Results 1 – 25 of 209) sorted by relevance

123456789

/PHP-7.2/ext/standard/tests/file/
H A Dphp_fd_wrapper_03.phpt2 php://fd wrapper: bad syntax
5 fopen("php://fd", "w");
6 fopen("php://fd/", "w");
7 fopen("php://fd/-2", "w");
8 fopen("php://fd/1/", "w");
14 Warning: fopen(php://fd): failed to open stream: operation failed in %s on line 2
16 Warning: fopen(php://fd/): failed to open stream: php://fd/ stream must be specified in the form ph…
18 Warning: fopen(php://fd/-2): failed to open stream: The file descriptors must be non-negative numbe…
20 Warning: fopen(php://fd/1/): failed to open stream: php://fd/ stream must be specified in the form …
H A Duserstreams_003.phpt30 function test($name, $fd, $return_value, $func, $args, $expected_option, $expected_value) {
32 $data = stream_get_meta_data($fd);
42 $fd = fopen("test://foo","r");
45 test("stream_set_blocking - 1", $fd, true, "stream_set_blocking", array($fd,0), STREAM_OPTION_BLOCK…
46 test("stream_set_blocking - 2", $fd, false, "stream_set_blocking", array($fd,1), STREAM_OPTION_BLOC…
47 test("stream_set_blocking - 3", $fd, "foo", "stream_set_blocking", array($fd,0), STREAM_OPTION_BLOC…
50 test("stream_set_write_buffer - 1", $fd, true, "stream_set_write_buffer", array($fd,0), STREAM_OPTI…
51 test("stream_set_write_buffer - 2", $fd, true, "stream_set_write_buffer", array($fd,4096), STREAM_O…
52 test("stream_set_write_buffer - 3", $fd, false, "stream_set_write_buffer", array($fd,8192), STREAM_…
54 test("stream_set_timeout - 1", $fd, true, "stream_set_timeout", array($fd,10,11), STREAM_OPTION_REA…
[all …]
H A Dbug44607.phpt11 $fd = fopen($tempnam, 'r');
12 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
13 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
14 fseek($fd, 1, SEEK_SET);
15 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
16 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
17 fclose($fd);
/PHP-7.2/ext/standard/tests/streams/
H A Dbug64166_3.phpt7 $fd = fopen('php://temp', 'w+');
8 $res = stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_WRITE, array(
12 fwrite($fd, $data);
13 rewind($fd);
15 var_dump(stream_get_contents($fd, -1, 0));
19 rewind($fd);
20 stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_WRITE, array(
24 fwrite($fd, $data);
25 rewind($fd);
26 var_dump(stream_get_contents($fd, -1, 0));
[all …]
H A Dbug64166.phpt7 $fd = fopen('php://temp', 'w+');
8 fwrite($fd, $data);
9 rewind($fd);
11 $res = stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_READ, array(
15 var_dump(stream_get_contents($fd, -1, 0));
19 rewind($fd);
20 stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_READ, array(
24 var_dump(stream_get_contents($fd, -1, 0));
26 fclose($fd);
H A Dbug64166_2.phpt7 $fd = fopen('php://temp', 'w+');
8 fwrite($fd, $data);
9 rewind($fd);
11 $res = stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_READ, array(
16 while(($c = fread($fd, 1))!= "") $str .= $c;
21 rewind($fd);
22 stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_READ, array(
27 while(($c = fread($fd, 1))!= "") $str .= $c;
30 fclose($fd);
H A Dbug65483.phpt8 $fd = fopen('php://temp', 'w+');
9 fwrite($fd, $data);
10 rewind($fd);
12 $res = stream_filter_append($fd, 'convert.quoted-printable-encode', STREAM_FILTER_READ);
13 var_dump(stream_get_contents($fd, -1, 0));
15 fclose($fd);
H A Dbug63240.phpt5 $fd = fopen('php://temp', 'r+');
8 fwrite($fd, $str);
9 rewind($fd);
10 $line = stream_get_line($fd, 9000, $delimiter);
12 $line = stream_get_line($fd, 9000, $delimiter);
H A Dbug74090.phpt11 $fd = stream_socket_client("udp://8.8.8.8:53", $errno, $errstr, 0, STREAM_CLIENT_CONNECT | STREAM_C…
12 stream_set_blocking($fd, 0);
13 stream_socket_sendto($fd,$data);
15 $ret = stream_get_contents($fd,65565);
17 stream_socket_shutdown($fd,STREAM_SHUT_RDWR);
H A Dbug44818.phpt7 $fd = fopen($url, $mode);
8 var_dump($fd, fwrite($fd, "foo"));
9 var_dump(fseek($fd, 0, SEEK_SET), fread($fd, 3));
10 fclose($fd);
H A Dset_file_buffer.phpt30 $fd = fopen("test://foo","r");
31 var_dump(set_file_buffer($fd, 50));
32 var_dump(stream_set_chunk_size($fd, 42));
33 var_dump(fwrite($fd, str_repeat('0', 70)));
37 fclose($fd);
38 unset($fd);
/PHP-7.2/sapi/fpm/fpm/events/
H A Dpoll.c90 pollfds[i].fd = -1; in fpm_event_poll_init()
161 … && q->ev->index >= 0 && q->ev->index < npollfds && q->ev->fd == active_pollfds[q->ev->index].fd) { in fpm_event_poll_wait()
191 if (pollfds[next_free_slot].fd == -1) { in fpm_event_poll_add()
193 pollfds[next_free_slot].fd = ev->fd; in fpm_event_poll_add()
206 if (pollfds[i].fd != -1) { in fpm_event_poll_add()
212 pollfds[i].fd = ev->fd; in fpm_event_poll_add()
223 zlog(ZLOG_ERROR, "poll: not enought space to add event (fd=%d)", ev->fd); in fpm_event_poll_add()
236 if (ev->index >= 0 && ev->index < npollfds && pollfds[ev->index].fd == ev->fd) { in fpm_event_poll_remove()
241 pollfds[ev->index].fd = -1; in fpm_event_poll_remove()
253 if (pollfds[i].fd != ev->fd) { in fpm_event_poll_remove()
[all …]
H A Dselect.c120 if (FD_ISSET(q->ev->fd, &current_fds)) { in fpm_event_select_wait()
145 if (ev->fd >= FD_SETSIZE) { in fpm_event_select_add()
151 if (!FD_ISSET(ev->fd, &fds)) { in fpm_event_select_add()
152 FD_SET(ev->fd, &fds); in fpm_event_select_add()
153 ev->index = ev->fd; in fpm_event_select_add()
166 if (FD_ISSET(ev->fd, &fds)) { in fpm_event_select_remove()
167 FD_CLR(ev->fd, &fds); in fpm_event_select_remove()
H A Depoll.c172 e.data.fd = ev->fd; in fpm_event_epoll_add()
180 if (epoll_ctl(epollfd, EPOLL_CTL_ADD, ev->fd, &e) == -1) { in fpm_event_epoll_add()
181 zlog(ZLOG_ERROR, "epoll: unable to add fd %d", ev->fd); in fpm_event_epoll_add()
186 ev->index = ev->fd; in fpm_event_epoll_add()
200 e.data.fd = ev->fd; in fpm_event_epoll_remove()
208 if (epoll_ctl(epollfd, EPOLL_CTL_DEL, ev->fd, &e) == -1) { in fpm_event_epoll_remove()
209 zlog(ZLOG_ERROR, "epoll: unable to remove fd %d", ev->fd); in fpm_event_epoll_remove()
/PHP-7.2/ext/gd/libgd/
H A Dgd_gif_in.c117 gdIOCtx *fd = gdNewFileCtx(fdFile); in gdImageCreateFromGif() local
120 im = gdImageCreateFromGifCtx(fd); in gdImageCreateFromGif()
122 fd->gd_free(fd); in gdImageCreateFromGif()
155 if (! ReadOK(fd,buf,6)) { in gdImageCreateFromGifCtx()
170 if (! ReadOK(fd,buf,7)) { in gdImageCreateFromGifCtx()
194 if (! ReadOK(fd,&c,1)) { in gdImageCreateFromGifCtx()
202 if (! ReadOK(fd,&c,1)) { in gdImageCreateFromGifCtx()
215 if (! ReadOK(fd,buf,9)) { in gdImageCreateFromGifCtx()
250 ReadImage(im, fd, width, height, in gdImageCreateFromGifCtx()
337 if (! ReadOK(fd,&count,1)) { in GetDataBlock_()
[all …]
/PHP-7.2/sapi/fpm/fpm/
H A Dfpm_stdio.c27 int fd = open("/dev/null", O_RDWR); in fpm_stdio_init_main() local
29 if (0 > fd) { in fpm_stdio_init_main()
34 if (0 > dup2(fd, STDIN_FILENO) || 0 > dup2(fd, STDOUT_FILENO)) { in fpm_stdio_init_main()
36 close(fd); in fpm_stdio_init_main()
39 close(fd); in fpm_stdio_init_main()
112 int fd = ev->fd; local
288 int fd; local
302 if (0 > fd) {
309 dup2(fd, STDERR_FILENO);
313 close(fd);
[all …]
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_out.h37 PHPDBG_API int phpdbg_print(int severity, int fd, const char *tag, const char *xmlfmt, const char *…
38 PHPDBG_API int phpdbg_xml_internal(int fd, const char *fmt, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3);
39 PHPDBG_API int phpdbg_log_internal(int fd, const char *fmt, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3);
40 PHPDBG_API int phpdbg_out_internal(int fd, const char *fmt, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3);
41 PHPDBG_API int phpdbg_rlog_internal(int fd, const char *fmt, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3…
43 …fmt, ...) phpdbg_print(P_ERROR , PHPDBG_G(io)[PHPDBG_STDOUT].fd, tag, xmlfmt, strfm…
48 #define phpdbg_log(fmt, ...) phpdbg_log_internal(PHPDBG_G(io)[PHPDBG_STDOUT].fd, fmt, ##__VA_ARGS__)
49 #define phpdbg_xml(fmt, ...) phpdbg_xml_internal(PHPDBG_G(io)[PHPDBG_STDOUT].fd, fmt, ##__VA_ARGS__)
50 #define phpdbg_out(fmt, ...) phpdbg_out_internal(PHPDBG_G(io)[PHPDBG_STDOUT].fd, fmt, ##__VA_ARGS__)
61 #define phpdbg_rlog(fd, fmt, ...) phpdbg_rlog_internal(fd, fmt, ##__VA_ARGS__) argument
[all …]
/PHP-7.2/ext/standard/
H A Drandom.c48 random_globals_p->fd = -1; in random_globals_ctor()
53 if (random_globals_p->fd > 0) { in random_globals_dtor()
54 close(random_globals_p->fd); in random_globals_dtor()
55 random_globals_p->fd = -1; in random_globals_dtor()
135 int fd = RANDOM_G(fd); in php_random_bytes()
138 if (fd < 0) { in php_random_bytes()
140 fd = open("/dev/urandom", O_RDONLY); in php_random_bytes()
142 if (fd < 0) { in php_random_bytes()
149 if (fstat(fd, &st) != 0 || in php_random_bytes()
156 close(fd); in php_random_bytes()
[all …]
/PHP-7.2/main/
H A Dphp_network.h134 php_socket_t fd; member
174 static inline int php_pollfd_for(php_socket_t fd, int events, struct timeval *timeouttv) in php_pollfd_for() argument
179 p.fd = fd; in php_pollfd_for()
192 static inline int php_pollfd_for_ms(php_socket_t fd, int events, int timeout) in php_pollfd_for_ms() argument
197 p.fd = fd; in php_pollfd_for_ms()
216 # define PHP_SAFE_FD_SET(fd, set) FD_SET(fd, set) argument
217 # define PHP_SAFE_FD_CLR(fd, set) FD_CLR(fd, set) argument
218 # define PHP_SAFE_FD_ISSET(fd, set) FD_ISSET(fd, set) argument
221 # define PHP_SAFE_FD_SET(fd, set) do { if (fd < FD_SETSIZE) FD_SET(fd, set); } while(0) argument
222 # define PHP_SAFE_FD_CLR(fd, set) do { if (fd < FD_SETSIZE) FD_CLR(fd, set); } while(0) argument
[all …]
H A Dphp_open_temporary_file.c103 int fd = -1; in php_do_open_temporary_file() local
183 fd = mkstemp(opened_path); in php_do_open_temporary_file()
191 if (fd != -1 && opened_path_p) { in php_do_open_temporary_file()
196 if (fd != -1 && opened_path_p) { in php_do_open_temporary_file()
201 return fd; in php_do_open_temporary_file()
289 int fd; in php_open_temporary_fd_ex() local
312 if (fd == -1) { in php_open_temporary_fd_ex()
319 return fd; in php_open_temporary_fd_ex()
332 if (fd == -1) { in php_open_temporary_file()
336 fp = fdopen(fd, "r+b"); in php_open_temporary_file()
[all …]
/PHP-7.2/ext/bz2/tests/
H A D004.phpt9 var_dump(bzerror($fd));
10 var_dump(bzerrstr($fd));
11 var_dump(bzerrno($fd));
18 var_dump(bzread($fd, 10));
19 var_dump(bzerror($fd));
20 var_dump(bzerrstr($fd));
21 var_dump(bzerrno($fd));
28 var_dump(bzread($fd));
29 var_dump(bzerror($fd));
30 var_dump(bzerrstr($fd));
[all …]
/PHP-7.2/ext/session/
H A Dmod_files.c100 int fd; member
145 if (data->fd != -1) { in ps_files_close()
151 close(data->fd); in ps_files_close()
152 data->fd = -1; in ps_files_close()
196 if (data->fd != -1) { in ps_files_open()
207 close(data->fd); in ps_files_open()
208 data->fd = -1; in ps_files_open()
239 if (data->fd < 0) { in ps_files_write()
422 data->fd = -1; in PS_OPEN_FUNC()
483 if (data->fd < 0) { in PS_READ_FUNC()
[all …]
/PHP-7.2/ext/standard/tests/filters/
H A Dbug46164-2.phpt17 $fd = fopen('php://memory','w');
18 $filter = stream_filter_append($fd, 'user_filter');
19 fwrite($fd, "foo");
20 fflush($fd);
21 var_dump(fclose($fd));
/PHP-7.2/main/streams/
H A Dplain_wrapper.c158 int fd; in do_fstat() local
181 self->fd = fd; in _php_stream_fopen_from_fd_int()
211 int fd; in _php_stream_fopen_temporary_file() local
214 if (fd != -1) { in _php_stream_fopen_temporary_file()
232 close(fd); in _php_stream_fopen_temporary_file()
488 data->fd = -1; in php_stdiop_close()
617 int fd; in php_stdiop_set_option() local
628 if (fd == -1) in php_stdiop_set_option()
864 if (fd == -1) in php_stdiop_set_option()
976 int fd; in _php_stream_fopen() local
[all …]
/PHP-7.2/ext/fileinfo/libmagic/
H A Dcompress.c293 FD_SET(fd, &check); in sread()
392 if ((fd = dup2(tfd, fd)) == -1) { in file_pipe2file()
401 return fd; in file_pipe2file()
514 if (fd[i] == -1) in closefd()
516 (void) close(fd[i]); in closefd()
517 fd[i] = -1; in closefd()
521 closep(int *fd) in closep() argument
525 closefd(fd, i); in closep()
538 closep(fd); in copydesc()
646 if (fd != -1) { in uncompressbuf()
[all …]

Completed in 42 milliseconds

123456789