Home
last modified time | relevance | path

Searched refs:fd (Results 151 – 175 of 181) sorted by relevance

12345678

/PHP-5.5/main/
H A Dphp_streams.h70 #define php_stream_fopen_from_fd_rel(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mod… argument
H A DSAPI.c1033 SAPI_API int sapi_get_fd(int *fd TSRMLS_DC) in sapi_get_fd()
1036 return sapi_module.get_fd(fd TSRMLS_CC); in sapi_get_fd()
/PHP-5.5/ext/curl/
H A Dinterface.c250 ch->handlers->read->fd = 0; in _php_curl_verify_handlers()
1553 ZVAL_RESOURCE(zfd, t->fd); in curl_read()
1554 zend_list_addref(t->fd); in curl_read()
2038 dupch->handlers->read->fd = ch->handlers->read->fd; in PHP_FUNCTION()
2449 ch->handlers->read->fd = 0; in _php_curl_setopt()
2456 ch->handlers->read->fd = Z_LVAL_PP(zvalue); in _php_curl_setopt()
3438 ch->handlers->read->fd = 0; in _php_curl_reset_handlers()
/PHP-5.5/ext/standard/tests/strings/
H A Dhtml_entity_decode_iso8859-5.phpt139 § => fd
396 SECTION SIGN: § => fd
H A Dhtml_entity_decode_iso8859-15.phpt396 LATIN SMALL LETTER Y WITH ACUTE: ý => fd
397 ý => fd
H A Dhtml_entity_decode_cp866.phpt258 ¤ => fd
524 CURRENCY SIGN: ¤ => fd
H A Dhtml_entity_decode_macroman.phpt531 DOUBLE ACUTE ACCENT: ˝ => fd
H A Dhtml_entity_decode_win1251.phpt528 CYRILLIC SMALL LETTER E: э => fd
H A Dhtml_entity_decode_koi8-r.phpt524 CYRILLIC CAPITAL LETTER SHCHA: Щ => fd
/PHP-5.5/ext/session/
H A Dsession.c370 int fd; in php_session_create_id()
372 fd = VCWD_OPEN(PS(entropy_file), O_RDONLY); in php_session_create_id()
373 if (fd >= 0) { in php_session_create_id()
379 n = read(fd, rbuf, MIN(to_read, sizeof(rbuf))); in php_session_create_id()
397 close(fd); in php_session_create_id()
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c26025 int fd;
26041 fd = -1;
26058 return fd;
31200 fd = pUnused->fd;
31278 p->pUnused->fd = fd;
31394 int fd;
31992 fd = pUnused->fd;
32037 pUnused->fd = fd;
41762 #define FILEHANDLEID(fd) ((int)fd)
45020 sqlite3_file *fd = pPager->fd;
[all …]
/PHP-5.5/Zend/
H A Dzend_alloc.c1012 int fd = open("/dev/urandom", 0); in zend_mm_random() local
1014 if (fd >= 0) { in zend_mm_random()
1015 if (read(fd, buf, size) == size) { in zend_mm_random()
1020 close(fd); in zend_mm_random()
1024 close(fd); in zend_mm_random()
/PHP-5.5/
H A Dacinclude.m41228 int fd = open("conftest_in", O_WRONLY|O_CREAT, 0600);
1230 if (fd < 0) exit(1);
1231 if (pwrite(fd, "text", 4, 0) != 4) exit(1);
1233 if (pwrite(fd, "text", 4, -1) != -1 || errno != EINVAL) exit(1);
1259 int fd = open("conftest_in", O_RDONLY);
1260 if (fd < 0) exit(1);
1261 if (pread(fd, buf, 2, 0) != 2) exit(1);
1263 if (pread(fd, buf, 2, -1) != -1 || errno != EINVAL) exit(1);
H A Dconfigure.in986 AC_MSG_CHECKING([how big to make fd sets])
987 PHP_ARG_ENABLE(fd-setsize,,
988 [ --enable-fd-setsize Set size of descriptor sets], no, no)
995 AC_MSG_ERROR([Invalid value passed to --enable-fd-setsize!])
/PHP-5.5/ext/standard/tests/file/
H A Dchmod_basic-win32.phpt16 $fd = fopen($filename, "w+");
17 fclose($fd);
/PHP-5.5/ext/date/lib/
H A Dparse_iso_intervals.re88 int fd;
H A Dparse_iso_intervals.c90 int fd; member
H A Dparse_date.re150 int fd;
330 if((cnt = read(s->fd, (char*) s->lim, BSIZE)) != BSIZE){
/PHP-5.5/sapi/litespeed/
H A Dlsapi_main.c572 file_handle->handle.fd = 0; in lsapi_execute_script()
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c2389 if (file_handle.handle.fd < 0) {
2393 file_handle.handle.fp = fdopen(file_handle.handle.fd, "rb");
/PHP-5.5/win32/build/
H A Dconfig.w32412 ARG_ENABLE('fd-setsize', "Set maximum number of sockets for select(2)", "256");
/PHP-5.5/ext/fileinfo/libmagic/
H A Dapprentice.c2751 int fd = -1; in apprentice_compile() local
2777 if (write(fd, ar, sizeof(ar)) != (ssize_t)sizeof(ar)) { in apprentice_compile()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_structs.h128 php_stream *fd; member
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_main.c1532 if (request->fd >= 0) {
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativePPC_common.c116 #define FD(fd) ((fd) << 21) argument

Completed in 649 milliseconds

12345678