OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FileThread
(Results
1 - 2
of
2
) 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
...]
FileThread.h
45
class
FileThread
: public ThreadSafeRefCounted<
FileThread
> {
47
static PassRefPtr<
FileThread
> create()
49
return adoptRef(new
FileThread
());
52
~
FileThread
();
73
FileThread
();
79
RefPtr<
FileThread
> m_selfRef;
Completed in 24 milliseconds