HomeSort by relevance Sort by last modified time
    Searched defs:Stat (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/chrome/common/extensions/docs/server2/
empty_dir_file_system.py 26 def Stat(self, path):
28 raise FileNotFoundError('EmptyDirFileSystem cannot stat %s' % path)
offline_file_system.py 22 def Stat(self, path):
chroot_file_system.py 21 |root| The path to transpose all Read/Stat calls by.
44 def Stat(self, path):
45 return self._file_system.Stat(posixpath.join(self._root, path))
patched_file_system.py 111 def Stat(self, path):
122 # self._base_file_system.Stat will throw an exception.
125 self._base_file_system.Stat(directory + '/'),
136 stat_info = self._PatchStat(self._base_file_system.Stat(directory + '/'),
143 return self._base_file_system.Stat(path)
file_system.py 30 '''Raised when a file isn't found for read or stat.
53 '''The result of calling Stat on a FileSystem.
135 # TODO(cduvall): Allow Stat to take a list of paths like Read.
136 def Stat(self, path):
152 '''An async version of Stat. Returns a Future to a StatInfo rather than a
155 This is a bandaid for a lack of an async Stat function. Stat() should be
159 return Future(callback=lambda: self.Stat(path))
gcs_file_system.py 64 raise FileNotFoundError('cloudstorage.stat failed for %s: %s' % (path,
104 def Stat(self, path):
local_file_system.py 50 path_mtime = os.stat(path).st_mtime
53 os.stat(os.path.join(path, filename)).st_mtime)
55 # This file system stat mimics subversion, where the stat of directories
64 raise FileNotFoundError('os.stat failed for %s: %s' % (path, e))
103 def Stat(self, path):
mock_file_system.py 15 - asserting how often Stat/Read calls are being made to it.
69 def Stat(self, path):
72 # This only supports numeric stat values since we need to add to it. In
73 # reality the logic here could just be to randomly mutate the stat values
78 stat = self._file_system.Stat(path)
79 stat.version = stradd(stat.version, self._stat_tracker.GetVersion(path))
80 if stat.child_versions:
81 for child_path, child_version in stat.child_versions.iteritems()
    [all...]
test_file_system.py 75 raise ValueError('Only files have an incrementable stat, '
101 Read('a/') as ['b'], and Stat determined by a value incremented via
129 def Stat(self, path):
github_file_system.py 94 self._GetZip(self.Stat(ZIP_KEY).version)
150 version = self.Stat(ZIP_KEY).version
170 def Stat(self, path):
179 logging.warning('GithubFileSystem Stat: %s' % e)
189 logging.warning('GithubFileSystem Stat: %s' % e)
new_github_file_system.py 133 # Caches the zip file's stat. Overrides start_empty=False and use
136 GithubFileSystem, category='stat-cache', start_empty=False)
177 stat caches.
198 # To decide whether we need to re-stat, and from there whether to re-fetch,
201 # wants to refresh (e.g. running a cron), so fetch the live stat from
202 # GitHub. If the stat hasn't changed since last time then no reason to
260 def Stat(self, path):
269 stat versions are always 0.
  /external/llvm/lib/Support/
FileOutputBuffer.cpp 39 sys::fs::file_status Stat;
40 std::error_code EC = sys::fs::status(FilePath, Stat);
41 switch (Stat.type()) {
  /cts/libs/commonutil/src/com/android/cts/util/
Stat.java 25 public class Stat {
  /cts/common/util/src/com/android/compatibility/common/util/
Stat.java 24 public class Stat {
  /external/chromium_org/third_party/skia/src/utils/win/
SkIStream.cpp 98 HRESULT STDMETHODCALLTYPE SkBaseIStream::Stat(STATSTG* pStatstg
205 HRESULT STDMETHODCALLTYPE SkIStream::Stat(STATSTG* pStatstg
265 HRESULT STDMETHODCALLTYPE SkWIStream::Stat(STATSTG* pStatstg
  /external/skia/src/utils/win/
SkIStream.cpp 98 HRESULT STDMETHODCALLTYPE SkBaseIStream::Stat(STATSTG* pStatstg
205 HRESULT STDMETHODCALLTYPE SkIStream::Stat(STATSTG* pStatstg
265 HRESULT STDMETHODCALLTYPE SkWIStream::Stat(STATSTG* pStatstg
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
noembed.h 82 #ifdef Stat
83 #undef Stat
103 #ifdef stat
104 #undef stat macro
  /external/chromium_org/dbus/
dbus_statistics.cc 22 struct Stat {
23 Stat(const std::string& service,
40 bool Compare(const Stat& other) const {
49 bool operator()(Stat* lhs, Stat* rhs) const {
56 typedef std::set<Stat*, Stat::PtrCompare> StatSet;
74 // Enum to specify which field in Stat to increment in AddStat
91 Stat* stat = GetStat(service, interface, method, true) local
198 const Stat* stat = *cur_iter; local
    [all...]
  /external/harfbuzz_ng/test/shaping/
hb_test_tools.py 158 class Stat:
171 self.passed = Stat ()
172 self.failed = Stat ()
173 self.total = Stat ()
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 165 #include <sys/stat.h>
863 // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
867 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
876 typedef struct stat StatStruct;
880 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h 193 # include <sys/stat.h>
248 // namespace (read, write, close, chdir, isatty, stat). We do not currently
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h 203 # include <sys/stat.h>
286 // namespace (read, write, close, chdir, isatty, stat). We do not currently
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 195 # include <sys/stat.h>
254 // namespace (read, write, close, chdir, isatty, stat). We do not currently
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h 193 # include <sys/stat.h>
248 // namespace (read, write, close, chdir, isatty, stat). We do not currently
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h 203 # include <sys/stat.h>
286 // namespace (read, write, close, chdir, isatty, stat). We do not currently
    [all...]

Completed in 1580 milliseconds

1 2