Searched refs:nWaitMUSEC (Results  1 – 7 of 7) sorted by relevance
| /trunk/main/testtools/source/bridgetest/cli/ | 
| H A D | cli_vb_testobj.vb | 378     Public Overridable Sub [call](nCallId As Integer, nWaitMUSEC As Integer) _381         Threading.Thread.Sleep(CType(nWaitMUSEC / 10000, Integer))
 390     Public Overridable Sub callOneway(nCallId As Integer, nWaitMUSEC As Integer) _
 393         Threading.Thread.Sleep(CType(nWaitMUSEC / 10000, Integer))
 
 | 
| H A D | cli_cs_testobj.cs | 345     public void call(int nCallId , int nWaitMUSEC)  in call()  argument347         Thread.Sleep(nWaitMUSEC / 10000);  in call()
 357     public void callOneway( int nCallId , int nWaitMUSEC )  in callOneway()  argument
 359         Thread.Sleep(nWaitMUSEC / 10000);  in callOneway()
 
 | 
| /trunk/main/testtools/source/bridgetest/pyuno/ | 
| H A D | samplecomponent.py | 98       def call( self, callid, nWaitMUSEC ):  argument104       def callOneway( self, nCallId, nWaitMUSEC ):  argument
 105 	  call( nCallId, nWaitMUSEC )
 
 | 
| /trunk/main/testtools/source/bridgetest/ | 
| H A D | cppobj.cxx | 360     virtual void SAL_CALL call( sal_Int32 nCallId, sal_Int32 nWaitMUSEC )362     virtual void SAL_CALL callOneway( sal_Int32 nCallId, sal_Int32 nWaitMUSEC )
 487 void Test_Impl::call( sal_Int32 nCallId , sal_Int32 nWaitMUSEC ) throw(::com::sun::star::uno::Runti…  in call()  argument
 489 …TimeValue value = { static_cast<unsigned>(nWaitMUSEC / 1000000), static_cast<unsigned>(nWaitMUSEC …  in call()
 503 void Test_Impl::callOneway( sal_Int32 nCallId , sal_Int32 nWaitMUSEC ) throw (::com::sun::star::uno…  in callOneway()  argument
 505 …TimeValue value = { static_cast<unsigned>(nWaitMUSEC / 1000000), static_cast<unsigned>(nWaitMUSEC …  in callOneway()
 
 | 
| /trunk/main/testtools/com/sun/star/comp/bridge/ | 
| H A D | TestComponent.java | 704 		public void call(int nCallId , int nWaitMUSEC) throws com.sun.star.uno.RuntimeException {  in call()  argument708 				Thread.sleep(nWaitMUSEC / 10000);  in call()
 723 		public void callOneway( int nCallId , int nWaitMUSEC )  throws com.sun.star.uno.RuntimeException {  in callOneway()  argument
 727 				Thread.sleep(nWaitMUSEC / 10000);  in callOneway()
 
 | 
| /trunk/main/udkapi/com/sun/star/test/bridge/ | 
| H A D | XBridgeTest.idl | 187 	void call( [in] long nCallId, [in] long nWaitMUSEC );188 	[oneway] void callOneway( [in] long nCallId, [in] long nWaitMUSEC );
 
 | 
| /trunk/main/testtools/source/bridgetest/idl/ | 
| H A D | bridgetest.idl | 325     void call( [in] long nCallId, [in] long nWaitMUSEC );326     [oneway] void callOneway( [in] long nCallId, [in] long nWaitMUSEC );
 
 | 
        Completed in 219 milliseconds