OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SimpleThread
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/icu/source/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/icu4c/test/intltest/
simplethread.h
12
class U_EXPORT
SimpleThread
15
SimpleThread
();
16
virtual ~
SimpleThread
();
simplethread.cpp
22
#include "
simplethread
.h"
106
SimpleThread
::
SimpleThread
()
109
SimpleThread
::~
SimpleThread
()
113
SimpleThread
::start()
117
SimpleThread
::run()
121
SimpleThread
::sleep(int32_t millis)
125
SimpleThread
::isRunning() {
155
// class
SimpleThread
Windows Implementatio
[
all
...]
/external/chromium_org/ppapi/utility/threading/
simple_thread.cc
26
SimpleThread
::ThreadFunc func;
49
SimpleThread
::
SimpleThread
(const InstanceHandle& instance)
56
SimpleThread
::
SimpleThread
(const InstanceHandle& instance,
64
SimpleThread
::~
SimpleThread
() {
68
bool
SimpleThread
::Start() {
72
bool
SimpleThread
::Join() {
92
bool
SimpleThread
::StartWithFunction(ThreadFunc func, void* user_data)
[
all
...]
simple_thread.h
21
class
SimpleThread
{
31
explicit
SimpleThread
(const InstanceHandle& instance);
32
explicit
SimpleThread
(const InstanceHandle& instance, size_t stacksize);
33
~
SimpleThread
();
60
SimpleThread
(const
SimpleThread
&);
61
SimpleThread
(const
SimpleThread
&, size_t stacksize);
62
SimpleThread
& operator=(const
SimpleThread
&)
[
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
...]
/external/chromium_org/base/threading/
simple_thread.cc
14
SimpleThread
::
SimpleThread
(const std::string& name_prefix)
19
SimpleThread
::
SimpleThread
(const std::string& name_prefix,
25
SimpleThread
::~
SimpleThread
() {
26
DCHECK(HasBeenStarted()) << "
SimpleThread
was never started.";
27
DCHECK(HasBeenJoined()) << "
SimpleThread
destroyed without being Join()ed.";
30
void
SimpleThread
::Start() {
38
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_EXPORT
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 3502 milliseconds