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:address
(Results
1 - 6
of
6
) sorted by relevance
/commonlibrary/ets_utils/js_util_module/util/
H
A
D
js_base64.h
73
void FreeMemory(unsigned char *&
address
);
74
void FreeMemory(char *&
address
);
H
A
D
js_base64.cpp
773
void FreeMemory(char *&
address
)
in FreeMemory()
argument
775
if (
address
!= nullptr) {
in FreeMemory()
776
delete[]
address
;
in FreeMemory()
777
address
= nullptr;
in FreeMemory()
780
void FreeMemory(unsigned char *&
address
)
in FreeMemory()
argument
782
if (
address
!= nullptr) {
in FreeMemory()
783
delete[]
address
;
in FreeMemory()
784
address
= nullptr;
in FreeMemory()
H
A
D
native_module_util.cpp
180
static void FreeMemory(napi_value *
address
)
in FreeMemory()
argument
182
delete[]
address
;
in FreeMemory()
183
address
= nullptr;
in FreeMemory()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/
H
A
D
slab.rs
111
/// Get the number of `page` pages at the current
address
212
/// Used to get the reference stored at the given
address
407
// Get the first
address
of the current `page`
in index_for()
410
// Get the current `slot`
address
in index_for()
549
/// 1. Allocate container space and deposit data, get the data
address
,and
551
/// 2. Create invalid data
address
to see if data can be obtained.
575
let mut
address
= Vec::new();
in ut_slab_compact()
variables
581
address
.push((addr, foo));
in ut_slab_compact()
584
assert_eq!(slab.get(
address
[32].0).unwrap().id.load(SeqCst), 32);
in ut_slab_compact()
588
let mut
address
in ut_slab_compact()
variables
[all...]
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H
A
D
proxy.rs
43
///
address
of request.
47
/// - Manage the uri of destination
address
.
204
let
address
= match Uri::from_bytes(host.as_bytes()) {
211
match
address
.host().unwrap().as_str().parse::<IpAddr>() {
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/
H
A
D
udp.rs
89
/// Creates a new UDP socket and attempts to bind it to the
address
provided
129
/// Sets the default
address
for the UdpSocket and limits packets to
130
/// those that are read via recv from the specific
address
.
182
"addr could not resolve to any
address
",
186
/// Returns the local
address
that this socket is bound to.
206
/// Sends data on the socket to the given
address
. On success, returns the
241
"addr could not resolve to
address
",
246
/// Attempts to send data on the socket to the given
address
.
279
/// Attempts to send data on the socket to a given
address
.
325
/// * `Ok((n, addr))` n is the number of bytes received, addr is the
address
[all...]
Completed in 8 milliseconds