Home
last modified time | relevance | path

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

/PHP-7.1/ext/opcache/
H A DZendAccelerator.c731 statbuf->st_mtime = 1; in zend_get_stream_timestamp()
748 *statbuf = stream_statbuf.sb; in zend_get_stream_timestamp()
799 zend_stat_t statbuf; in zend_get_file_handle_timestamp() local
827 if (zend_fstat(file_handle->handle.fd, &statbuf) == -1) { in zend_get_file_handle_timestamp()
832 if (zend_fstat(fileno(file_handle->handle.fp), &statbuf) == -1) { in zend_get_file_handle_timestamp()
844 if (zend_get_stream_timestamp(file_path, &statbuf) == SUCCESS) { in zend_get_file_handle_timestamp()
848 if (VCWD_STAT(file_path, &statbuf) != -1) { in zend_get_file_handle_timestamp()
853 if (zend_get_stream_timestamp(file_handle->filename, &statbuf) != SUCCESS) { in zend_get_file_handle_timestamp()
881 statbuf = sb.sb; in zend_get_file_handle_timestamp()
890 *size = statbuf.st_size; in zend_get_file_handle_timestamp()
[all …]
/PHP-7.1/main/
H A Dphp_ini.c551 zend_stat_t statbuf; in php_init_config() local
553 if (!VCWD_STAT(php_ini_file_name, &statbuf)) { in php_init_config()
554 if (!((statbuf.st_mode & S_IFMT) == S_IFDIR)) { in php_init_config()
/PHP-7.1/ext/sockets/
H A Dconversions.c1413 struct stat statbuf; in to_zval_read_fd_array() local
1418 if (fstat(fd, &statbuf) == -1) { in to_zval_read_fd_array()
1423 if (S_ISSOCK(statbuf.st_mode)) { in to_zval_read_fd_array()
/PHP-7.1/ext/sqlite3/libsqlite/
H A Dsqlite3.c33189 struct stat statbuf;
33190 if( osFstat(fd, &statbuf)==0
33191 && statbuf.st_size==0
33192 && (statbuf.st_mode&0777)!=m
33860 struct stat statbuf; /* Low-level file information */
33869 rc = osFstat(fd, &statbuf);
33895 rc = osFstat(fd, &statbuf);
33904 fileId.dev = statbuf.st_dev;
33908 fileId.ino = (u64)statbuf.st_ino;
37598 if( osFstat(pFd->h, &statbuf) ){
[all …]

Completed in 466 milliseconds