Home
last modified time | relevance | path

Searched refs:CLoopThread (Results 1 – 2 of 2) sorted by relevance

/external/lzma/C/
DMtCoder.h21 } CLoopThread; typedef
23 void LoopThread_Construct(CLoopThread *p);
24 void LoopThread_Close(CLoopThread *p);
25 WRes LoopThread_Create(CLoopThread *p);
26 WRes LoopThread_StopAndWait(CLoopThread *p);
27 WRes LoopThread_StartSubThread(CLoopThread *p);
28 WRes LoopThread_WaitSubThread(CLoopThread *p);
59 CLoopThread thread;
DMtCoder.c10 void LoopThread_Construct(CLoopThread *p) in LoopThread_Construct()
17 void LoopThread_Close(CLoopThread *p) in LoopThread_Close()
26 CLoopThread *p = (CLoopThread *)pp; in LoopThreadFunc()
39 WRes LoopThread_Create(CLoopThread *p) in LoopThread_Create()
47 WRes LoopThread_StopAndWait(CLoopThread *p) in LoopThread_StopAndWait()
55 WRes LoopThread_StartSubThread(CLoopThread *p) { return Event_Set(&p->startEvent); } in LoopThread_StartSubThread()
56 WRes LoopThread_WaitSubThread(CLoopThread *p) { return Event_Wait(&p->finishedEvent); } in LoopThread_WaitSubThread()
290 CLoopThread *lt = &t->thread; in MtCoder_Code()