Home
last modified time | relevance | path

Searched refs:st_flags (Results 1 – 25 of 26) sorted by relevance

12

/external/e2fsprogs/lib/e2p/
Dgetflags.c41 if (buf.st_flags & UF_IMMUTABLE) in getflags()
45 if (buf.st_flags & UF_APPEND) in getflags()
49 if (buf.st_flags & UF_NODUMP) in getflags()
Dfgetflags.c58 if (buf.st_flags & UF_IMMUTABLE) in fgetflags()
62 if (buf.st_flags & UF_APPEND) in fgetflags()
66 if (buf.st_flags & UF_NODUMP) in fgetflags()
/external/python/cpython2/Lib/test/
Dtest_posix.py457 chflags_func(target_file, st.st_flags | stat.UF_IMMUTABLE)
466 self.assertEqual(st.st_flags | stat.UF_IMMUTABLE, new_st.st_flags)
472 posix.chflags(target_file, st.st_flags)
495 dummy_symlink_st.st_flags | stat.UF_IMMUTABLE)
506 self.assertEqual(testfn_st.st_flags, new_testfn_st.st_flags)
507 self.assertEqual(dummy_symlink_st.st_flags | stat.UF_IMMUTABLE,
508 new_dummy_symlink_st.st_flags)
510 posix.lchflags(_DUMMY_SYMLINK, dummy_symlink_st.st_flags)
/external/python/cpython3/Modules/
Dparsermodule.c193 PyCompilerFlags st_flags; /* Parser and compiler flags */ member
343 o->st_flags.cf_flags = 0; in parser_newstobject()
482 mod = PyAST_FromNodeObject(self->st_node, &self->st_flags, in parser_compilest()
488 &self->st_flags, -1, arena); in parser_compilest()
588 ((PyST_Object *)res)->st_flags.cf_flags = flags & PyCF_MASK; in parser_do_parse()
Dposixmodule.c2086 PyLong_FromLong((long)st->st_flags)); in _pystat_fromstructstat()
/external/python/cpython3/Lib/test/
Dtest_posix.py899 flags = st.st_flags | stat.UF_IMMUTABLE
910 self.assertEqual(st.st_flags | stat.UF_IMMUTABLE, new_st.st_flags)
916 posix.chflags(target_file, st.st_flags)
942 flags = dummy_symlink_st.st_flags | stat.UF_IMMUTABLE
954 self.assertEqual(testfn_st.st_flags, new_testfn_st.st_flags)
955 self.assertEqual(dummy_symlink_st.st_flags | stat.UF_IMMUTABLE,
956 new_dummy_symlink_st.st_flags)
958 fn(_DUMMY_SYMLINK, dummy_symlink_st.st_flags)
Dtest_shutil.py383 self.assertEqual(src_link_stat.st_flags, dst_link_stat.st_flags)
555 self.assertEqual(src_link_stat.st_flags, dst_stat.st_flags)
663 self.assertEqual(dst_stat.st_flags, src_stat.st_flags)
/external/e2fsprogs/
Dconfigure.ac1085 dnl See if struct stat has a st_flags field, in which case we can get file
1088 AC_MSG_CHECKING(whether struct stat has a st_flags field)
1091 [struct stat stat; stat.st_flags = 0;],
1096 AC_MSG_CHECKING(whether st_flags field is useful)
1099 [struct stat stat; stat.st_flags |= UF_IMMUTABLE;],
1105 [Define to 1 if struct stat has st_flags])
Dconfigure13056 struct stat stat; stat.st_flags = 0;
13083 struct stat stat; stat.st_flags |= UF_IMMUTABLE;
/external/e2fsprogs/doc/RelNotes/
Dv1.16.txt57 On the Alpha, glibc declares st_flags although it isn't actually used;
/external/python/cpython2/Modules/
Dparsermodule.c167 PyCompilerFlags st_flags; /* Parser and compiler flags */ member
303 o->st_flags.cf_flags = 0; in parser_newstobject()
463 mod = PyAST_FromNode(self->st_node, &(self->st_flags), str, arena); in parser_compilest()
465 res = (PyObject *)PyAST_Compile(mod, str, &(self->st_flags), arena); in parser_compilest()
581 ((PyST_Object *)res)->st_flags.cf_flags = flags & PyCF_MASK; in parser_do_parse()
Dposixmodule.c1566 PyInt_FromLong((long)st->st_flags)); in _pystat_fromstructstat()
/external/python/cpython2/Lib/
Dshutil.py117 os.chflags(dst, st.st_flags)
/external/python/cpython3/Lib/
Dshutil.py222 lookup("chflags")(dst, st.st_flags, follow_symlinks=follow)
/external/e2fsprogs/lib/
Dconfig.h.in430 /* Define to 1 if struct stat has st_flags */
/external/python/cpython2/
Dpyconfig.h.in746 /* Define to 1 if `st_flags' is a member of `struct stat'. */
Dconfigure.ac3575 AC_CHECK_MEMBERS([struct stat.st_flags])
/external/python/cpython3/
Dpyconfig.h.in1002 /* Define to 1 if `st_flags' is a member of `struct stat'. */
Dconfigure.ac4073 AC_CHECK_MEMBERS([struct stat.st_flags])
/external/python/cpython2/Doc/library/
Dos.rst1403 * :attr:`st_flags` - user defined flags for file
/external/python/cpython2/Doc/whatsnew/
D2.5.rst1466 :attr:`st_birthtime`. The :attr:`st_flags` attribute is also available, if the
/external/python/cpython3/Doc/whatsnew/
D2.5.rst1467 :attr:`st_birthtime`. The :attr:`st_flags` attribute is also available, if the
/external/python/cpython3/Doc/library/
Dos.rst2490 .. attribute:: st_flags
/external/strace/
DChangeLog26282 As st_flags, st_fstype, and st_gen members of struct stat are not filled
26285 * configure.ac (AC_CHECK_MEMBERS): Remove struct stat.st_flags,
41540 Cleanup struct stat.st_flags decoding.
41541 There are no symbolic constants defined for struct stat.st_flags,
41546 Decode struct stat.st_flags as unsigned int.
/external/python/cpython2/Misc/
DHISTORY1498 - Patch #1212117: os.stat().st_flags is now accessible as an attribute

12