Searched refs:gid (Results 1 - 9 of 9) sorted by relevance
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/config/ |
H A D | fchown.rs | 19 pub(crate) gid: gid_t, 23 pub(crate) fn new(uid: uid_t, gid: gid_t) -> Self { 24 Self { uid, gid }
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/tcp/ |
H A D | listener.rs | 224 pub fn fchown(&self, uid: uid_t, gid: gid_t) -> io::Result<()> { in fchown() 225 self.source.fchown(uid, gid) in fchown()
|
H A D | stream.rs | 593 pub fn fchown(&self, uid: uid_t, gid: gid_t) -> io::Result<()> { in fmt() 594 self.source.fchown(uid, gid) in fmt()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/pty_process/ |
H A D | command.rs | 411 /// let gid = cmd.uid(id); 429 /// let gid = cmd.gid(id); 432 pub fn gid(&mut self, id: u32) -> &mut PtyCommand { in gid() functions 433 self.command.gid(id); in gid() 447 /// let gid = cmd.arg0("/path"); 504 /// let gid = cmd.process_group(pgid);
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/ |
H A D | async_source.rs | 47 pub fn fchown(&self, uid: uid_t, gid: gid_t) -> io::Result<()> { in fchown() 48 syscall!(fchown(self.get_fd(), uid, gid))?; in fchown()
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ |
H A D | client.rs | 400 pub fn sockets_owner(mut self, uid: u32, gid: u32) -> Self { in sockets_owner() 401 self.fchown = Some(FchownConfig::new(uid, gid)); in sockets_owner()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/ |
H A D | command.rs | 534 pub fn gid(&mut self, id: u32) -> &mut Command { in gid() functions 535 self.std.gid(id); in gid()
|
/commonlibrary/ets_utils/js_sys_module/test/ |
H A D | test_process.cpp | 213 * @tc.desc: Test process gid. 221 int32_t gid = 0; in HWTEST_F() local 222 napi_get_value_int32(env, napiGid, &gid); in HWTEST_F() 224 if (gid >= 0) { in HWTEST_F() 379 * @tc.desc: Test process gid. 412 * @tc.desc: Test process gid. 435 * @tc.desc: Test process gid. 458 * @tc.desc: Test process gid.
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/connector/ |
H A D | mod.rs | 250 let _ = stream.fchown(fchown.uid, fchown.gid); in connect() 368 let _ = tcp.fchown(fchown.uid, fchown.gid);
|
Completed in 8 milliseconds