Lines Matching refs:aCountThread
706 OCountThread* aCountThread = new OCountThread(); in suspend_001() local
707 sal_Bool bRes = aCountThread->create(); in suspend_001()
710 suspendCountThread( aCountThread ); in suspend_001()
713 sal_Int32 nValue = aCountThread->getValue(); // (2) in suspend_001()
718 sal_Int32 nLaterValue = aCountThread->getValue(); // (3) in suspend_001()
720 resumeAndWaitThread(aCountThread); in suspend_001()
721 termAndJoinThread(aCountThread); in suspend_001()
722 delete aCountThread; in suspend_001()
884 OCountThread* aCountThread = new OCountThread(); in terminate_001() local
885 sal_Bool bRes = aCountThread->create(); in terminate_001()
889 sal_Int32 nValue = aCountThread->getValue(); in terminate_001()
890 aCountThread->terminate(); in terminate_001()
892 sal_Int32 nLaterValue = aCountThread->getValue(); in terminate_001()
895 sal_Bool isRunning = aCountThread->isRunning(); in terminate_001()
896 aCountThread->join(); in terminate_001()
897 delete aCountThread; in terminate_001()
911 OCountThread* aCountThread = new OCountThread(); in terminate_002() local
912 sal_Bool bRes = aCountThread->create(); in terminate_002()
916 suspendCountThread(aCountThread); in terminate_002()
917 sal_Int32 nValue = aCountThread->getValue(); in terminate_002()
920 resumeAndWaitThread(aCountThread); in terminate_002()
924 termAndJoinThread(aCountThread); in terminate_002()
925 sal_Int32 nLaterValue = aCountThread->getValue(); in terminate_002()
926 delete aCountThread; in terminate_002()
965 OCountThread *aCountThread = new OCountThread(); in join_001() local
966 sal_Bool bRes = aCountThread->create(); in join_001()
975 aCountThread->join(); in join_001()
984 delete aCountThread; in join_001()
1000 OCountThread *aCountThread = new OCountThread(); in join_002() local
1001 sal_Bool bRes = aCountThread->create(); in join_002()
1011 termAndJoinThread(aCountThread); in join_002()
1021 delete aCountThread; in join_002()
1052 OCountThread *aCountThread = new OCountThread(); in isRunning_001() local
1053 sal_Bool bRes = aCountThread->create(); in isRunning_001()
1056 sal_Bool bRun = aCountThread->isRunning(); in isRunning_001()
1059 termAndJoinThread(aCountThread); in isRunning_001()
1060 sal_Bool bTer = aCountThread->isRunning(); in isRunning_001()
1061 delete aCountThread; in isRunning_001()
1072 OCountThread *aCountThread = new OCountThread(); in isRunning_002() local
1073 sal_Bool bRes = aCountThread->create(); in isRunning_002()
1078 suspendCountThread(aCountThread); in isRunning_002()
1080 sal_Bool bRunning_sup = aCountThread->isRunning(); in isRunning_002()
1082 aCountThread->resume(); in isRunning_002()
1084 sal_Bool bRunning_res = aCountThread->isRunning(); in isRunning_002()
1085 termAndJoinThread(aCountThread); in isRunning_002()
1086 sal_Bool bRunning_ter = aCountThread->isRunning(); in isRunning_002()
1087 delete aCountThread; in isRunning_002()
1771 OCountThread *aCountThread = new OCountThread(); in wait_001() local
1773 aCountThread->setWait(nWaitSec); in wait_001()
1775 sal_Bool bRes = aCountThread->create(); in wait_001()
1787 termAndJoinThread(aCountThread); in wait_001()
1790 sal_Int32 nValue = aCountThread->getValue(); in wait_001()
1797 delete aCountThread; in wait_001()