OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WorkerThread
(Results
1 - 9
of
9
) sorted by null
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/annotation/
WorkerThread.java
30
public @interface
WorkerThread
{
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
WorkerThread.java
31
public @interface
WorkerThread
{
/external/webkit/Source/WebCore/workers/
WorkerThread.cpp
31
#include "
WorkerThread
.h"
56
unsigned
WorkerThread
::m_threadCount = 0;
58
unsigned
WorkerThread
::workerThreadCount()
86
WorkerThread
::
WorkerThread
(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy)
96
WorkerThread
::~
WorkerThread
()
103
bool
WorkerThread
::start()
111
m_threadID = createThread(
WorkerThread
::workerThreadStart, this, "WebCore: Worker");
116
void*
WorkerThread
::workerThreadStart(void* thread
[
all
...]
WorkerThread.h
47
class
WorkerThread
: public RefCounted<
WorkerThread
> {
49
virtual ~
WorkerThread
();
68
WorkerThread
(const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerReportingProxy&);
79
// Static function executed as the core routine on the new thread. Passed a pointer to a
WorkerThread
object.
81
void*
workerThread
();
97
// Track the number of
WorkerThread
instances for use in layout tests.
/hardware/ril/mock-ril/src/cpp/
worker.cpp
34
void *
WorkerThread
::Work(void *param) {
35
WorkerThread
*t = (
WorkerThread
*)param;
42
bool
WorkerThread
::isRunning() {
43
DBG("
WorkerThread
::isRunning E");
45
DBG("
WorkerThread
::isRunning X ret_value=%d", ret_value);
49
WorkerThread
::
WorkerThread
() {
50
DBG("
WorkerThread
::
WorkerThread
E")
[
all
...]
worker.h
30
* 0) Extend
WorkerThread
creating a Worker method which
48
* 1) Create the
WorkerThread
.
53
class
WorkerThread
{
72
WorkerThread
();
74
virtual ~
WorkerThread
();
/external/chromium/base/threading/
worker_pool_posix.cc
53
class
WorkerThread
: public PlatformThread::Delegate {
55
WorkerThread
(const std::string& name_prefix, int idle_seconds_before_exit,
68
DISALLOW_COPY_AND_ASSIGN(
WorkerThread
);
71
void
WorkerThread
::ThreadMain() {
84
// The
WorkerThread
is non-joinable, so it deletes itself.
134
// The new PlatformThread will take ownership of the
WorkerThread
object,
136
WorkerThread
* worker =
137
new
WorkerThread
(name_prefix_, idle_seconds_before_exit_, this);
/development/tools/emulator/system/camera/
EmulatedCameraDevice.h
313
friend class
WorkerThread
;
314
class
WorkerThread
: public Thread {
321
inline explicit
WorkerThread
(EmulatedCameraDevice* camera_dev)
329
inline ~
WorkerThread
()
429
inline
WorkerThread
* getWorkerThread() const
443
sp<
WorkerThread
> mWorkerThread;
/packages/apps/Gallery/src/com/android/camera/
ImageLoader.java
113
private class
WorkerThread
implements Runnable {
152
Thread t = new Thread(new
WorkerThread
());
Completed in 1198 milliseconds