Home
last modified time | relevance | path

Searched refs:stat (Results 1 – 4 of 4) sorted by relevance

/development/tools/repo_diff/
Drepo_diff_trees.py417 for stat in stats:
420 'Commit': stat['commit'],
422 'Author': stat['author'],
423 'Subject': stat['subject'],
451 for stat in project_stats:
453 downstream_project = stat['downstream']
459 'Upstream Project': stat['upstream'],
460 'Diff Status': stat['status'],
461 'Files Changed': stat['file'],
462 'Line Insertions': stat['insertion'],
[all …]
/development/build/tools/
Dmk_sdk_repo_xml.sh424 SIZE=$( stat -f %z "$SRC" )
426 SIZE=$( stat -c %s "$SRC" )
/development/vndk/tools/
Dsystem_image_diff.py152 size = os.stat(full_path).st_size
/development/vndk/tools/definition-tool/
Dvndk_definition_tool.py17 import stat
109 import stat
121 return os.stat(path) if follow_symlinks else os.lstat(path)
123 def stat(self, follow_symlinks=True): member in DirEntry
133 return stat.S_ISDIR(self.stat(follow_symlinks).st_mode)
139 return stat.S_ISREG(self.stat(follow_symlinks).st_mode)
144 return stat.S_ISLNK(self.stat(follow_symlinks=False).st_mode)
1555 mode = os.stat(path).st_mode
1556 return (mode & (stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH)) != 0