Home | History | Annotate | Download | only in intltest

Lines Matching refs:imp

176     Win32ThreadImplementation *imp = new Win32ThreadImplementation;
177 imp->fHandle = 0;
178 fImplementation = imp;
186 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation;
187 if (imp != 0) {
188 if (imp->fHandle != 0) {
189 CloseHandle(imp->fHandle);
190 imp->fHandle = 0;
198 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation;
199 if(imp->fHandle != NULL) {
205 imp->fHandle = (HANDLE) _beginthreadex(
211 &imp->fThreadID // thraddr
214 if (imp->fHandle == 0) {
240 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation;
245 if (imp->fHandle == 0) {
249 success = GetExitCodeThread(imp->fHandle, &threadExitCode) != 0;
342 PosixThreadImplementation *imp = (PosixThreadImplementation*)This->fImplementation;
344 imp->fRunning = FALSE;
351 PosixThreadImplementation *imp = new PosixThreadImplementation;
352 imp->fRunning = FALSE;
353 imp->fRan = FALSE;
354 fImplementation = imp;
359 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation;
360 if (imp->fRan) {
361 pthread_join(imp->fThread, NULL);
363 delete imp;
373 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation;
374 imp->fRunning = TRUE;
375 imp->fRan = TRUE;
382 rc = pthread_create(&(imp->fThread),attr,&SimpleThreadProc,(void*)this);
401 rc = pthread_create(&(imp->fThread),&attr,&SimpleThreadProc,(void*)this);
406 imp->fRan = FALSE;
407 imp->fRunning = FALSE;
420 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation;
422 UBool retVal = imp->fRunning;