HomeSort by relevance Sort by last modified time
    Searched refs:WebMemorySampler (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebKit2/Shared/
WebMemorySampler.h 72 class WebMemorySampler {
73 WTF_MAKE_NONCOPYABLE(WebMemorySampler);
75 static WebMemorySampler* shared();
82 WebMemorySampler();
83 ~WebMemorySampler();
89 void sampleTimerFired(WebCore::Timer<WebMemorySampler>*);
90 void stopTimerFired(WebCore::Timer<WebMemorySampler>*);
101 WebCore::Timer<WebMemorySampler> m_sampleTimer;
102 WebCore::Timer<WebMemorySampler> m_stopTimer;
WebMemorySampler.cpp 27 #include "WebMemorySampler.h"
38 WebMemorySampler* WebMemorySampler::shared()
40 static WebMemorySampler* sharedMemorySampler;
42 sharedMemorySampler = new WebMemorySampler();
46 WebMemorySampler::WebMemorySampler()
48 , m_sampleTimer(this, &WebMemorySampler::sampleTimerFired)
49 , m_stopTimer(this, &WebMemorySampler::stopTimerFired)
55 void WebMemorySampler::start(const double interval)
    [all...]
  /external/webkit/Source/WebKit2/Shared/mac/
WebMemorySampler.mac.mm 27 #import "WebMemorySampler.h"
52 SystemMallocStats WebMemorySampler::sampleSystemMalloc() const
90 size_t WebMemorySampler::sampleProcessCommittedBytes() const
98 String WebMemorySampler::processName() const
106 WebMemoryStatistics WebMemorySampler::sampleWebKit() const
  /external/webkit/Source/WebKit2/UIProcess/
WebContext.cpp 49 #include "WebMemorySampler.h"
695 WebMemorySampler::shared()->start(interval);
714 WebMemorySampler::shared()->stop();
  /external/webkit/Source/WebKit2/WebProcess/
WebProcess.cpp 45 #include "WebMemorySampler.h"
802 WebMemorySampler::shared()->start(sampleLogFileHandle, sampleLogFilePath, interval);
809 WebMemorySampler::shared()->stop();

Completed in 272 milliseconds