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:ngtcp2_balloc
(Results
1 - 3
of
3
) sorted by relevance
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H
A
D
ngtcp2_balloc.h
46
*
ngtcp2_balloc
is a custom memory allocator. It allocates |blklen|
50
typedef struct
ngtcp2_balloc
{
struct
59
}
ngtcp2_balloc
;
typedef
65
void ngtcp2_balloc_init(
ngtcp2_balloc
*balloc, size_t blklen,
71
void ngtcp2_balloc_free(
ngtcp2_balloc
*balloc);
83
int ngtcp2_balloc_get(
ngtcp2_balloc
*balloc, void **pbuf, size_t n);
89
void ngtcp2_balloc_clear(
ngtcp2_balloc
*balloc);
H
A
D
ngtcp2_balloc.c
25
#include "
ngtcp2_balloc
.h"
31
void ngtcp2_balloc_init(
ngtcp2_balloc
*balloc, size_t blklen,
in ngtcp2_balloc_init()
41
void ngtcp2_balloc_free(
ngtcp2_balloc
*balloc) {
in ngtcp2_balloc_free()
49
void ngtcp2_balloc_clear(
ngtcp2_balloc
*balloc) {
in ngtcp2_balloc_clear()
61
int ngtcp2_balloc_get(
ngtcp2_balloc
*balloc, void **pbuf, size_t n) {
in ngtcp2_balloc_get()
H
A
D
ngtcp2_objalloc.h
34
#include "
ngtcp2_balloc
.h"
40
* ngtcp2_objalloc combines
ngtcp2_balloc
and ngtcp2_opl, and provides
45
ngtcp2_balloc
balloc;
Completed in 3 milliseconds