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:SiblingGroup
(Results
1 - 2
of
2
) sorted by relevance
/third_party/node/src/
H
A
D
node_messaging.h
121
class
SiblingGroup
final : public std::enable_shared_from_this<
SiblingGroup
> {
123
// Named
SiblingGroup
, Used for one-to-many BroadcastChannels.
124
static std::shared_ptr<
SiblingGroup
> Get(const std::string& name);
126
// Anonymous
SiblingGroup
, Used for one-to-one MessagePort pairs.
127
SiblingGroup
() = default;
128
explicit
SiblingGroup
(const std::string& name);
129
~
SiblingGroup
();
160
std::unordered_map<std::string, std::weak_ptr<
SiblingGroup
>>;
213
std::shared_ptr<
SiblingGroup
> group
[all...]
H
A
D
node_messaging.cc
595
auto group = std::make_shared<
SiblingGroup
>();
in Entangle()
683
std::shared_ptr<
SiblingGroup
> sibling_group) {
in New()
1329
std::shared_ptr<
SiblingGroup
>
SiblingGroup
::Get(const std::string& name) {
in Get()
1330
Mutex::ScopedLock lock(
SiblingGroup
::groups_mutex_);
in Get()
1331
std::shared_ptr<
SiblingGroup
> group;
in Get()
1334
group = std::make_shared<
SiblingGroup
>(name);
in Get()
1342
void
SiblingGroup
::CheckSiblingGroup(const std::string& name) {
in CheckSiblingGroup()
1343
Mutex::ScopedLock lock(
SiblingGroup
::groups_mutex_);
in CheckSiblingGroup()
1349
SiblingGroup
function in node::worker::SiblingGroup
[all...]
Completed in 4 milliseconds