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:space_name
(Results
1 - 8
of
8
) sorted by relevance
/third_party/node/test/parallel/
H
A
D
test-worker-resource-limits.js
44
for (const {
space_name
, space_size } of v8.getHeapSpaceStatistics()) {
45
if (
space_name
=== 'new_space') {
49
} else if (
space_name
=== 'old_space') {
52
} else if (
space_name
=== 'code_space') {
/third_party/node/deps/v8/tools/debug_helper/
H
A
D
gen-heap-constants.py
68
for offset,
space_name
in v8heapconst.HEAP_FIRST_PAGES.items():
69
if (
space_name
in expected_spaces):
70
out = out + ' if (heap_addresses->' +
space_name
+ '_first_page == 0) {\n'
71
out = out + ' heap_addresses->' +
space_name
+ \
/third_party/node/deps/v8/include/v8-include/
H
A
D
v8-statistics.h
165
const char*
space_name
() { return space_name_; }
in space_name()
function in v8::HeapSpaceStatistics
/third_party/node/deps/v8/include/
H
A
D
v8-statistics.h
165
const char*
space_name
() { return space_name_; }
in space_name()
function in v8::HeapSpaceStatistics
/third_party/node/src/
H
A
D
node_v8.cc
260
writer->json_keyvalue("spaceName", heap_space_statistics.
space_name
());
in SetHeapStatistics()
428
heap_spaces[i] = String::NewFromUtf8(env->isolate(), s.
space_name
())
in Initialize()
H
A
D
env.cc
1721
if (strcmp(stats.
space_name
(), "new_space") == 0 ||
in NearHeapLimitCallback()
1722
strcmp(stats.
space_name
(), "new_large_object_space") == 0) {
in NearHeapLimitCallback()
H
A
D
node_report.cc
607
writer->json_objectstart(v8_heap_space_stats.
space_name
());
in PrintGCStatistics()
/third_party/node/lib/
H
A
D
v8.js
185
*
space_name
: string;
199
space_name
: kHeapSpaces[i],
Completed in 8 milliseconds