Home
last modified time | relevance | path

Searched refs:RetainedObjectInfo (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/v8/include/
Dv8-profiler.h398 typedef RetainedObjectInfo* (*WrapperInfoCallback)
511 void SetRetainedObjectInfo(UniqueId id, RetainedObjectInfo* info);
545 class V8_EXPORT RetainedObjectInfo { // NOLINT
551 virtual bool IsEquivalent(RetainedObjectInfo* other) = 0;
586 RetainedObjectInfo() {} in RetainedObjectInfo() function
587 virtual ~RetainedObjectInfo() {} in ~RetainedObjectInfo()
590 RetainedObjectInfo(const RetainedObjectInfo&);
591 RetainedObjectInfo& operator=(const RetainedObjectInfo&);
Dv8.h4237 class RetainedObjectInfo; variable
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DRetainedObjectInfo.h38 class RetainedObjectInfo : public v8::RetainedObjectInfo {
DRetainedDOMInfo.h42 class RetainedDOMInfo FINAL : public RetainedObjectInfo {
47 virtual bool IsEquivalent(v8::RetainedObjectInfo* other) OVERRIDE;
DRetainedDOMInfo.cpp54 bool RetainedDOMInfo::IsEquivalent(v8::RetainedObjectInfo* other) in IsEquivalent()
61 …return static_cast<blink::RetainedObjectInfo*>(other)->GetEquivalenceClass() == this->GetEquivalen… in IsEquivalent()
Dv8.gypi52 'RetainedObjectInfo.h',
DScriptProfiler.cpp245 static v8::RetainedObjectInfo* retainedDOMInfo(uint16_t classId, v8::Handle<v8::Value> wrapper) in retainedDOMInfo()
/external/chromium_org/v8/src/
Dglobal-handles.h45 v8::RetainedObjectInfo* info;
84 ObjectGroupRetainerInfo(UniqueId id, RetainedObjectInfo* info) in ObjectGroupRetainerInfo()
96 RetainedObjectInfo* info;
206 v8::RetainedObjectInfo* info);
216 void SetRetainedObjectInfo(UniqueId id, RetainedObjectInfo* info);
Dheap-profiler.h57 v8::RetainedObjectInfo* ExecuteWrapperClassCallback(uint16_t class_id,
59 void SetRetainedObjectInfo(UniqueId id, RetainedObjectInfo* info);
Dheap-snapshot-generator.h224 SnapshotObjectId GenerateId(v8::RetainedObjectInfo* info);
483 List<HeapObject*>* GetListMaybeDisposeInfo(v8::RetainedObjectInfo* info);
484 void SetNativeRootReference(v8::RetainedObjectInfo* info);
487 v8::RetainedObjectInfo* info);
490 static uint32_t InfoHash(v8::RetainedObjectInfo* info) { in InfoHash()
496 (reinterpret_cast<v8::RetainedObjectInfo*>(key1))->IsEquivalent( in RetainedInfosMatch()
497 reinterpret_cast<v8::RetainedObjectInfo*>(key2)); in RetainedInfosMatch()
Dheap-profiler.cc57 v8::RetainedObjectInfo* HeapProfiler::ExecuteWrapperClassCallback( in ExecuteWrapperClassCallback()
169 RetainedObjectInfo* info) { in SetRetainedObjectInfo()
Dheap-snapshot-generator.cc696 SnapshotObjectId HeapObjectsMap::GenerateId(v8::RetainedObjectInfo* info) { in GenerateId()
2278 v8::RetainedObjectInfo* info = reinterpret_cast<v8::RetainedObjectInfo*>(ptr); in AllocateEntry()
2316 v8::RetainedObjectInfo* info = in ~NativeObjectsExplorer()
2317 reinterpret_cast<v8::RetainedObjectInfo*>(p->key); in ~NativeObjectsExplorer()
2326 v8::RetainedObjectInfo* info = in ~NativeObjectsExplorer()
2327 reinterpret_cast<v8::RetainedObjectInfo*>(p->value); in ~NativeObjectsExplorer()
2395 v8::RetainedObjectInfo* info) { in GetListMaybeDisposeInfo()
2416 v8::RetainedObjectInfo* info = in IterateAndExtractReferences()
2417 reinterpret_cast<v8::RetainedObjectInfo*>(p->key); in IterateAndExtractReferences()
2432 class NativeGroupRetainedObjectInfo : public v8::RetainedObjectInfo {
[all …]
Dglobal-handles.cc818 v8::RetainedObjectInfo* info) { in AddObjectGroup()
843 RetainedObjectInfo* info) { in SetRetainedObjectInfo()
953 RetainedObjectInfo* info = NULL; in ComputeObjectGroupsAndImplicitReferences()
Dapi.cc7421 RetainedObjectInfo* info) { in SetRetainedObjectInfo()
/external/chromium_org/v8/test/cctest/
Dtest-global-handles.cc52 class TestRetainedObjectInfo : public v8::RetainedObjectInfo {
63 virtual bool IsEquivalent(v8::RetainedObjectInfo* other) { in IsEquivalent()
Dtest-mark-compact.cc358 class TestRetainedObjectInfo : public v8::RetainedObjectInfo {
369 virtual bool IsEquivalent(v8::RetainedObjectInfo* other) { in IsEquivalent()
Dtest-heap-profiler.cc1386 class TestRetainedObjectInfo : public v8::RetainedObjectInfo {
1406 virtual bool IsEquivalent(RetainedObjectInfo* other) { in IsEquivalent()
1416 static v8::RetainedObjectInfo* WrapperInfoCallback( in WrapperInfoCallback()