Searched refs:sampleLogFilePath (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DWebMemorySampler.cpp64 void WebMemorySampler::start(const SandboxExtension::Handle& sampleLogFileHandle, const String& sampleLogFilePath, const double interval) argument
70 if (sampleLogFilePath.isEmpty()) {
75 initializeSandboxedLogFile(sampleLogFileHandle, sampleLogFilePath);
124 void WebMemorySampler::initializeSandboxedLogFile(const SandboxExtension::Handle& sampleLogSandboxHandle, const String& sampleLogFilePath) argument
129 m_sampleLogFilePath = sampleLogFilePath;
/external/webkit/Source/WebKit2/UIProcess/
H A DWebContext.cpp314 String sampleLogFilePath = String::format("WebProcess%llu", static_cast<uint64_t>(now)); local
315 sampleLogFilePath = SandboxExtension::createHandleForTemporaryFile(sampleLogFilePath, SandboxExtension::WriteOnly, sampleLogSandboxHandle);
317 m_process->send(Messages::WebProcess::StartMemorySampler(sampleLogSandboxHandle, sampleLogFilePath, m_memorySamplerInterval), 0);
701 String sampleLogFilePath = String::format("WebProcess%llu", static_cast<uint64_t>(now)); local
702 sampleLogFilePath = SandboxExtension::createHandleForTemporaryFile(sampleLogFilePath, SandboxExtension::WriteOnly, sampleLogSandboxHandle);
704 sendToAllProcesses(Messages::WebProcess::StartMemorySampler(sampleLogSandboxHandle, sampleLogFilePath, interval));
/external/webkit/Source/WebKit2/WebProcess/
H A DWebProcess.cpp799 void WebProcess::startMemorySampler(const SandboxExtension::Handle& sampleLogFileHandle, const String& sampleLogFilePath, const double interval) argument
802 WebMemorySampler::shared()->start(sampleLogFileHandle, sampleLogFilePath, interval);

Completed in 333 milliseconds