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:UDPWrapBase
(Results
1 - 3
of
3
) sorted by relevance
/third_party/node/src/
H
A
D
udp_wrap.h
35
class
UDPWrapBase
;
37
// A listener that can be attached to an `
UDPWrapBase
` object and generally
69
inline
UDPWrapBase
* udp() const { return wrap_; }
in udp()
72
UDPWrapBase
* wrap_ = nullptr;
74
friend class
UDPWrapBase
;
77
class
UDPWrapBase
{
class
79
// While
UDPWrapBase
itself does not extend from HandleWrap, classes
85
virtual ~
UDPWrapBase
();
108
static
UDPWrapBase
* FromObject(v8::Local<v8::Object> obj);
119
public
UDPWrapBase
,
[all...]
H
A
D
udp_wrap.cc
106
UDPWrapBase
::~
UDPWrapBase
() {
in ~UDPWrapBase()
110
UDPListener*
UDPWrapBase
::listener() const {
in listener()
115
void
UDPWrapBase
::set_listener(UDPListener* listener) {
in set_listener()
125
UDPWrapBase
*
UDPWrapBase
::FromObject(Local<Object> obj) {
in FromObject()
126
CHECK_GT(obj->InternalFieldCount(),
UDPWrapBase
::kUDPWrapBaseField);
in FromObject()
127
return static_cast<
UDPWrapBase
*>(
in FromObject()
128
obj->GetAlignedPointerFromInternalField(
UDPWrapBase
::kUDPWrapBaseField));
in FromObject()
131
void
UDPWrapBase
[all...]
H
A
D
js_udp_wrap.cc
27
class JSUDPWrap final : public
UDPWrapBase
, public AsyncWrap {
59
kUDPWrapBaseField, static_cast<
UDPWrapBase
*>(this));
in JSUDPWrap()
206
->SetInternalFieldCount(
UDPWrapBase
::kUDPWrapBaseField + 1);
in Initialize()
209
UDPWrapBase
::AddMethods(env, t);
in Initialize()
Completed in 3 milliseconds