Home
last modified time | relevance | path

Searched refs:statbuf (Results 1 – 4 of 4) sorted by relevance

/PHP-5.5/ext/opcache/
H A DZendAccelerator.c641 static int zend_get_stream_timestamp(const char *filename, struct stat *statbuf TSRMLS_DC) in zend_get_stream_timestamp()
656 statbuf->st_mtime = 1; in zend_get_stream_timestamp()
673 *statbuf = stream_statbuf.sb; in zend_get_stream_timestamp()
724 struct stat statbuf; in zend_get_file_handle_timestamp() local
752 if (fstat(file_handle->handle.fd, &statbuf) == -1) { in zend_get_file_handle_timestamp()
757 if (fstat(fileno(file_handle->handle.fp), &statbuf) == -1) { in zend_get_file_handle_timestamp()
772 if (zend_get_stream_timestamp(file_path, &statbuf TSRMLS_CC) == SUCCESS) { in zend_get_file_handle_timestamp()
776 if (VCWD_STAT(file_path, &statbuf) != -1) { in zend_get_file_handle_timestamp()
810 statbuf = sb.sb; in zend_get_file_handle_timestamp()
819 *size = statbuf.st_size; in zend_get_file_handle_timestamp()
[all …]
/PHP-5.5/main/
H A Dphp_ini.c553 struct stat statbuf; in php_init_config() local
555 if (!VCWD_STAT(php_ini_file_name, &statbuf)) { in php_init_config()
556 if (!((statbuf.st_mode & S_IFMT) == S_IFDIR)) { in php_init_config()
/PHP-5.5/ext/sockets/
H A Dconversions.c1448 struct stat statbuf; in to_zval_read_fd_array() local
1455 if (fstat(fd, &statbuf) == -1) { in to_zval_read_fd_array()
1461 if (S_ISSOCK(statbuf.st_mode)) { in to_zval_read_fd_array()
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c26046 struct stat statbuf;
26047 if( osFstat(fd, &statbuf)==0
26048 && statbuf.st_size==0
26049 && (statbuf.st_mode&0777)!=m
26700 struct stat statbuf; /* Low-level file information */
26709 rc = osFstat(fd, &statbuf);
26735 rc = osFstat(fd, &statbuf);
26744 fileId.dev = statbuf.st_dev;
26748 fileId.ino = statbuf.st_ino;
30299 rc = osFstat(pFd->h, &statbuf);
[all …]

Completed in 662 milliseconds