HomeSort by relevance Sort by last modified time
    Searched refs:stat_info (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/chrome/common/extensions/docs/server2/
patched_file_system.py 101 def _PatchStat(self, stat_info, version, added, deleted, modified):
103 assert stat_info.child_versions is not None
107 stat_info = deepcopy(stat_info)
109 stat_info.version = version
111 stat_info.child_versions[child] = version
113 if stat_info.child_versions.get(child):
114 del stat_info.child_versions[child]
116 return stat_info
131 stat_info = self._PatchStat
    [all...]
subversion_file_system_test.py 50 stat_info = file_system.Stat('stat/')
55 self.assertEqual(expected, stat_info)
59 stat_info = file_system.Stat('stat/extension_api.h')
60 self.assertEqual(StatInfo('146163'), stat_info)
subversion_file_system.py 185 stat_info = _CreateStatInfo(result.content)
186 if stat_info.version is None:
189 return stat_info
190 if filename not in stat_info.child_versions:
193 return StatInfo(stat_info.child_versions[filename])
caching_file_system.py 73 stat_info = dir_stat
78 stat_info = StatInfo(file_version)
80 return stat_info
  /external/chromium_org/base/
file_util_posix.cc 102 stat_wrapper_t stat_info; local
103 if (CallLstat(path.value().c_str(), &stat_info) != 0) {
109 if (S_ISLNK(stat_info.st_mode)) {
115 if (stat_info.st_uid != owner_uid) {
121 if ((stat_info.st_mode & S_IWGRP) &&
122 !ContainsKey(group_gids, stat_info.st_gid)) {
128 if (stat_info.st_mode & S_IWOTH) {
  /external/chromium_org/third_party/icu/source/tools/tzcode/
tz2icu.cpp 647 struct stat stat_info; local
664 lstat(dir_entry->d_name,&stat_info);
665 if (S_ISDIR(stat_info.st_mode)) {
    [all...]
  /external/icu4c/tools/tzcode/
tz2icu.cpp 647 struct stat stat_info; local
664 lstat(dir_entry->d_name,&stat_info);
665 if (S_ISDIR(stat_info.st_mode)) {
    [all...]

Completed in 287 milliseconds