/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/connector/ |
H A D | mod.rs | 217 let fchown = self.config.fchown.clone(); in connect() localVariable 225 if let Some(fchown) = fchown { in connect() 226 let _ = stream.fchown(fchown.uid, fchown.gid); in connect() 261 fchown, in connect() 286 #[cfg(all(target_os = "linux", feature = "ylong_base", feature = "__tls"))] fchown: Option< in https_connect() 292 if let Some(fchown) = fchown { in https_connect() 293 let _ = tcp.fchown(fchown.uid, fchown.gid); in https_connect()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/config/ |
H A D | mod.rs | 34 mod fchown; module 36 pub(crate) use fchown::FchownConfig;
|
H A D | connector.rs | 27 pub(crate) fchown: Option<FchownConfig>,
|
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.1.5.2/ |
H A D | changelogs-filemanagement.md | 3 ## cl.filemanagement.1 chmod、fchmod、chown、fchown、lchown同异步接口功能不可用 24 | @ohos.fileio | **function** fchown(fd: number, uid: number, gid: number): Promise<void> |… 25 | @ohos.fileio | **function** fchown(fd: number, uid: number, gid: number, callback: AsyncC…
|
/ohos5.0/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() method 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 fchown() method 594 self.source.fchown(uid, gid) in fchown()
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.1.5.2/ |
H A D | changelogs-filemanagement.md | 3 ## cl.filemanagement.1 chmod, fchmod, chown, fchown, and lchown Function Unavailable 24 | @ohos.fileio | **function** fchown(fd: number, uid: number, gid: number): Promise<void> |… 25 | @ohos.fileio | **function** fchown(fd: number, uid: number, gid: number, callback: AsyncC…
|
/ohos5.0/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() method 48 syscall!(fchown(self.get_fd(), uid, gid))?; in fchown()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ |
H A D | client.rs | 283 fchown: Option<FchownConfig>, field 310 fchown: None, in new() 398 self.fchown = Some(FchownConfig::new(uid, gid)); in sockets_owner() 509 fchown: self.fchown, in build()
|
/ohos5.0/base/startup/init/services/modules/seccomp/seccomp_policy/ |
H A D | updater.seccomp.policy | 68 fchown;arm64 69 fchown;riscv64
|
H A D | app.seccomp.policy | 84 fchown;arm64 85 fchown;riscv64
|
H A D | system.seccomp.policy | 81 fchown;arm64 82 fchown;riscv64
|
/ohos5.0/build/config/components/init/seccomp/seccomp_policy/ |
H A D | updater.seccomp.policy | 68 fchown;arm64 69 fchown;riscv64
|
H A D | app.seccomp.policy | 84 fchown;arm64 85 fchown;riscv64
|
H A D | system.seccomp.policy | 81 fchown;arm64 82 fchown;riscv64
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.1-Release/ |
H A D | js-apidiff-file-management.md | 45 | ohos.fileio | fileIO | fchown(fd: number, uid: number, gid: number): Promise\<void>;<br>fchown(fd…
|
/ohos5.0/base/tee/tee_client/services/tlogcat/src/ |
H A D | tarzip.c | 187 ret = fchown(fd, (uid_t)-1, pathGroup); in OpenZipFile()
|
/ohos5.0/docs/en/release-notes/api-diff/v3.1-Release/ |
H A D | js-apidiff-file-management.md | 45 | ohos.fileio | fileIO | fchown(fd: number, uid: number, gid: number): Promise\<void>;<br>fchown(fd…
|
/ohos5.0/base/inputmethod/imf/seccomp_policy/ |
H A D | imf_ext_secure_mode.seccomp.policy | 78 fchown;arm64
|
/ohos5.0/foundation/multimedia/ringtone_library/services/utils/src/ |
H A D | ringtone_file_utils.cpp | 452 if (fchown(dest, fst.st_uid, fst.st_gid) == 0 && in CopyFileUtil()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-core-file-kit/ |
H A D | js-apis-fileio.md | 2751 ## fileio.fchown<sup>7+</sup> 2753 fchown(fd: number, uid: number, gid: number): Promise<void> 2784 fileio.fchown(fd, stat.uid, stat.gid).then(() => { 2792 ## fileio.fchown<sup>7+</sup> 2794 fchown(fd: number, uid: number, gid: number, callback: AsyncCallback<void>): void 2820 fileio.fchown(fd, stat.uid, stat.gid, (err: BusinessError) => {
|
/ohos5.0/foundation/filemanagement/file_api/interfaces/kits/js/ |
H A D | BUILD.gn | 89 "src/mod_fileio/properties/fchown.cpp",
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta5/ |
H A D | js-apidiff-file-management.md | 280 …br>方法 or 属性:function fchown(fd: number, uid: number, gid: number): Promise<void>;<br>废弃版本:N/A|类名:f… 281 …:function fchown(fd: number, uid: number, gid: number, callback: AsyncCallback<void>): void;<br>废弃…
|
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/media_library_helper/src/ |
H A D | media_file_utils.cpp | 607 if (fchown(dest, fst.st_uid, fst.st_gid) == E_SUCCESS && in CopyFileUtil()
|
/ohos5.0/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fileio/properties/ |
H A D | prop_n_exporter.cpp | 330 int ret = fchown(fd, owner, group); in FchownSync()
|