/external/chromium_org/chrome/common/extensions/docs/server2/ |
empty_dir_file_system.py | 23 def Stat(self, path): 25 raise FileNotFoundError('EmptyDirFileSystem cannot stat %s' % path)
|
offline_file_system.py | 21 def Stat(self, path):
|
caching_file_system.py | 37 smart, using Stat() to decided whether to skip Read()ing from |file_system|, 38 and only Stat()ing directories never files. 47 self._stat_object_store = create_object_store('stat') 49 # updates are picked up by the stat, so it doesn't need the force-refresh 57 def Stat(self, path): 61 # Always stat the parent directory, since it will have the stat of the child 62 # anyway, and this gives us an entire directory's stat info at once. 67 # ... and we only ever need to cache the dir stat, too. 70 dir_stat = self._file_system.Stat(dir_path [all...] |
chroot_file_system.py | 21 |root| The path to transpose all Read/Stat calls by. 45 def Stat(self, path): 46 return self._file_system.Stat(posixpath.join(self._root, path))
|
local_file_system.py | 43 path_mtime = os.stat(path).st_mtime 46 os.stat(os.path.join(path, filename)).st_mtime) 48 # This file system stat mimics subversion, where the stat of directories 57 raise FileNotFoundError('os.stat failed for %s: %s' % (path, e)) 85 def Stat(self, path):
|
patched_file_system.py | 123 def Stat(self, path): 134 # self._base_file_system.Stat will throw an exception. 137 self._base_file_system.Stat(directory + '/'), 148 stat_info = self._PatchStat(self._base_file_system.Stat(directory + '/'), 155 return self._base_file_system.Stat(path)
|
test_file_system.py | 34 Read('a/') as ['b'], and Stat determined by a value incremented via 106 def Stat(self, path):
|
file_system.py | 19 '''Raised when a file isn't found for read or stat. 34 '''The result of calling Stat on a FileSystem. 86 # TODO(cduvall): Allow Stat to take a list of paths like Read. 87 def Stat(self, path):
|
mock_file_system.py | 12 - asserting how often Stat/Read calls are being made to it. 63 def Stat(self, path): 68 result = self._file_system.Stat(path)
|
subversion_file_system.py | 170 def Stat(self, path): 179 raise FileSystemError('Error fetching %s for Stat: %s' % 183 raise FileNotFoundError('Got 404 when fetching %s for Stat, content %s' % 186 raise FileNotFoundError('Got %s when fetching %s for Stat, content %s' % 196 '%s from %s was not in child versions for Stat' % (filename, path)) 202 # of Stat to decide whether to re-read - and Stat has a ceiling of the 203 # revision - so when the revision changes, so might Stat. That is enough.
|
github_file_system.py | 98 self._GetZip(self.Stat(ZIP_KEY).version) 156 version = self.Stat(ZIP_KEY).version 176 def Stat(self, path): 185 logging.warning('GithubFileSystem Stat: %s' % e) 195 logging.warning('GithubFileSystem Stat: %s' % e)
|
new_github_file_system.py | 132 # Caches the zip file's stat. Overrides start_empty=False and use 135 GithubFileSystem, category='stat-cache', start_empty=False) 171 stat caches. 193 # To decide whether we need to re-stat, and from there whether to re-fetch, 196 # wants to refresh (e.g. running a cron), so fetch the live stat from 197 # GitHub. If the stat hasn't changed since last time then no reason to 256 def Stat(self, path): 265 stat versions are always 0.
|
/external/chromium_org/chrome_frame/ |
stream_impl.cc | 82 STDMETHODIMP StreamImpl::Stat(STATSTG* statstg, DWORD flag) { 85 hr = delegate_->Stat(statstg, flag);
|
urlmon_upload_data_stream.cc | 138 STDMETHODIMP UrlmonUploadDataStream::Stat(STATSTG *stat_stg,
|
/external/llvm/lib/Support/ |
FileOutputBuffer.cpp | 40 sys::fs::file_status Stat; 41 error_code EC = sys::fs::status(FilePath, Stat); 42 switch (Stat.type()) {
|
/cts/libs/commonutil/src/com/android/cts/util/ |
Stat.java | 25 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
|
/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/open-vcdiff/gtest/include/gtest/internal/ |
gtest-port.h | 165 #include <sys/stat.h> 871 // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this 875 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } 884 typedef struct stat StatStruct; 888 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); } [all...] |
/external/openssh/ |
sftp-server.c | 22 #include <sys/stat.h> 78 typedef struct Stat Stat; 80 struct Stat { 457 send_names(u_int32_t id, int count, const Stat *stats) 689 struct stat st; 698 ret = do_lstat ? lstat(name, &st) : stat(name, &st); 727 struct stat st; 928 struct stat st; 930 Stat *stats [all...] |
/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/testing/gtest/include/gtest/internal/ |
gtest-port.h | 190 # include <sys/stat.h> 243 // namespace (read, write, close, chdir, isatty, stat). We do not currently [all...] |
/external/chromium_org/testing/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...] |