Home
last modified time | relevance | path

Searched refs:srcstat (Results 1 – 3 of 3) sorted by relevance

/external/flac/src/share/grabbag/
Dfile.c54 struct flac_stat_s srcstat; in grabbag__file_copy_metadata() local
56 if(0 == flac_stat(srcpath, &srcstat)) { in grabbag__file_copy_metadata()
59 srctime[0].tv_sec = srcstat.st_atime; in grabbag__file_copy_metadata()
60 srctime[1].tv_sec = srcstat.st_mtime; in grabbag__file_copy_metadata()
63 srctime.actime = srcstat.st_atime; in grabbag__file_copy_metadata()
64 srctime.modtime = srcstat.st_mtime; in grabbag__file_copy_metadata()
66 (void)flac_chmod(destpath, srcstat.st_mode); in grabbag__file_copy_metadata()
73 struct flac_stat_s srcstat; in grabbag__file_get_filesize() local
75 if(0 == flac_stat(srcpath, &srcstat)) in grabbag__file_get_filesize()
76 return srcstat.st_size; in grabbag__file_get_filesize()
/external/flac/src/test_seeking/
Dmain.c97 struct flac_stat_s srcstat; in get_filesize_() local
99 if(0 == flac_stat(srcpath, &srcstat)) in get_filesize_()
100 return srcstat.st_size; in get_filesize_()
/external/python/cpython2/Python/
Dimport.c951 write_compiled_module(PyCodeObject *co, char *cpathname, struct stat *srcstat, time_t mtime) in write_compiled_module() argument
955 mode_t mode = srcstat->st_mode & ~S_IEXEC; in write_compiled_module()
963 mode_t mode = srcstat->st_mode & ~S_IXUSR & ~S_IXGRP & ~S_IXOTH; in write_compiled_module()