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:SourceFd
(Results
1 - 5
of
5
) sorted by relevance
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/unix/
H
A
D
source_fd.rs
19
///
SourceFd
allows any type of FD to register with Poll.
21
pub struct
SourceFd
<'a>(pub &'a RawFd);
structure names
23
impl<'a> Source for
SourceFd
<'a> {
44
use crate::sys::{socket,
SourceFd
};
46
/// UT cases for debug info of
SourceFd
.
49
/// 1. Create a
SourceFd
50
/// 2. Reregister the
SourceFd
54
let source_fd =
SourceFd
(&sock);
in ut_source_fd_debug_info()
57
assert!(fmt.contains("
SourceFd
("));
in ut_source_fd_debug_info()
H
A
D
mod.rs
58
pub use source_fd::
SourceFd
;
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/sys/unix/
H
A
D
pipe.rs
19
use ylong_io::sys::
SourceFd
;
73
SourceFd
(&self.as_raw_fd()).register(selector, token, interests)
in register()
77
SourceFd
(&self.as_raw_fd()).deregister(selector)
in deregister()
/commonlibrary/rust/ylong_runtime/ylong_io/src/
H
A
D
lib.rs
34
pub use crate::sys::
SourceFd
;
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/pty_process/
H
A
D
sys.rs
22
use ylong_io::sys::
SourceFd
;
159
SourceFd
(&self.get_fd()).register(selector, token, interests)
in register()
163
SourceFd
(&self.get_fd()).deregister(selector)
in deregister()
Completed in 2 milliseconds