OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SimpleThread
(Results
1 - 6
of
6
) sorted by null
/external/icu4c/test/intltest/
simplethread.h
12
class U_EXPORT
SimpleThread
15
SimpleThread
();
16
virtual ~
SimpleThread
();
simplethread.cpp
13
#include "
simplethread
.h"
98
SimpleThread
::
SimpleThread
()
101
SimpleThread
::~
SimpleThread
()
105
SimpleThread
::start()
109
SimpleThread
::run()
113
SimpleThread
::sleep(int32_t millis)
117
SimpleThread
::isRunning() {
147
// class
SimpleThread
Windows Implementatio
[
all
...]
/external/chromium/base/threading/
simple_thread.cc
13
SimpleThread
::
SimpleThread
(const std::string& name_prefix)
18
SimpleThread
::
SimpleThread
(const std::string& name_prefix,
24
SimpleThread
::~
SimpleThread
() {
25
DCHECK(HasBeenStarted()) << "
SimpleThread
was never started.";
26
DCHECK(HasBeenJoined()) << "
SimpleThread
destroyed without being Join()ed.";
29
void
SimpleThread
::Start() {
36
void
SimpleThread
::Join()
[
all
...]
simple_thread.h
19
// resources. You are also responsible for destructing the
SimpleThread
object.
20
// It is invalid to destroy a
SimpleThread
while it is running, or without
24
// Thread Safety: A
SimpleThread
is not completely thread safe. It is safe to
37
// // The
SimpleThread
object is still valid, however you may not call Join
56
// This is the base
SimpleThread
. You can derive from it and implement the
58
class BASE_API
SimpleThread
: public PlatformThread::Delegate {
74
// Create a
SimpleThread
. |options| should be used to manage any specific
78
explicit
SimpleThread
(const std::string& name_prefix);
79
SimpleThread
(const std::string& name_prefix, const Options& options);
81
virtual ~
SimpleThread
();
[
all
...]
/libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java
28
static class
SimpleThread
implements Runnable {
43
public
SimpleThread
(int d) {
51
st = new Thread(tg, new
SimpleThread
(1), "SimpleThread3", 1);
62
new Thread(tg, new
SimpleThread
(1), "SimpleThread3",
146
st = new Thread(new
SimpleThread
(5));
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java
26
static class
SimpleThread
implements Runnable {
41
public
SimpleThread
(int d) {
128
ct = new Thread(new
SimpleThread
(10));
138
Thread st1 = new Thread(new
SimpleThread
(1), "SimpleThread1");
162
st = new Thread(tg, new
SimpleThread
(1), "SimpleThread2");
180
st = new Thread(tg, new
SimpleThread
(1), "SimpleThread3");
213
st = new Thread(new
SimpleThread
(1), "SimpleThread4");
224
Thread t = new Thread(new
SimpleThread
(10));
244
st = new Thread(tg, new
SimpleThread
(1), "SimpleThread5");
306
SimpleThread
st1 = null
[
all
...]
Completed in 209 milliseconds