OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stat_info
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/chrome/common/extensions/docs/server2/
patched_file_system.py
106
def _PatchStat(self,
stat_info
, version, added, deleted, modified):
108
assert
stat_info
.child_versions is not None
112
stat_info
= deepcopy(
stat_info
)
114
stat_info
.version = version
116
stat_info
.child_versions[child] = version
118
if
stat_info
.child_versions.get(child):
119
del
stat_info
.child_versions[child]
121
return
stat_info
136
stat_info
= self._PatchStat
[
all
...]
subversion_file_system_test.py
60
stat_info
= file_system.Stat('stat/')
66
self.assertEqual(expected,
stat_info
)
71
stat_info
= file_system.Stat('stat/extension_api.h')
73
self.assertEqual(StatInfo('146163'),
stat_info
)
subversion_file_system.py
189
stat_info
= _CreateStatInfo(result.content)
190
if
stat_info
.version is None:
193
return
stat_info
194
if filename not in
stat_info
.child_versions:
197
return StatInfo(
stat_info
.child_versions[filename])
caching_file_system.py
75
stat_info
= dir_stat
81
stat_info
= StatInfo(file_version)
83
return
stat_info
new_github_file_system.py
278
stat_info
= StatInfo(version)
280
stat_info
.child_versions = dict((p, StatInfo(version))
282
return
stat_info
/external/chromium_org/base/
file_util_posix.cc
106
stat_wrapper_t
stat_info
;
local
107
if (CallLstat(path.value().c_str(), &
stat_info
) != 0) {
113
if (S_ISLNK(
stat_info
.st_mode)) {
119
if (
stat_info
.st_uid != owner_uid) {
125
if ((
stat_info
.st_mode & S_IWGRP) &&
126
!ContainsKey(group_gids,
stat_info
.st_gid)) {
132
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 1804 milliseconds