Home | History | Annotate | Download | only in intltest

Lines Matching refs:imp

166     Win32ThreadImplementation *imp = new Win32ThreadImplementation;
167 imp->fHandle = 0;
168 fImplementation = imp;
176 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation;
177 if (imp != 0) {
178 if (imp->fHandle != 0) {
179 CloseHandle(imp->fHandle);
180 imp->fHandle = 0;
188 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation;
189 if(imp->fHandle != NULL) {
195 imp->fHandle = (HANDLE) _beginthreadex(
201 &imp->fThreadID // thraddr
204 if (imp->fHandle == 0) {
230 Win32ThreadImplementation *imp = (Win32ThreadImplementation*)fImplementation;
235 if (imp->fHandle == 0) {
239 success = GetExitCodeThread(imp->fHandle, &threadExitCode) != 0;
332 PosixThreadImplementation *imp = (PosixThreadImplementation*)This->fImplementation;
334 imp->fRunning = FALSE;
341 PosixThreadImplementation *imp = new PosixThreadImplementation;
342 imp->fRunning = FALSE;
343 imp->fRan = FALSE;
344 fImplementation = imp;
349 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation;
350 if (imp->fRan) {
351 pthread_join(imp->fThread, NULL);
353 delete imp;
363 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation;
364 imp->fRunning = TRUE;
365 imp->fRan = TRUE;
372 rc = pthread_create(&(imp->fThread),attr,&SimpleThreadProc,(void*)this);
391 rc = pthread_create(&(imp->fThread),&attr,&SimpleThreadProc,(void*)this);
396 imp->fRan = FALSE;
397 imp->fRunning = FALSE;
410 PosixThreadImplementation *imp = (PosixThreadImplementation*)fImplementation;
412 UBool retVal = imp->fRunning;