OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sampleLogFilePath
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebKit2/Shared/
WebMemorySampler.cpp
64
void WebMemorySampler::start(const SandboxExtension::Handle& sampleLogFileHandle, const String&
sampleLogFilePath
, const double interval)
70
if (
sampleLogFilePath
.isEmpty()) {
75
initializeSandboxedLogFile(sampleLogFileHandle,
sampleLogFilePath
);
124
void WebMemorySampler::initializeSandboxedLogFile(const SandboxExtension::Handle& sampleLogSandboxHandle, const String&
sampleLogFilePath
)
129
m_sampleLogFilePath =
sampleLogFilePath
;
/external/webkit/Source/WebKit2/UIProcess/
WebContext.cpp
314
String
sampleLogFilePath
= String::format("WebProcess%llu", static_cast<uint64_t>(now));
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));
702
sampleLogFilePath
= SandboxExtension::createHandleForTemporaryFile(
sampleLogFilePath
, SandboxExtension::WriteOnly, sampleLogSandboxHandle);
704
sendToAllProcesses(Messages::WebProcess::StartMemorySampler(sampleLogSandboxHandle,
sampleLogFilePath
, interval));
/external/webkit/Source/WebKit2/WebProcess/
WebProcess.cpp
799
void WebProcess::startMemorySampler(const SandboxExtension::Handle& sampleLogFileHandle, const String&
sampleLogFilePath
, const double interval)
802
WebMemorySampler::shared()->start(sampleLogFileHandle,
sampleLogFilePath
, interval);
Completed in 590 milliseconds