Searched refs:statbuf (Results 1 – 4 of 4) sorted by relevance
/PHP-7.2/ext/opcache/ |
H A D | ZendAccelerator.c | 785 statbuf->st_mtime = 1; in zend_get_stream_timestamp() 802 *statbuf = stream_statbuf.sb; in zend_get_stream_timestamp() 853 zend_stat_t statbuf; in zend_get_file_handle_timestamp() local 881 if (zend_fstat(file_handle->handle.fd, &statbuf) == -1) { in zend_get_file_handle_timestamp() 886 if (zend_fstat(fileno(file_handle->handle.fp), &statbuf) == -1) { in zend_get_file_handle_timestamp() 898 if (zend_get_stream_timestamp(file_path, &statbuf) == SUCCESS) { in zend_get_file_handle_timestamp() 902 if (VCWD_STAT(file_path, &statbuf) != -1) { in zend_get_file_handle_timestamp() 907 if (zend_get_stream_timestamp(file_handle->filename, &statbuf) != SUCCESS) { in zend_get_file_handle_timestamp() 935 statbuf = sb.sb; in zend_get_file_handle_timestamp() 944 *size = statbuf.st_size; in zend_get_file_handle_timestamp() [all …]
|
/PHP-7.2/main/ |
H A D | php_ini.c | 589 zend_stat_t statbuf; in php_init_config() local 591 if (!VCWD_STAT(php_ini_file_name, &statbuf)) { in php_init_config() 592 if (!((statbuf.st_mode & S_IFMT) == S_IFDIR)) { in php_init_config()
|
/PHP-7.2/ext/sockets/ |
H A D | conversions.c | 1413 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.2/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 33189 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 509 milliseconds