Searched refs:space_name (Results 1 – 13 of 13) sorted by relevance
/third_party/node/deps/v8/tools/heap-layout/ |
D | heap-size-trend-viewer.mjs | 29 static getSizeTrendLineName(space_name) { argument 30 return space_name + ' size'; 33 static getAllocatedTrendSizeName(space_name) { argument 34 return space_name + ' allocated'; 38 const space_name = this.re_space_name.exec(trend_line_name)[0]; 39 return space_name; 102 for (const space_name of kSpaceNames) { 104 TrendLineHelper.getSizeTrendLineName(space_name)); 106 TrendLineHelper.getAllocatedTrendSizeName(space_name)); 124 for (const [space_name, pageinfos] of Object.entries(snapshot.data)) { [all …]
|
D | space-categories.mjs | 29 export function getColorFromSpaceName(space_name) { argument 30 const index = kSpaceNames.indexOf(space_name);
|
D | heap-layout-viewer.mjs | 66 for (const [space_name, pageinfos] of Object.entries(snapshot.data)) { 68 name: space_name, 141 color: getColorFromSpaceName(space_name),
|
D | trace-file-reader.mjs | 48 for (let space_name of kSpaceNames) { 49 snapshot.data[space_name] = [];
|
/third_party/node/test/parallel/ |
D | test-worker-resource-limits.js | 44 for (const { space_name, space_size } of v8.getHeapSpaceStatistics()) { property 45 if (space_name === 'new_space') { 49 } else if (space_name === 'old_space') { 52 } else if (space_name === 'code_space') {
|
D | test-v8-stats.js | 52 const actualHeapSpaceNames = heapSpaceStatistics.map((s) => s.space_name); 55 assert.strictEqual(typeof heapSpace.space_name, 'string');
|
/third_party/node/deps/v8/tools/debug_helper/ |
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/ |
D | v8-statistics.h | 165 const char* space_name() { return space_name_; } in space_name() function
|
/third_party/node/src/ |
D | node_v8.cc | 259 writer->json_keyvalue("spaceName", heap_space_statistics.space_name()); in SetHeapStatistics() 427 heap_spaces[i] = String::NewFromUtf8(env->isolate(), s.space_name()) in Initialize()
|
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()
|
D | node_report.cc | 607 writer->json_objectstart(v8_heap_space_stats.space_name()); in PrintGCStatistics()
|
/third_party/node/lib/ |
D | v8.js | 199 space_name: kHeapSpaces[i], property
|
/third_party/node/doc/api/ |
D | v8.md | 112 * `space_name` {string} 121 "space_name": "new_space", 128 "space_name": "old_space", 135 "space_name": "code_space", 142 "space_name": "map_space", 149 "space_name": "large_object_space",
|