/third_party/ffmpeg/doc/examples/ |
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/mesa3d/src/util/ |
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()
|
D | os_file.h | 25 os_file_create_unique(const char *filename, int filemode);
|
/third_party/iowow/src/fs/ |
D | iwfile.c | 214 if (!opts->filemode) { in iwfs_file_open() 215 opts->filemode = IWFS_DEFAULT_FILEMODE; in iwfs_file_open() 255 impl->fh = open(opts->path, mode, opts->filemode); in iwfs_file_open()
|
D | iwfile.h | 115 int filemode; member
|
/third_party/python/Lib/ |
D | stat.py | 156 def filemode(mode): function
|
D | tarfile.py | 1623 filemode, comptype = mode.split(":", 1) 1624 filemode = filemode or "r" 1633 return func(name, filemode, fileobj, **kwargs) 1636 filemode, comptype = mode.split("|", 1) 1637 filemode = filemode or "r" 1640 if filemode not in ("r", "w"): 1643 stream = _Stream(name, filemode, comptype, fileobj, bufsize) 1645 t = cls(name, filemode, stream, **kwargs) 1924 _safe_print(stat.filemode(tarinfo.mode))
|
D | zipfile.py | 396 result.append(' filemode=%r' % stat.filemode(hi)) 1237 filemode = modeDict[mode] 1240 self.fp = io.open(file, filemode) 1242 if filemode in modeDict: 1243 filemode = modeDict[filemode]
|
/third_party/curl/tests/ |
D | runtests.pl | 3826 my $filemode=$replycheckpartattr{'mode'}; 3827 if($filemode && ($filemode eq "text") && $has_textaware) { 3845 my $filemode=$replyattr{'mode'}; 3846 if($filemode && ($filemode eq "text") && $has_textaware) { 4274 my $filemode=$hash{'mode'}; 4275 if($filemode && ($filemode eq "text") && $has_textaware) { 4322 my $filemode=$hash{'mode'}; 4323 if($filemode && ($filemode eq "text") && $has_textaware) { 4511 my $filemode=$hash{'mode'}; 4512 if($filemode && ($filemode eq "text") && $has_textaware) {
|
/third_party/ffmpeg/libavformat/ |
D | avio.h | 100 int64_t filemode; /**< Unix file mode, -1 if unknown. */ member
|
D | url.c | 336 entry->filemode = -1; in ff_alloc_dir_entry()
|
D | file.c | 330 (*next)->filemode = st.st_mode & 0777; in file_read_dir()
|
D | libsmbclient.c | 268 entry->filemode = st.st_mode & 0777; in libsmbc_read_dir()
|
D | libssh.c | 363 entry->filemode = attr->permissions & 0777; in libssh_read_dir()
|
D | ftp.c | 989 next->filemode = strtoumax(value, NULL, 8); in ftp_parse_entry_mlsd()
|
/third_party/python/Lib/test/ |
D | test_stat.py | 96 modestr = self.statmod.filemode(st_mode)
|
D | test_logging.py | 4589 logging.basicConfig(filename='test.log', filemode='wb') 4647 logging.basicConfig(filename=None, filemode='a')
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.2.rst | 266 :class:`logging.FileHandler` is used in :mod:`atexit` with *filemode* set to
|
D | 3.8.0a1.rst | 885 Added the "socket" option in the `stat.filemode()` Python implementation to 4191 Remove ``tarfile.filemode`` which is deprecated since Python 3.3.
|
/third_party/python/Doc/library/ |
D | stat.rst | 132 .. function:: filemode(mode)
|
D | tarfile.rst | 46 *mode* has to be a string of the form ``'filemode[:compression]'``, it defaults 109 ``'filemode|[compression]'``. :func:`tarfile.open` will return a :class:`TarFile`
|
D | logging.rst | 1194 | *filemode* | If *filename* is specified, open the file |
|
/third_party/python/Doc/tools/ |
D | susp-ignored.csv | 230 library/tarfile,,:compression,filemode[:compression]
|
/third_party/python/Doc/howto/ |
D | logging.rst | 188 not remembering the messages from earlier runs, you can specify the *filemode* 191 logging.basicConfig(filename='example.log', filemode='w', level=logging.DEBUG)
|
/third_party/python/Doc/whatsnew/ |
D | 3.3.rst | 1976 The undocumented tarfile.filemode function has been moved to 1977 :func:`stat.filemode`. It can be used to convert a file's mode to a string of
|