Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:try_clone
(Results
1 - 12
of
12
) sorted by relevance
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/unix/tcp/
H
A
D
stream.rs
44
pub fn
try_clone
(&self) -> io::Result<Self> {
in try_clone()
functions
46
inner: self.inner.
try_clone
()?,
in try_clone()
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/unix/uds/
H
A
D
datagram.rs
110
/// let sock_copy = socket.
try_clone
().expect("
try_clone
() fail");
114
pub fn
try_clone
(&self) -> io::Result<UnixDatagram> {
in try_clone()
functions
115
Ok(Self::from_std(self.inner.
try_clone
()?))
in try_clone()
316
let sender2 = sender.
try_clone
().unwrap();
in ut_uds_datagram_pair()
H
A
D
stream.rs
85
/// let sock_copy = socket.
try_clone
().expect("
try_clone
() fail");
89
pub fn
try_clone
(&self) -> io::Result<UnixStream> {
in try_clone()
functions
90
Ok(Self::from_std(self.inner.
try_clone
()?))
in try_clone()
268
let sender2 = sender.
try_clone
().unwrap();
in ut_uds_stream_pair()
H
A
D
listener.rs
122
/// let listener_copy = listener.
try_clone
().expect("
try_clone
failed");
126
pub fn
try_clone
(&self) -> io::Result<UnixListener> {
in try_clone()
functions
127
Ok(Self::from_std(self.inner.
try_clone
()?))
in try_clone()
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/tcp/
H
A
D
stream.rs
61
pub fn
try_clone
(&self) -> io::Result<Self> {
in try_clone()
functions
63
inner: self.inner.
try_clone
()?,
in try_clone()
/commonlibrary/rust/ylong_runtime/ylong_io/tests/
H
A
D
tcp_test.rs
55
let mut read_stream = stream.
try_clone
().unwrap();
in sdv_tcp_server()
128
let mut read_stream = stream.
try_clone
().unwrap();
in sdv_tcp_server_vectored()
H
A
D
uds_test.rs
148
let sender2 = sender.
try_clone
().unwrap();
in sdv_uds_send_recv()
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/unix/
H
A
D
waker.rs
91
let selector = selector.
try_clone
()?;
H
A
D
kqueue.rs
128
pub fn
try_clone
(&self) -> io::Result<Selector> {
in try_clone()
functions
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/signal/unix/
H
A
D
registry.rs
147
self.stream.receiver.
try_clone
()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/fs/
H
A
D
async_file.rs
336
/// async fn
try_clone
() -> std::io::Result<()> {
in fmt()
338
/// let file_copy = f.
try_clone
().await?;
in fmt()
342
pub async fn
try_clone
(&self) -> io::Result<File> {
in fmt()
344
let file = async_op(move || file.
try_clone
()).await?;
in fmt()
703
/// UT test for `
try_clone
`
708
/// 2. Creates a new File instance with `
try_clone
()`, check result is
717
let res = file.
try_clone
().await;
in ut_fs_file_try_clone()
/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/
H
A
D
async_fs.rs
314
/// SDV test for `
try_clone
`
319
/// 2. Creates a new File instance with `
try_clone
()`, check result is Ok(()).
326
let res = file.
try_clone
().await;
in sdv_async_fs_try_clone()
339
/// 2. Creates a new File instance with `
try_clone
()`, check result is Ok(()).
Completed in 8 milliseconds