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

  /external/chromium_org/chrome/common/extensions/docs/server2/
patched_file_system.py 104 def _PatchStat(self, stat_info, version, added, deleted, modified):
106 assert stat_info.child_versions is not None
110 stat_info = deepcopy(stat_info)
112 stat_info.version = version
114 stat_info.child_versions[child] = version
116 if stat_info.child_versions.get(child):
117 del stat_info.child_versions[child]
119 return stat_info
134 stat_info = self._PatchStat
    [all...]
subversion_file_system_test.py 62 stat_info = file_system.Stat('stat/')
69 self.assertEqual(expected, stat_info)
74 stat_info = file_system.Stat('stat/extension_api.h')
77 self.assertEqual(StatInfo('146163'), stat_info)
subversion_file_system.py 197 stat_info = _CreateStatInfo(result.content)
198 if stat_info.version is None:
201 return stat_info
202 if filename not in stat_info.child_versions:
205 return StatInfo(stat_info.child_versions[filename])
new_github_file_system.py 284 stat_info = StatInfo(version)
286 stat_info.child_versions = dict((p, StatInfo(version))
288 return stat_info
  /external/chromium_org/base/files/
file_posix.cc 120 void File::Info::FromStat(const stat_wrapper_t& stat_info) {
121 is_directory = S_ISDIR(stat_info.st_mode);
122 is_symbolic_link = S_ISLNK(stat_info.st_mode);
123 size = stat_info.st_size;
126 time_t last_modified_sec = stat_info.st_mtim.tv_sec;
127 int64 last_modified_nsec = stat_info.st_mtim.tv_nsec;
128 time_t last_accessed_sec = stat_info.st_atim.tv_sec;
129 int64 last_accessed_nsec = stat_info.st_atim.tv_nsec;
130 time_t creation_time_sec = stat_info.st_ctim.tv_sec;
131 int64 creation_time_nsec = stat_info.st_ctim.tv_nsec
    [all...]
file.h 135 // Fills this struct with values from |stat_info|.
136 void FromStat(const stat_wrapper_t& stat_info);
  /external/lldb/source/Host/linux/
Host.cpp 52 static bool GetProcessAndStatInfo (lldb::pid_t pid, ProcessInstanceInfo &process_info, ProcessStatInfo &stat_info, lldb::pid_t &tracerpid);
111 ReadProcPseudoFileStat (lldb::pid_t pid, ProcessStatInfo& stat_info)
127 stat_info.ppid = ppid;
132 stat_info.fProcessState |= eProcessStateRunning;
135 stat_info.fProcessState |= eProcessStateSleeping;
138 stat_info.fProcessState |= eProcessStateWaiting;
141 stat_info.fProcessState |= eProcessStateZombie;
144 stat_info.fProcessState |= eProcessStateTracedOrStopped;
147 stat_info.fProcessState |= eProcessStatePaging;
269 ProcessStatInfo stat_info; local
437 ProcessStatInfo stat_info; local
    [all...]
  /external/chromium_org/base/
file_util_posix.cc 99 stat_wrapper_t stat_info; local
100 if (CallLstat(path.value().c_str(), &stat_info) != 0) {
106 if (S_ISLNK(stat_info.st_mode)) {
112 if (stat_info.st_uid != owner_uid) {
118 if ((stat_info.st_mode & S_IWGRP) &&
119 !ContainsKey(group_gids, stat_info.st_gid)) {
125 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/icu/icu4c/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...]

Completed in 646 milliseconds