OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fileThread
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/fileapi/
FileThread.cpp
35
#include "
FileThread
.h"
42
FileThread
::
FileThread
()
48
FileThread
::~
FileThread
()
53
bool
FileThread
::start()
58
m_threadID = createThread(
FileThread
::fileThreadStart, this, "WebCore: File");
62
void
FileThread
::stop()
67
void
FileThread
::postTask(PassOwnPtr<Task> task)
75
bool operator()(
FileThread
::Task* task) const { return task->instance() == m_instance;
[
all
...]
FileStreamProxy.cpp
40
#include "
FileThread
.h"
62
proxy->
fileThread
()->postTask(createFileThreadTask(proxy.get(), &FileStreamProxy::startOnFileThread));
71
FileThread
* FileStreamProxy::
fileThread
()
74
ASSERT(m_context->
fileThread
());
75
return m_context->
fileThread
();
97
fileThread
()->unscheduleTasks(m_stream.get());
98
fileThread
()->postTask(createFileThreadTask(this, &FileStreamProxy::stopOnFileThread));
121
fileThread
()->postTask(createFileThreadTask(this, &FileStreamProxy::getSizeOnFileThread, path, expectedModificationTime));
138
fileThread
()->postTask(createFileThreadTask(this, &FileStreamProxy::openForReadOnFileThread, path, offset, le (…)
[
all
...]
/external/webkit/Source/WebCore/dom/
ScriptExecutionContext.cpp
41
#include "
FileThread
.h"
402
FileThread
* ScriptExecutionContext::
fileThread
()
405
m_fileThread =
FileThread
::create();
Completed in 45 milliseconds