Home
last modified time | relevance | path

Searched refs:Thread (Results 1 – 25 of 367) sorted by relevance

12345678910>>...15

/trunk/main/sal/osl/os2/
H A Dthread.c233 void SAL_CALL osl_destroyThread(oslThread Thread) in osl_destroyThread() argument
237 if(Thread == 0) /* valid ptr? */ in osl_destroyThread()
253 void SAL_CALL osl_freeThreadHandle(oslThread Thread) in osl_freeThreadHandle() argument
257 if(Thread == 0) /* valid ptr? */ in osl_freeThreadHandle()
267 free(Thread); in osl_freeThreadHandle()
273 void SAL_CALL osl_resumeThread(oslThread Thread) in osl_resumeThread() argument
285 void SAL_CALL osl_suspendThread(oslThread Thread) in osl_suspendThread() argument
297 void SAL_CALL osl_setThreadPriority(oslThread Thread, in osl_setThreadPriority() argument
464 void SAL_CALL osl_joinWithThread(oslThread Thread) in osl_joinWithThread() argument
495 void SAL_CALL osl_terminateThread(oslThread Thread) in osl_terminateThread() argument
[all …]
/trunk/main/sal/osl/w32/
H A Dthread.c135 osl_TThreadImpl* pThreadImpl= (osl_TThreadImpl*)Thread; in osl_getThreadIdentifier()
146 void SAL_CALL osl_destroyThread(oslThread Thread) in osl_destroyThread() argument
148 osl_TThreadImpl* pThreadImpl= (osl_TThreadImpl*)Thread; in osl_destroyThread()
150 if (Thread == 0) /* valid ptr? */ in osl_destroyThread()
160 free(Thread); in osl_destroyThread()
166 void SAL_CALL osl_resumeThread(oslThread Thread) in osl_resumeThread() argument
178 void SAL_CALL osl_suspendThread(oslThread Thread) in osl_suspendThread() argument
190 void SAL_CALL osl_setThreadPriority(oslThread Thread, in osl_setThreadPriority() argument
321 void SAL_CALL osl_joinWithThread(oslThread Thread) in osl_joinWithThread() argument
351 void SAL_CALL osl_terminateThread(oslThread Thread) in osl_terminateThread() argument
[all …]
/trunk/main/bean/qa/complex/bean/
H A DOOoBeanTest.java124 Thread.sleep(1000); in test1()
154 Thread.sleep(1000); in test2()
342 Thread.sleep(10000); in test4()
359 Thread.sleep(1000); in test5()
395 Thread.sleep(10000); in test5()
422 Thread.sleep(1000); in test6()
491 Thread.sleep(1000); in test6a()
513 Thread.sleep(1000); in test6a()
528 Thread.sleep(1000); in test6a()
613 Thread.sleep(1000); in test7()
[all …]
/trunk/main/sal/osl/unx/
H A Dthread.c355 if (Thread != NULL) { in osl_destroyThread()
373 Thread_Impl* pImpl= (Thread_Impl*)Thread; in osl_resumeThread()
396 Thread_Impl* pImpl= (Thread_Impl*)Thread; in osl_suspendThread()
427 Thread_Impl* pImpl= (Thread_Impl*)Thread; in osl_isThreadRunning()
446 Thread_Impl* pImpl= (Thread_Impl*)Thread; in osl_joinWithThread()
485 Thread_Impl* pImpl= (Thread_Impl*)Thread; in osl_terminateThread()
511 Thread_Impl* pImpl= (Thread_Impl*)Thread; in osl_scheduleThread()
694 Thread_Impl* pImpl= (Thread_Impl*)Thread; in osl_getThreadIdentifier()
803 oslThread Thread, in osl_setThreadPriority() argument
814 Thread_Impl* pImpl= (Thread_Impl*)Thread; in osl_setThreadPriority()
[all …]
/trunk/main/desktop/source/deployment/gui/
H A Ddp_gui_updateinstalldialog.cxx96 class UpdateInstallDialog::Thread: public dp_gui::Thread { class in dp_gui::UpdateInstallDialog
107 Thread(Thread &); // not defined
108 void operator =(Thread &); // not defined
110 virtual ~Thread();
140 friend class UpdateInstallDialog::Thread;
172 UpdateInstallDialog::Thread::Thread( in Thread() function in dp_gui::UpdateInstallDialog::Thread
183 void UpdateInstallDialog::Thread::stop() { in stop()
195 UpdateInstallDialog::Thread::~Thread() {} in ~Thread()
197 void UpdateInstallDialog::Thread::execute() in execute()
344 void UpdateInstallDialog::Thread::downloadExtensions() in downloadExtensions()
[all …]
H A Ddp_gui_extensioncmdqueue.cxx215 class ExtensionCmdQueue::Thread: public dp_gui::Thread class in dp_gui::ExtensionCmdQueue
218 Thread( DialogHelper *pDialogHelper,
237 Thread( Thread & ); // not defined
238 void operator =( Thread & ); // not defined
240 virtual ~Thread();
562 ExtensionCmdQueue::Thread::Thread( DialogHelper *pDialogHelper, in Thread() function in dp_gui::ExtensionCmdQueue::Thread
680 void ExtensionCmdQueue::Thread::stop() in stop()
689 bool ExtensionCmdQueue::Thread::isBusy() in isBusy()
696 ExtensionCmdQueue::Thread::~Thread() {} in ~Thread()
699 void ExtensionCmdQueue::Thread::execute() in execute()
[all …]
H A Ddp_gui_thread.cxx37 using dp_gui::Thread;
39 Thread::Thread() {} in Thread() function in Thread
41 void Thread::launch() { in launch()
53 void * Thread::operator new(std::size_t size) in operator new()
59 void Thread::operator delete(void * p) throw () { in operator delete()
63 Thread::~Thread() {} in ~Thread()
65 void Thread::run() { in run()
76 void Thread::onTerminated() { in onTerminated()
H A Ddp_gui_thread.hxx42 class Thread: public salhelper::SimpleReferenceObject, private osl::Thread { class
44 Thread();
53 using osl::Thread::join;
60 virtual ~Thread();
70 Thread(Thread &); // not defined
71 void operator =(Thread &); // not defined
H A Ddp_gui_updatedialog.cxx212 class UpdateDialog::Thread: public dp_gui::Thread { class in UpdateDialog
214 Thread(
222 Thread(UpdateDialog::Thread &); // not defined
244 virtual ~Thread();
287 UpdateDialog::Thread::Thread( in Thread() function in UpdateDialog::Thread
313 void UpdateDialog::Thread::stop() { in stop()
326 UpdateDialog::Thread::Entry::Entry( in Entry()
337 UpdateDialog::Thread::~Thread() in ~Thread()
343 void UpdateDialog::Thread::execute() in execute()
537 bool UpdateDialog::Thread::update( in update()
[all …]
/trunk/main/sal/inc/osl/
H A Dthread.h90 oslThreadIdentifier SAL_CALL osl_getThreadIdentifier(oslThread Thread);
97 void SAL_CALL osl_destroyThread(oslThread Thread);
102 void SAL_CALL osl_resumeThread(oslThread Thread);
107 void SAL_CALL osl_suspendThread(oslThread Thread);
112 void SAL_CALL osl_setThreadPriority(oslThread Thread, oslThreadPriority Priority);
118 oslThreadPriority SAL_CALL osl_getThreadPriority(const oslThread Thread);
124 sal_Bool SAL_CALL osl_isThreadRunning(const oslThread Thread);
129 void SAL_CALL osl_joinWithThread(oslThread Thread);
139 void SAL_CALL osl_terminateThread(oslThread Thread);
147 sal_Bool SAL_CALL osl_scheduleThread(oslThread Thread);
H A Dthread.hxx45 class Thread class
47 Thread( const Thread& );
48 Thread& operator= ( const Thread& );
60 Thread(): m_hThread(0){} in Thread() function in osl::Thread
62 virtual ~Thread() in ~Thread()
183 Thread* pObj= (Thread*)param; in threadFunc()
/trunk/main/jurt/test/com/sun/star/lib/uno/environments/remote/
H A DTestWorkAt.java40 Thread _sync_thread;
41 Thread _async_thread;
53 _sync_thread = Thread.currentThread(); in syncCall()
58 …if(DEBUG) System.err.println("syncCall:" + _sync_counter + " " + _passedAync + " " + Thread.curren… in syncCall()
67 _async_thread = Thread.currentThread(); in asyncCall()
72 if(DEBUG) System.err.println("asyncCall:" + _async_counter + " " + Thread.currentThread()); in asyncCall()
76 if(DEBUG) System.err.println("increment - " + Thread.currentThread()); in increment()
83 if(DEBUG) System.err.println("\t\t\tnotifying me" + Thread.currentThread()); in notifyme()
H A DThreadPool_Test.java86 Thread.yield(); // force scheduling in testThreadAsync()
107 Thread.yield(); // force scheduling in testDynamicThreadSync()
142 Thread.yield(); // force scheduling in testStaticThreadSync()
166 Thread.yield(); // force scheduling in testDynamicThreadAsyncSyncOrder()
172 Thread.yield(); // force scheduling in testDynamicThreadAsyncSyncOrder()
202 Thread.yield(); // force scheduling in testStaticThreadAsyncSyncOrder()
213 Thread.yield(); // force scheduling in testStaticThreadAsyncSyncOrder()
233 Thread.yield(); // force scheduling in testStress()
244 abstract class Stress extends Thread { in testStress()
353 private static final class TestThread extends Thread {
/trunk/main/test/source/java/org/openoffice/test/
H A DOfficeConnection.java150 final Thread t1 = Thread.currentThread(); in waitForProcess()
151 Thread t2 = new Thread("waitForProcess") { in waitForProcess()
154 Thread.currentThread().sleep(millis); in waitForProcess()
159 boolean old = Thread.interrupted(); in waitForProcess()
174 Thread.interrupted(); // clear interrupted status in waitForProcess()
181 private static final class Forward extends Thread {
/trunk/main/ucb/qa/complex/tdoc/
H A D_XComponent.java63 Loutput[0] = Thread.currentThread() + " is DISPOSING EV1" + this; in disposing()
74 Loutput[0] = Thread.currentThread() + " is DISPOSING EV2" + this; in disposing()
121 log.println(Thread.currentThread() + " is removing EL " + listener2); in _removeEventListener()
142 log.println( "begin dispose" + Thread.currentThread()); in _dispose()
146 Thread.sleep(500) ; in _dispose()
150 log.println( "end dispose" + Thread.currentThread()); in _dispose()
/trunk/main/sal/qa/osl/process/
H A Dosl_Thread.cxx248 class myThread : public Thread
272 ::osl::Thread::suspend(); in suspend()
289 class OCountThread : public Thread
309 ::osl::Thread::suspend(); in suspend()
358 class OSuspendThread : public Thread
371 ::osl::Thread::suspend(); in suspend()
419 ::osl::Thread::suspend(); in suspend()
456 class OAddThread : public Thread
467 ::osl::Thread::suspend(); in suspend()
1846 class myKeyThread : public Thread
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/lang/
H A D_XComponent.java61 Loutput[0] = Thread.currentThread() + " is DISPOSING EV1" + this; in disposing()
72 Loutput[0] = Thread.currentThread() + " is DISPOSING EV2" + this; in disposing()
121 log.println(Thread.currentThread() + " is removing EL " + listener2); in _removeEventListener()
141 log.println( "begin dispose in thread " + Thread.currentThread()); in _dispose()
154 Thread.sleep(500) ; in _dispose()
158 log.println( "end dispose" + Thread.currentThread()); in _dispose()
/trunk/main/sal/qa/osl/mutex/
H A Dosl_Mutex.cxx112 class IncreaseThread : public Thread
140 class DecreaseThread : public Thread
177 class PutThread : public Thread
215 class HoldThread : public Thread
237 class WaitThread : public Thread
261 class GlobalMutexThread : public Thread
562 class GuardThread : public Thread
640 class ClearGuardThread : public Thread
767 class ResetGuardThread : public Thread
/trunk/main/sal/qa/osl/thread/
H A Dtest_thread.cxx39 class Thread: public osl::Thread { class
41 explicit Thread(osl::Condition & cond): m_cond(cond) {} in Thread() function in __anon81a9177a0111::Thread
64 Thread t(c); in TEST_F()
75 osl::Thread::wait(twentySeconds); in TEST_F()
/trunk/main/bean/java/officebean/src/main/java/com/sun/star/comp/beans/
H A DCallWatchThread.java33 public class CallWatchThread extends Thread
37 private Thread aWatchedThread;
50 this.aWatchedThread = Thread.currentThread(); in CallWatchThread()
63 if ( aWatchedThread != null && aWatchedThread != Thread.currentThread() ) in cancel()
74 if ( aWatchedThread != null && aWatchedThread != Thread.currentThread() ) in restart()
/trunk/main/sw/source/ui/inc/
H A Dmaildispatcher.hxx47 class MailDispatcher : public ::salhelper::ReferenceObject, private ::osl::Thread
51 using osl::Thread::operator new;
52 using osl::Thread::operator delete;
53 using osl::Thread::join;
126 using osl::Thread::isRunning;
/trunk/main/framework/qa/complex/imageManager/
H A D_XComponent.java66 Loutput[number] = Thread.currentThread() + " is DISPOSING " + message + this; in disposing()
121 System.out.println(Thread.currentThread() + " is removing EL " + listener2); in _removeEventListener()
141 System.out.println( "begin dispose" + Thread.currentThread()); in _dispose()
158 Thread.sleep(500) ; in _dispose()
166 System.out.println( "end dispose" + Thread.currentThread()); in _dispose()
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/
H A DJobQueue.java57 protected Thread _worker_thread; // the thread that does the jobs
73 class JobDispatcher extends Thread {
87 if(DEBUG) System.err.println("ThreadPool$JobDispatcher.run: " + Thread.currentThread()); in run()
323 Thread hold_worker_thread = _worker_thread; in enter()
324 _worker_thread = Thread.currentThread(); in enter()
/trunk/main/scripting/workben/installer/
H A DIdeUpdater.java43 public class IdeUpdater extends Thread {
52 private Thread internalThread;
90 if (internalThread == Thread.currentThread()) in checkStop()
140 internalThread = Thread.currentThread(); in run()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/ucb/
H A D_XCommandProcessor.java203 Thread aborter = new Thread() { in _abort()
209 Thread.sleep(10); in _abort()
219 Thread.currentThread().sleep(15); in _abort()

Completed in 107 milliseconds

12345678910>>...15