Home
last modified time | relevance | path

Searched refs:thread (Results 1 – 25 of 172) sorted by relevance

1234567

/trunk/main/io/test/
H A Dtestconnection.cxx129 MyThread thread( rAcceptor , sConnectionDescription ); in testConnection() local
130 thread.create(); in testConnection()
172 thread.join(); in testConnection()
255 MyThread thread( rAcceptor , OUString::createFromAscii("socket,host=localhost,port=2001") ); in main() local
256 thread.create(); in main()
275 thread.join(); in main()
/trunk/main/sal/osl/unx/
H A Dthread.c198 pthread_t thread; in osl_thread_cleanup_Impl() local
205 thread = pImpl->m_hThread; in osl_thread_cleanup_Impl()
213 removeThreadId (thread); in osl_thread_cleanup_Impl()
217 pthread_detach (thread); in osl_thread_cleanup_Impl()
444 pthread_t thread; in osl_joinWithThread() local
460 thread = pImpl->m_hThread; in osl_joinWithThread()
470 osl_thread_join_cleanup_Impl, (void*)thread); in osl_joinWithThread()
473 pthread_join (thread, NULL); in osl_joinWithThread()
H A Dmakefile.mk58 $(SLO)$/thread.obj \
89 $(OBJ)$/thread.obj \
/trunk/main/odk/examples/java/NotesAccess/
H A DNotesAccess.java72 Thread thread; in main() local
106 thread = new NotesThread( ( Runnable ) notesaccess ); in main()
113 thread = new Thread( ( Runnable ) notesaccess ); in main()
117 thread.start(); in main()
/trunk/main/slideshow/
H A Dmanifest.txt64 process them in the main thread. Therefore, XSlideShow::update()
68 implementation (vclcanvas) must be called from the main thread
76 being called from the main thread, and DummyRenderer is content
78 must be thread-safe (as one of the few internal objects having an
/trunk/main/offapi/com/sun/star/ucb/
H A DXCommandProcessor.idl71 only should get one identifier per thread and assign it to every
72 command executed by that thread.</p>
104 This can easily achieved, if every thread that wants to use an
108 <member>XCommandProcessor::execute</member> done by that thread.
H A DDuplicateCommandIdentifierException.idl39 <p>Each thread must use it's own command identifier, which must be obtained
42 be aborted by a client, can be used by any thread.
/trunk/main/cppu/source/threadpool/
H A Dthreadpool.cxx186 waitingThread.thread = pThread; in waitInPool()
198 if( waitingThread.thread ) in waitInPool()
223 pWaitingThread->thread->setTask( pQueue , aThreadId , bAsynchron ); in createThread()
224 pWaitingThread->thread = 0; in createThread()
/trunk/main/udkapi/com/sun/star/java/
H A DXJavaThreadRegister_11.idl48 /** returns <true/> if the current thread is already attached to the VM otherwise <false/>.
55 /** registers the current thread.
65 /** revokes the current thread from the list of registerd threads.
H A DXJavaVM.idl95 <code>JavaVM</code> pointer is that whenever you attach a native thread
96 to the Java virtual machine, that thread's context
/trunk/main/bridges/test/java_uno/nativethreadpool/
H A Dreadme22 Test that a Java URP bridge started in a native process uses the same thread
28 then connects to the server, retrieves a thread-local token from it, and checks
33 to obtain the thread-local token.
/trunk/main/bridges/test/
H A Dtestserver.cxx219 MyThread thread( rAcceptor , in main() local
226 thread.create(); in main()
239 thread.join(); in main()
/trunk/test/testcommon/source/org/openoffice/test/vcl/client/
H A DCommunicationManager.java203 Thread thread = new Thread(this); in connect() local
204 thread.setDaemon(true); in connect()
205 thread.start(); in connect()
/trunk/main/dbaccess/qa/complex/dbaccess/
H A DCopyTableWizard.java180 Thread thread = new Thread(new CopyThread(copyWizard)); in copyTable() local
181 thread.start(); in copyTable()
212 thread.join(); in copyTable()
/trunk/main/configmgr/source/
H A Dcomponents.cxx307 rtl::Reference< WriteThread > thread; in flushModifications() local
310 thread = writeThread_; in flushModifications()
312 if (thread.is()) { in flushModifications()
313 thread->flush(); in flushModifications()
314 thread->join(); in flushModifications()
/trunk/main/rhino/
H A Drhino1_7R3.patch15 * Returns whether the current thread is the GUI's event thread.
16 * This information is required to avoid blocking the event thread
256 * Returns whether the current thread is the GUI event thread.
724 + info.closeCallback.run(); // really need to do this in separate thread????
/trunk/main/sal/osl/os2/
H A Dmakefile.mk65 $(SLO)$/thread.obj \
92 $(OBJ)$/thread.obj \
/trunk/main/sal/osl/w32/
H A DMAKEFILE.MK62 $(SLO)$/thread.obj \
89 $(OBJ)$/thread.obj \
/trunk/main/vcl/unx/gtk/a11y/
H A DTODO11 + how are these being processed & on what thread ?
14 + is it really necessary to be thread safe ?
/trunk/main/offapi/com/sun/star/awt/
H A DXReschedule.idl39 thread to allow events processing.
49 /** Allow the main thread to process some events.
H A DXPrinter.idl64 <p>This call may block the thread. So release all resources
94 returns <FALSE/>. This call must not block the thread.</p>
/trunk/main/vos/
H A DPackage_inc.mk46 $(eval $(call gb_Package_add_file,vos_inc,inc/vos/thread.hxx,thread.hxx))
/trunk/main/offapi/com/sun/star/frame/
H A DXSynchronousFrameLoader.idl78 another thread the loader thread only. Method
/trunk/main/binaryurp/source/
H A Dbridge.cxx96 void joinThread(osl::Thread * thread) { in joinThread() argument
97 OSL_ASSERT(thread != 0); in joinThread()
98 if (thread->getIdentifier() != osl::Thread::getCurrentIdentifier()) { in joinThread()
99 thread->join(); in joinThread()
/trunk/main/desktop/source/deployment/gui/
H A Ddp_gui_updateinstalldialog.cxx150 ::rtl::Reference<UpdateInstallDialog::Thread>const & thread);
648 ::rtl::Reference<UpdateInstallDialog::Thread>const & thread) in UpdateCommandEnv() argument
650 m_installThread(thread), in UpdateCommandEnv()

Completed in 106 milliseconds

1234567