Home
last modified time | relevance | path

Searched refs:Uid (Results 1 – 18 of 18) sorted by relevance

/external/rust/crates/nix/src/
Dunistd.rs37 pub struct Uid(uid_t); struct
39 impl Uid { implementation
42 Uid(uid) in from_raw()
66 impl From<Uid> for uid_t {
67 fn from(uid: Uid) -> Self { in from()
72 impl fmt::Display for Uid { implementation
79 pub const ROOT: Uid = Uid(0);
627 fn chown_raw_ids(owner: Option<Uid>, group: Option<Gid>) -> (libc::uid_t, libc::gid_t) { in chown_raw_ids() argument
646 pub fn chown<P: ?Sized + NixPath>(path: &P, owner: Option<Uid>, group: Option<Gid>) -> Result<()> { in chown() argument
663 pub fn fchown(fd: RawFd, owner: Option<Uid>, group: Option<Gid>) -> Result<()> { in fchown() argument
[all …]
/external/rust/crates/nix/test/common/
Dmod.rs59 use nix::unistd::Uid;
61 if !Uid::current().is_root() {
/external/crosvm/sys_util/src/
Dlib.rs110 pub type Uid = libc::uid_t; typedef
176 pub fn geteuid() -> Uid { in geteuid()
190 pub fn chown(path: &CStr, uid: Uid, gid: Gid) -> Result<()> { in chown() argument
/external/squashfs-tools/RELEASE-READMEs/
DREADME-4.037 Uid and gid can be either specified as a decimal number, or by name.
/external/clang/include/clang/Basic/
DBuiltinsNVPTX.def285 BUILTIN(__nvvm_d2ui_rn, "Uid", "")
286 BUILTIN(__nvvm_d2ui_rz, "Uid", "")
287 BUILTIN(__nvvm_d2ui_rm, "Uid", "")
288 BUILTIN(__nvvm_d2ui_rp, "Uid", "")
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DTarWriter.cpp38 char Uid[8]; member
/external/llvm-project/llvm/lib/Support/
DTarWriter.cpp38 char Uid[8]; member
/external/llvm-project/llvm/lib/Target/VE/
DVEISelLowering.h104 unsigned Uid,
DVEISelLowering.cpp1444 unsigned Uid, MCContext &Ctx) const { in LowerCustomJumpTableEntry() argument
/external/llvm-project/llvm/unittests/Support/
DTarWriterTest.cpp24 char Uid[8]; member
/external/llvm-project/clang/include/clang/Basic/
DBuiltinsNVPTX.def294 BUILTIN(__nvvm_d2ui_rn, "Uid", "")
295 BUILTIN(__nvvm_d2ui_rz, "Uid", "")
296 BUILTIN(__nvvm_d2ui_rm, "Uid", "")
297 BUILTIN(__nvvm_d2ui_rp, "Uid", "")
/external/squashfs-tools/kernel/Documentation/filesystems/
Dsquashfs.txt172 3.5 Uid/gid lookup table
/external/rust/crates/nix/
DCHANGELOG.md276 `Uid::is_root`, `Uid::as_raw`, `Pid::as_raw`, and `PollFd::revents` now take
739 - Introduced wrapper types for `gid_t`, `pid_t`, and `uid_t` as `Gid`, `Pid`, and `Uid`
/external/rust/crates/nix/test/
Dtest_unistd.rs1026 let prev_fuid = setfsuid(Uid::from_raw(-1i32 as u32)); in test_setfsuid()
/external/e2fsprogs/ext2ed/
Dext2.descriptors77 __u16 i_uid; /* Owner Uid */
/external/squashfs-tools/
DRELEASE-README961 5.6 Uid/gid lookup table
/external/python/cpython2/Misc/NEWS.d/
D2.7.4rc1.rst870 Uid and gid values larger than 2**31 are supported now.
/external/python/cpython3/Misc/
DHISTORY5333 - Issue #4591: Uid and gid values larger than 2**31 are supported now.