Searched refs:vfs (Results 1 - 25 of 49) sorted by relevance

12

/external/clang/unittests/Basic/
H A DVirtualFileSystemTest.cpp22 class DummyFileSystem : public vfs::FileSystem {
25 std::map<std::string, vfs::Status> FilesAndDirs;
35 ErrorOr<vfs::Status> status(const Twine &Path) {
36 std::map<std::string, vfs::Status>::iterator I =
43 std::unique_ptr<vfs::File> &Result) {
53 struct DirIterImpl : public clang::vfs::detail::DirIterImpl {
54 std::map<std::string, vfs::Status> &FilesAndDirs;
55 std::map<std::string, vfs::Status>::iterator I;
65 DirIterImpl(std::map<std::string, vfs::Status> &FilesAndDirs,
85 CurrentEntry = vfs
[all...]
H A DFileManagerTest.cpp55 std::unique_ptr<vfs::File> *F,
56 vfs::FileSystem &FS) override {
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h25 namespace vfs { namespace in namespace:clang
30 // FIXME: should probably replace this with vfs::Status
72 std::unique_ptr<vfs::File> *F, FileSystemStatCache *Cache,
73 vfs::FileSystem &FS);
91 // unique_ptr. Optional<unique_ptr<vfs::File>&> might be nicer, but
94 std::unique_ptr<vfs::File> *F,
95 vfs::FileSystem &FS) = 0;
98 std::unique_ptr<vfs::File> *F, vfs::FileSystem &FS) {
123 std::unique_ptr<vfs
[all...]
H A DFileManager.h73 mutable std::unique_ptr<vfs::File> File;
124 IntrusiveRefCntPtr<vfs::FileSystem> FS;
175 std::unique_ptr<vfs::File> *F);
183 IntrusiveRefCntPtr<vfs::FileSystem> FS = nullptr);
230 IntrusiveRefCntPtr<vfs::FileSystem> getVirtualFileSystem() const {
257 vfs::Status &Result);
/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp33 static void copyStatusToFileData(const vfs::Status &Status,
55 std::unique_ptr<vfs::File> *F,
56 FileSystemStatCache *Cache, vfs::FileSystem &FS) {
66 llvm::ErrorOr<vfs::Status> Status = FS.status(Path);
81 std::unique_ptr<vfs::File> OwnedFile;
91 llvm::ErrorOr<vfs::Status> Status = OwnedFile->status();
123 std::unique_ptr<vfs::File> *F, vfs::FileSystem &FS) {
H A DFileManager.cpp48 IntrusiveRefCntPtr<vfs::FileSystem> FS)
57 this->FS = vfs::getRealFileSystem();
256 std::unique_ptr<vfs::File> F;
452 std::unique_ptr<vfs::File> *F) {
466 vfs::Status &Result) {
470 llvm::ErrorOr<vfs::Status> S = FS->status(FilePath.c_str());
H A DVirtualFileSystem.cpp26 using namespace clang::vfs;
189 IntrusiveRefCntPtr<FileSystem> vfs::getRealFileSystem() {
195 class RealFSDirIter : public clang::vfs::detail::DirIterImpl {
267 clang::vfs::detail::DirIterImpl::~DirIterImpl() { }
270 class OverlayFSDirIterImpl : public clang::vfs::detail::DirIterImpl {
413 class VFSFromYamlDirIterImpl : public clang::vfs::detail::DirIterImpl {
477 class VFSFromYAML : public vfs::FileSystem {
976 std::unique_ptr<vfs::File> &Result) {
996 vfs::getVFSFromYAML(MemoryBuffer *Buffer, SourceMgr::DiagHandlerTy DiagHandler,
1002 UniqueID vfs
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLiteFileSystemPosix.cpp44 int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs, int fd, int dirfd, sqlite3_file* file, const char* fileName, int noLock);
57 // vfs - pointer to the sqlite3_vfs object.
62 int chromiumOpen(sqlite3_vfs* vfs, const char* fileName, argument
92 result = chromium_sqlite3_fill_in_unix_sqlite3_file(vfs, fd, -1, id, fileName, noLock);
100 // vfs - pointer to the sqlite3_vfs object.
111 // vfs - pointer to the sqlite3_vfs object.
142 // vfs - pointer to the sqlite3_vfs object.
146 int chromiumFullPathname(sqlite3_vfs* vfs, const char* relativePath, argument
150 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath);
157 // vfs
[all...]
H A DSQLiteFileSystemWin.cpp50 // vfs - pointer to the sqlite3_vfs object.
79 // vfs - pointer to the sqlite3_vfs object.
90 // vfs - pointer to the sqlite3_vfs object.
114 // vfs - pointer to the sqlite3_vfs object.
118 int chromiumFullPathname(sqlite3_vfs* vfs, const char* relativePath, argument
122 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath);
129 // vfs - pointer to the sqlite3_vfs object.
/external/chromium_org/third_party/webrtc/base/
H A Dunixfilesystem.cc518 struct statfs vfs;
519 memset(&vfs, 0, sizeof(vfs));
520 if (0 != statfs(existing_path.pathname().c_str(), &vfs))
523 struct statvfs vfs;
524 memset(&vfs, 0, sizeof(vfs));
525 if (0 != statvfs(existing_path.pathname().c_str(), &vfs))
529 *freebytes = static_cast<int64>(vfs.f_bsize) * vfs
[all...]
/external/chromium_org/base/files/
H A Dfile_util_linux.cc9 #include <sys/vfs.h>
/external/javasqlite/src/main/java/SQLite/
H A DJDBCDriver.java12 public static String vfs = null; field in class:JDBCDriver
71 java.lang.System.getProperty("SQLite.vfs");
73 vfs = tvfs;
101 args[4] = info.getProperty("vfs");
107 args[4] = vfs;
136 pp = new DriverPropertyInfo("vfs", vfs);
H A DDatabase.java53 * @param vfs VFS name (for SQLite >= 3.5)
56 public void open(String filename, int mode, String vfs) argument
66 _open4(filename, mode, vfs, false);
82 * @param vfs VFS name (for SQLite >= 3.5)
86 public void open(String filename, int mode, String vfs, boolean ver2) argument
96 _open4(filename, mode, vfs, ver2);
118 private native void _open4(String filename, int mode, String vfs, argument
/external/clang/include/clang/Frontend/
H A DCompilerInvocation.h209 namespace vfs { namespace in namespace:clang
213 IntrusiveRefCntPtr<vfs::FileSystem>
H A DCompilerInstance.h79 IntrusiveRefCntPtr<vfs::FileSystem> VirtualFileSystem;
336 vfs::FileSystem &getVirtualFileSystem() const {
346 void setVirtualFileSystem(IntrusiveRefCntPtr<vfs::FileSystem> FS) {
H A DUtils.h124 vfs::YAMLVFSWriter VFSWriter;
/external/clang/tools/libclang/
H A DBuildSystem.cpp30 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(clang::vfs::YAMLVFSWriter,
34 return wrap(new clang::vfs::YAMLVFSWriter());
/external/linux-tools-perf/perf-3.12.0/tools/lib/lk/
H A Ddebugfs.c6 #include <sys/vfs.h>
/external/chromium_org/base/
H A Dsys_info_posix.cc23 #include <sys/vfs.h>
/external/libselinux/src/
H A Dinit.c14 #include <sys/vfs.h>
/external/qemu/distrib/libselinux/src/
H A Dinit.c14 #include <sys/vfs.h>
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCConnection.java27 protected String vfs; field in class:JDBCConnection
114 SQLite.Constants.SQLITE_OPEN_CREATE), vfs);
145 String vfs)
156 this.vfs = vfs;
144 JDBCConnection(String url, String enc, String pwd, String drep, String vfs) argument
/external/e2fsprogs/util/
H A Dcopy_sparse.c39 #include <sys/vfs.h>
/external/clang/lib/Lex/
H A DPPLexerChange.cpp456 vfs::FileSystem &FS = *FileMgr.getVirtualFileSystem();
458 for (vfs::recursive_directory_iterator Entry(FS, Dir->getName(), EC), End;
/external/chromium_org/sandbox/linux/suid/
H A Dsandbox.c28 #include <sys/vfs.h>

Completed in 8546 milliseconds

12