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:allocator
(Results
1 - 3
of
3
) sorted by relevance
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/
H
A
D
driver.rs
143
allocator
: Slab<ScheduleIO>,
204
let
allocator
= slab.handle();
207
allocator
,
300
let
allocator
= slab.handle();
in initialize()
303
allocator
,
in initialize()
353
self.
allocator
.allocate().ok_or_else(|| {
in allocate_schedule_io_pair()
/commonlibrary/c_utils/base/src/
H
A
D
parcel.cpp
36
Parcel::Parcel(Allocator *
allocator
)
in Parcel()
argument
38
if (
allocator
!= nullptr) {
in Parcel()
39
allocator_ =
allocator
;
in Parcel()
238
bool Parcel::SetAllocator(Allocator *
allocator
)
in SetAllocator()
argument
240
if ((
allocator
== nullptr) || (allocator_ ==
allocator
)) {
in SetAllocator()
249
void *newData =
allocator
->Alloc(dataSize_);
in SetAllocator()
256
allocator
->Dealloc(newData);
in SetAllocator()
265
allocator_ =
allocator
;
in SetAllocator()
/commonlibrary/c_utils/base/include/
H
A
D
parcel.h
22
*
allocator
are provided.
123
* @brief Defines a memory
allocator
for data in `Parcel`.
137
* @brief Provides the default implementation for a memory
allocator
.
139
* @note A non-default
allocator
for a parcel must be specified manually.
181
* @brief Creates a `Parcel` object with the specified memory
allocator
.
183
* @param
allocator
Indicates the memory
allocator
.
185
explicit Parcel(Allocator *
allocator
);
258
* @note The memory
allocator
will try to reallocate the data region
690
* @brief Sets a memory
allocator
fo
[all...]
Completed in 5 milliseconds