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:Channel
(Results
1 - 3
of
3
) sorted by relevance
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/
H
A
D
mod.rs
35
pub(crate) struct
Channel
<C: Container> {
40
impl<C: Container>
Channel
<C> {
impls
41
fn new(chan: C) ->
Channel
<C> {
in new()
42
Channel
{
in new()
50
let channel = Arc::new(
Channel
::new(chan));
55
inner: Arc<
Channel
<C>>,
68
fn new(channel: Arc<
Channel
<C>>) -> Tx<C> {
in new()
92
inner: Arc<
Channel
<C>>,
96
fn new(channel: Arc<
Channel
<C>>) -> Rx<C> {
in new()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/
H
A
D
oneshot.rs
59
///
Channel
is closed.
85
let channel = Arc::new(
Channel
::new());
in channel()
137
channel: Arc<
Channel
<T>>,
271
channel: Arc<
Channel
<T>>,
409
struct
Channel
<T> {
structure names
421
impl<T>
Channel
<T> {
impls
422
fn new() ->
Channel
<T> {
in new()
423
Channel
{
in new()
445
unsafe impl<T: Send> Send for
Channel
<T> {}
446
unsafe impl<T: Send> Sync for
Channel
<
[all...]
H
A
D
watch.rs
53
let channel = Arc::new(
Channel
::new(value));
in channel()
85
channel: Arc<
Channel
<T>>,
275
channel: Arc<
Channel
<T>>,
536
struct
Channel
<T> {
structure names
543
impl<T>
Channel
<T> {
impls
544
fn new(value: T) ->
Channel
<T> {
in new()
545
Channel
{
in new()
559
impl<T: Debug> Debug for
Channel
<T> {
562
f.debug_struct("
Channel
")
Completed in 2 milliseconds