OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VFS
(Results
1 - 4
of
4
) sorted by null
/external/clang/lib/Frontend/
ASTUnit.cpp
687
IntrusiveRefCntPtr<
vfs
::FileSystem>
VFS
=
vfs
::getRealFileSystem();
688
AST->FileMgr = new FileManager(FileSystemOpts,
VFS
);
[
all
...]
FrontendAction.cpp
221
if (IntrusiveRefCntPtr<
vfs
::FileSystem>
VFS
=
224
CI.setVirtualFileSystem(
VFS
);
/external/chromium_org/third_party/sqlite/src/src/
test_osinst.c
13
** This file contains the implementation of an SQLite
vfs
wrapper that
14
** adds instrumentation to all
vfs
and file methods. C and Tcl interfaces
19
** This module contains code for a wrapper
VFS
that causes a log of
20
** most
VFS
calls to be written into a nominated file on disk. The log
36
** const char *zVfs, // Name of new
VFS
37
** const char *zParentVfs, // Name of parent
VFS
(or NULL)
56
** Then, if the log file is named "
vfs
.log", the following SQL command:
58
** CREATE VIRTUAL TABLE v USING vfslog('
vfs
.log');
115
sqlite3_vfs base; /*
VFS
methods */
116
sqlite3_vfs *pVfs; /* Parent
VFS
*/
[
all
...]
/external/clang/lib/Driver/
Driver.cpp
525
SmallString<128>
VFS
;
529
VFS
= llvm::sys::path::filename(Script + ".cache");
530
llvm::sys::path::append(
VFS
, "
vfs
", "
vfs
.yaml");
553
if (!
VFS
.empty()) {
554
// Add the
VFS
overlay to the reproduction script.
556
Cmd.insert(I, std::string(" -ivfsoverlay ") +
VFS
.c_str());
[
all
...]
Completed in 173 milliseconds