OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sThreads
(Results
1 - 4
of
4
) sorted by null
/frameworks/layoutlib/bridge/src/android/os/
HandlerThread_Delegate.java
38
private static Map<BridgeContext, List<HandlerThread>>
sThreads
=
42
List<HandlerThread> list =
sThreads
.get(context);
49
sThreads
.remove(context);
59
List<HandlerThread> list =
sThreads
.get(context);
62
sThreads
.put(context, list);
/prebuilts/ndk/r11/sources/cxx-stl/gabi++/tests/
test_guard.cpp
31
static pthread_t
sThreads
[MAX_THREADS];
44
pthread_create( &
sThreads
[nn], NULL, thread_run, reinterpret_cast<void*>(nn) );
49
pthread_join(
sThreads
[nn], &dummy );
/prebuilts/ndk/r13/sources/cxx-stl/gabi++/tests/
test_guard.cpp
31
static pthread_t
sThreads
[MAX_THREADS];
44
pthread_create( &
sThreads
[nn], NULL, thread_run, reinterpret_cast<void*>(nn) );
49
pthread_join(
sThreads
[nn], &dummy );
/art/test/004-checker-UnsafeTest18/src/
Main.java
32
private static Thread[]
sThreads
= new Thread[10];
135
sThreads
[i] = new Thread(r);
140
sThreads
[i].start();
147
sThreads
[i].join();
219
setObj(m, objOffset,
sThreads
[i]);
223
expectEqualObj(
sThreads
[9], m.o); // one thread's last value wins
Completed in 76 milliseconds