Lines Matching refs:ProfilerEventsProcessor
28 CpuSampler(Isolate* isolate, ProfilerEventsProcessor* processor) in CpuSampler()
45 ProfilerEventsProcessor* processor_;
48 ProfilerEventsProcessor::ProfilerEventsProcessor(Isolate* isolate, in ProfilerEventsProcessor() function in v8::internal::ProfilerEventsProcessor
61 ProfilerEventsProcessor::~ProfilerEventsProcessor() { in ~ProfilerEventsProcessor()
65 void ProfilerEventsProcessor::Enqueue(const CodeEventsContainer& event) { in Enqueue()
71 void ProfilerEventsProcessor::AddDeoptStack(Isolate* isolate, Address from, in AddDeoptStack()
83 void ProfilerEventsProcessor::AddCurrentStack(Isolate* isolate, in AddCurrentStack()
100 void ProfilerEventsProcessor::StopSynchronously() { in StopSynchronously()
106 bool ProfilerEventsProcessor::ProcessCodeEvent() { in ProcessCodeEvent()
126 ProfilerEventsProcessor::SampleProcessingResult
127 ProfilerEventsProcessor::ProcessOneSample() { in ProcessOneSample()
151 void ProfilerEventsProcessor::Run() { in Run()
197 void* ProfilerEventsProcessor::operator new(size_t size) { in operator new()
198 return AlignedAlloc(size, V8_ALIGNOF(ProfilerEventsProcessor)); in operator new()
202 void ProfilerEventsProcessor::operator delete(void* ptr) { in operator delete()
296 ProfilerEventsProcessor* test_processor) in CpuProfiler()
378 processor_.reset(new ProfilerEventsProcessor(isolate_, generator_.get(), in StartProcessorIfNotStarted()