Home
last modified time | relevance | path

Searched refs:fd (Results 126 – 150 of 230) sorted by relevance

12345678910

/php-src/ext/fileinfo/
H A Dlibmagic.patch567 - int fd;
581 - fd = -1;
651 - fd = -1;
671 - if (fd != -1)
775 - int fd = -1;
932 b->fd = fd;
935 - else if (b->fd == -1 || fstat(b->fd, &b->st) == -1)
936 + else if (b->fd == -1 || zend_fstat(b->fd, &b->st) == -1)
1313 return fd;
1476 int fd;
[all …]
/php-src/ext/opcache/
H A Dconfig.m4268 int fd;
276 fd = shm_open(tmpname, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
277 if (fd == -1) {
280 if (ftruncate(fd, 4096) < 0) {
281 close(fd);
286 shm = mmap(NULL, 4096, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
291 close(fd);
/php-src/win32/
H A Dselect.c48 #define SAFE_FD_ISSET(fd, set) (set != NULL && FD_ISSET(fd, set)) in php_select() argument
/php-src/sapi/fpm/fpm/
H A Dzlog.h77 int fd; member
94 void zlog_stream_init_ex(struct zlog_stream *stream, int flags, int fd);
H A Dfpm_conf.c1057 int fd; in fpm_conf_process_all_pools() local
1065 close(fd); in fpm_conf_process_all_pools()
1251 int fd; in fpm_conf_write_pid() local
1269 close(fd); in fpm_conf_write_pid()
1272 close(fd); in fpm_conf_write_pid()
1639 int fd, n; in fpm_conf_load_ini_file() local
1651 if (fd < 0) { in fpm_conf_load_ini_file()
1658 close(fd); in fpm_conf_load_ini_file()
1696 close(fd); in fpm_conf_load_ini_file()
1708 close(fd); in fpm_conf_load_ini_file()
[all …]
/php-src/ext/mysqli/tests/
H A Dgh9590.phpt2 Bug GH-9602 (stream_select does not abort upon exception or empty valid fd set)
59 --enable-fd-setsize=%d is recommended, but you may want to set it
/php-src/ext/fileinfo/libmagic/
H A Dis_json.c478 int fd; in main() local
483 if ((fd = open(argv[1], O_RDONLY)) == -1) in main()
486 if (fstat(fd, &st) == -1) in main()
492 if (read(fd, p, st.st_size) != st.st_size) in main()
/php-src/tests/output/
H A Dsapi_windows_vt100_support_winko_err.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
H A Dsapi_windows_vt100_support_winko_in-err.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
H A Dsapi_windows_vt100_support_winok_in-out.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
H A Dsapi_windows_vt100_support_winko_in-out-err.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
H A Dsapi_windows_vt100_support_winko_in-out.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
H A Dsapi_windows_vt100_support_winko_out-err.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
H A Dsapi_windows_vt100_support_winko_out.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
H A Dsapi_windows_vt100_support_winok_err.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
H A Dsapi_windows_vt100_support_winok_in-err.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
H A Dsapi_windows_vt100_support_winok_in-out-err.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
H A Dsapi_windows_vt100_support_winok_out-err.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
H A Dsapi_windows_vt100_support_winok_out.phpt37 STDIN (php://fd/0):
55 STDOUT (php://fd/1):
73 STDERR (php://fd/2):
/php-src/ext/spl/tests/
H A DSplFileInfo_getGroup_basic.phpt6 Filippo De Santis <fd@ideato.it>
H A DSplFileInfo_getOwner_basic.phpt6 Filippo De Santis <fd@ideato.it>
H A DSplFileInfo_getPerms_error.phpt6 Filippo De Santis <fd@ideato.it>
H A DDirectoryIterator_getInode_basic.phpt6 Filippo De Santis <fd@ideato.it>
H A DSplFileInfo_getGroup_error.phpt6 Filippo De Santis <fd@ideato.it>
/php-src/ext/standard/tests/file/
H A Dchmod_variation2.phpt21 $fd = fopen($filepath, "w+");
22 fclose($fd);

Completed in 36 milliseconds

12345678910