Home | History | Annotate | Download | only in intltest

Lines Matching refs:imp

145     Win32ThreadImplementation *imp = new Win32ThreadImplementation;
146 imp->fHandle = 0;
147 fImplementation = imp;
155 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation;
156 if (imp != 0) {
157 if (imp->fHandle != 0) {
158 CloseHandle(imp->fHandle);
159 imp->fHandle = 0;
167 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation;
168 if(imp->fHandle != NULL) {
174 imp->fHandle = (HANDLE) _beginthreadex(
180 &imp->fThreadID // thraddr
183 if (imp->fHandle == 0) {
196 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation;
197 if (imp->fHandle == 0) {
201 WaitForSingleObject(imp->fHandle, INFINITE);
230 PosixThreadImplementation *imp = new PosixThreadImplementation;
231 fImplementation = imp;
236 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation;
237 delete imp;
247 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation;
266 rc = pthread_create(&(imp->fThread), &attr, &SimpleThreadProc, (void*)this);
276 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation;
277 pthread_join(imp->fThread, NULL);