Searched refs:statbuf (Results 1 – 4 of 4) sorted by relevance
/PHP-7.0/ext/opcache/ |
H A D | ZendAccelerator.c | 725 statbuf->st_mtime = 1; in zend_get_stream_timestamp() 742 *statbuf = stream_statbuf.sb; in zend_get_stream_timestamp() 793 zend_stat_t statbuf; in zend_get_file_handle_timestamp() local 821 if (zend_fstat(file_handle->handle.fd, &statbuf) == -1) { in zend_get_file_handle_timestamp() 826 if (zend_fstat(fileno(file_handle->handle.fp), &statbuf) == -1) { in zend_get_file_handle_timestamp() 838 if (zend_get_stream_timestamp(file_path, &statbuf) == SUCCESS) { in zend_get_file_handle_timestamp() 842 if (VCWD_STAT(file_path, &statbuf) != -1) { in zend_get_file_handle_timestamp() 847 if (zend_get_stream_timestamp(file_handle->filename, &statbuf) != SUCCESS) { in zend_get_file_handle_timestamp() 875 statbuf = sb.sb; in zend_get_file_handle_timestamp() 884 *size = statbuf.st_size; in zend_get_file_handle_timestamp() [all …]
|
/PHP-7.0/main/ |
H A D | php_ini.c | 551 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.0/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.0/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 29975 struct stat statbuf; 29976 if( osFstat(fd, &statbuf)==0 29977 && statbuf.st_size==0 29978 && (statbuf.st_mode&0777)!=m 30586 struct stat statbuf; /* Low-level file information */ 30595 rc = osFstat(fd, &statbuf); 30621 rc = osFstat(fd, &statbuf); 30630 fileId.dev = statbuf.st_dev; 30634 fileId.ino = statbuf.st_ino; 34153 if( osFstat(pFd->h, &statbuf) ){ [all …]
|
Completed in 495 milliseconds