Searched refs:filemode (Results 1 - 17 of 17) sorted by relevance
/third_party/ffmpeg/doc/examples/ |
H A D | avio_list_dir.c | 62 char filemode[4], uid_and_gid[20]; in list_op() local 77 if (entry->filemode == -1) { in list_op() 78 snprintf(filemode, 4, "???"); in list_op() 80 snprintf(filemode, 4, "%3"PRIo64, entry->filemode); in list_op() 92 filemode, in list_op()
|
/third_party/libabigail/ |
H A D | gen-changelog.py | 99 filemode = False 112 filemode = False 114 filemode = True 115 elif filemode == True:
|
/third_party/curl/tests/ |
H A D | runtests.pl | 1233 my $filemode=$hash{'mode'}; 1234 if($filemode && ($filemode eq "text") && $has_textaware) { 1287 my $filemode=$hash{'mode'}; 1288 if($filemode && ($filemode eq "text") && $feature{"hyper"}) { 1294 if($filemode && ($filemode eq "text") && $has_textaware) { 1384 my $filemode=$replycheckpartattr{'mode'}; 1385 if($filemode [all...] |
/third_party/mesa3d/src/util/ |
H A D | os_file.c | 30 os_file_create_unique(const char *filename, int filemode) in os_file_create_unique() argument 32 int fd = open(filename, O_CREAT | O_EXCL | O_WRONLY, filemode); in os_file_create_unique()
|
H A D | os_file.h | 25 os_file_create_unique(const char *filename, int filemode);
|
/third_party/python/Lib/ |
H A D | tarfile.py | 1836 filemode, comptype = mode.split(":", 1) 1837 filemode = filemode or "r" 1846 return func(name, filemode, fileobj, **kwargs) 1849 filemode, comptype = mode.split("|", 1) 1850 filemode = filemode or "r" 1853 if filemode not in ("r", "w"): 1856 stream = _Stream(name, filemode, comptype, fileobj, bufsize) 1858 t = cls(name, filemode, strea [all...] |
H A D | stat.py | 156 def filemode(mode): function
|
H A D | zipfile.py | 427 result.append(' filemode=%r' % stat.filemode(hi)) 1284 filemode = modeDict[mode] 1287 self.fp = io.open(file, filemode) 1289 if filemode in modeDict: 1290 filemode = modeDict[filemode]
|
/third_party/ffmpeg/libavformat/ |
H A D | avio.h | 101 int64_t filemode; /**< Unix file mode, -1 if unknown. */ member
|
H A D | libsmbclient.c | 268 entry->filemode = st.st_mode & 0777; in libsmbc_read_dir()
|
H A D | url.c | 336 entry->filemode = -1; in ff_alloc_dir_entry()
|
H A D | file.c | 329 (*next)->filemode = st.st_mode & 0777; in file_read_dir()
|
H A D | libssh.c | 363 entry->filemode = attr->permissions & 0777; in libssh_read_dir()
|
H A D | ftp.c | 1009 next->filemode = strtoumax(value, NULL, 8); in ftp_parse_entry_mlsd()
|
/third_party/python/Lib/test/ |
H A D | test_stat.py | 96 modestr = self.statmod.filemode(st_mode)
|
H A D | test_tarfile.py | 2487 'copyfileobj', 'filemode', 'EmptyHeaderError', 3233 """Inverse of `stat.filemode` (for permission bits) 3256 assert stat.filemode(result)[1:] == mode[1:] 3372 got = stat.filemode(stat.S_IMODE(path.stat().st_mode)) 3644 normal_dir_mode = stat.filemode(stat.S_IMODE(
|
H A D | test_logging.py | 4741 logging.basicConfig(filename='test.log', filemode='wb') 4798 # Should pop both filename and filemode even if filename is None 4799 logging.basicConfig(filename=None, filemode='a')
|
Completed in 29 milliseconds