OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SkThread
(Results
1 - 12
of
12
) sorted by null
/external/skia/src/utils/
SkThreadUtils.h
13
class
SkThread
: SkNoncopyable {
17
SkThread
(entryPointProc entryPoint, void* data = nullptr);
22
~
SkThread
();
SkThreadUtils_win.h
17
SkThread_WinData(
SkThread
::entryPointProc entryPoint, void* data);
24
SkThread
::entryPointProc fEntryPoint;
SkThreadUtils_win.cpp
14
SkThread_WinData::SkThread_WinData(
SkThread
::entryPointProc entryPoint, void* data)
44
SkThread
::
SkThread
(entryPointProc entryPoint, void* data) {
61
SkThread
::~
SkThread
() {
79
bool
SkThread
::start() {
92
void
SkThread
::join() {
SkThreadUtils_pthread.h
30
SkThread_PThreadData(
SkThread
::entryPointProc entryPoint, void* data);
40
SkThread
::entryPointProc fEntryPoint;
SkThreadUtils_pthread.cpp
45
SkThread_PThreadData::SkThread_PThreadData(
SkThread
::entryPointProc entryPoint, void* data)
71
SkThread
::
SkThread
(entryPointProc entryPoint, void* data) {
83
SkThread
::~
SkThread
() {
97
bool
SkThread
::start() {
110
void
SkThread
::join() {
/external/skia/tests/
RefCntTest.cpp
25
SkThread
thing1(bounce_ref, ref);
26
SkThread
thing2(bounce_ref, ref);
58
SkThread
thing1(bounce_ref, ref);
59
SkThread
thing2(bounce_ref, ref);
60
SkThread
thing3(bounce_weak_ref, ref);
61
SkThread
thing4(bounce_weak_weak_ref, ref);
TLSTest.cpp
33
static void test_threads(
SkThread
::entryPointProc proc) {
34
SkThread
* threads[8];
39
threads[i] = new
SkThread
(proc);
AtomicTest.cpp
35
SkThread
* threads[SK_ARRAY_COUNT(gAdds)];
41
threads[i] = new
SkThread
(addABunchOfTimes, &gAdds[i]);
/external/skia/src/core/
SkTaskGroup.cpp
104
fThreads.push(new
SkThread
(&ThreadPool::Loop, this));
185
SkTDArray<
SkThread
*> fThreads;
/external/skia/tools/kilobench/
kilobench.cpp
542
SkAutoTDelete<
SkThread
> nativeThread(new
SkThread
(TimingThread::Loop, &timingThread));
/external/skia/dm/
DM.cpp
[
all
...]
/external/skia/bench/
nanobench.cpp
[
all
...]
Completed in 223 milliseconds