/trunk/main/sal/workben/ |
H A D | t_osl_joinProcess.cxx | 73 TimeValue timeout; in TEST_F() local 74 timeout.Seconds = 1; in TEST_F() 75 timeout.Nanosec = 0; in TEST_F() 77 osl_error = osl_joinProcessWithTimeout(process, &timeout); in TEST_F() 111 TimeValue timeout; in TEST_F() local 112 timeout.Seconds = 10; in TEST_F() 113 timeout.Nanosec = 0; in TEST_F() 115 osl_error = osl_joinProcessWithTimeout(process, &timeout); in TEST_F()
|
/trunk/main/offapi/com/sun/star/sdbc/ |
H A D | XDataSource.idl | 66 A value of zero specifies that the timeout is the default system 67 timeout if there is one; otherwise, it specifies that there is no timeout. 68 When a DataSource object is created the login timeout is initially zero. 84 A value of zero means that the timeout is the default system timeout 85 if there is one; otherwise, it means that there is no timeout. When a 86 DataSource object is created the login timeout is initially zero.
|
H A D | ODBCConnectionProperties.idl | 53 /** the Timeout after which time a timeout should happen
|
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sdbc/ |
H A D | _XDataSource.java | 78 int timeout = oObj.getLoginTimeout(); in _setLoginTimeout() local 79 res = timeout == TO; in _setLoginTimeout() 80 log.println("getLoginTimeout(): " + timeout); in _setLoginTimeout() 99 int timeout = oObj.getLoginTimeout(); in _getLoginTimeout() local 100 log.println("getLoginTimeout(): " + timeout); in _getLoginTimeout() 101 res = timeout == 0; in _getLoginTimeout()
|
H A D | _XDriverManager.java | 142 int timeout = oObj.getLoginTimeout(); in _setLoginTimeout() local 143 log.println("getLoginTimeout(): " + timeout); in _setLoginTimeout() 144 tRes.tested("setLoginTimeout()", timeout == TO); in _setLoginTimeout() 151 int timeout = oObj.getLoginTimeout(); in _getLoginTimeout() local 152 log.println("getLoginTimeout(): " + timeout); in _getLoginTimeout()
|
/trunk/main/sal/qa/osl/process/ |
H A D | osl_process.cxx | 145 TimeValue timeout; in TEST_F() local 146 timeout.Seconds = 1; in TEST_F() 147 timeout.Nanosec = 0; in TEST_F() 149 osl_error = osl_joinProcessWithTimeout(process, &timeout); in TEST_F() 183 TimeValue timeout; in TEST_F() local 184 timeout.Seconds = 10; in TEST_F() 185 timeout.Nanosec = 0; in TEST_F() 187 osl_error = osl_joinProcessWithTimeout(process, &timeout); in TEST_F()
|
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/helper/ |
H A D | ProcessHandler.java | 659 public boolean waitFor(long timeout) in waitFor() argument 661 return waitFor(timeout, true); in waitFor() 664 private boolean waitFor(long timeout, boolean bKillProcessAfterTimeout) in waitFor() argument 675 if (timeout == 0) in waitFor() 698 while (!isFinished && timeout > 0) in waitFor() 702 timeout -= 1000; in waitFor() 712 if (timeout < 0) in waitFor()
|
/trunk/test/testgui/source/bvt/gui/ |
H A D | FileExport.java | 86 static double timeout = 100; field in FileExport 364 if(statusBar.exists(timeout)) in Open() 365 statusBar.waitForEnabled(timeout, interval); in Open() 577 }.test(timeout, interval); in HandleBlockers() 595 if(statusBar.exists(timeout)) in SaveAs() 596 statusBar.waitForEnabled(timeout, interval); in SaveAs() 620 if(statusBar.exists(timeout)) in savetopdfformat() 621 statusBar.waitForEnabled(timeout, interval); in savetopdfformat()
|
/trunk/main/sal/osl/w32/ |
H A D | conditn.c | 88 DWORD timeout; in osl_waitCondition() local 93 timeout = pTimeout->Seconds * 1000 + pTimeout->Nanosec / 1000000L; in osl_waitCondition() 95 timeout = INFINITE; in osl_waitCondition() 103 … switch( MsgWaitForMultipleObjects( 1, (HANDLE *)(&Condition), FALSE, timeout, QS_SENDMESSAGE ) ) in osl_waitCondition()
|
H A D | process.cxx | 188 DWORD timeout = INFINITE; in osl_joinProcessWithTimeout() local 196 timeout = pTimeout->Seconds * 1000 + pTimeout->Nanosec / 1000000L; in osl_joinProcessWithTimeout() 198 ret = WaitForSingleObject(((oslProcessImpl*)Process)->m_hProcess, timeout); in osl_joinProcessWithTimeout()
|
/trunk/main/xmerge/source/palmtests/qa/lib/ |
H A D | converterlib.pm | 345 my $timeout = $_[3]; 382 for ($i=0; $i < $timeout; $i++) 411 for ($i=0; $i < $timeout && $stay_in_loop == 1; $i++) 495 my $timeout = $_[0]; 498 $rc = system("$em_script_home/verify_sane.pl $timeout");
|
/trunk/main/xmerge/source/palmtests/bin/ |
H A D | verify_sane.pl | 51 $timeout = $ARGV[0]; 63 sleep($timeout);
|
/trunk/main/solenv/bin/ |
H A D | patch_make_releases_xml.pl | 86 $agent->timeout(120); 121 $agent->timeout(120);
|
/trunk/main/sal/osl/unx/ |
H A D | process.c | 1103 long timeout; /* no of jiffies of next process timeout */ member 1191 &procstat->priority, &procstat->nice, &procstat->timeout, &procstat->itrealvalue, in osl_getProcStat() 1502 int timeout = 0; in osl_joinProcessWithTimeout() local 1509 while (!is_process_dead(pid) && ((timeout = is_timeout(&tend)) == 0)) in osl_joinProcessWithTimeout() 1512 if (timeout) in osl_joinProcessWithTimeout()
|
H A D | socket.c | 2525 int timeout; in __osl_socket_poll() local 2538 timeout = -1; in __osl_socket_poll() 2542 timeout = pTimeout->Seconds * 1000; in __osl_socket_poll() 2543 timeout += pTimeout->Nanosec / (1000 * 1000); in __osl_socket_poll() 2546 result = poll (&fds, 1, timeout); in __osl_socket_poll()
|
/trunk/main/scripting/source/pyprov/ |
H A D | mailmerge.py | 118 self.server = smtplib.SMTP_SSL(server, port, timeout=tout) 120 self.server = smtplib.SMTP(server, port,timeout=tout) 390 self.server = poplib.POP3(server, port, timeout=tout)
|
/trunk/main/extensions/source/config/ldap/ |
H A D | ldapaccess.cxx | 145 int timeout = 4000; in connectSimple() local 148 &timeout ); in connectSimple()
|
/trunk/main/sal/osl/os2/ |
H A D | socket.c | 2563 int timeout; in __osl_socket_poll() local 2573 timeout = -1; in __osl_socket_poll() 2577 timeout = pTimeout->Seconds * 1000; in __osl_socket_poll() 2578 timeout += pTimeout->Nanosec / (1000 * 1000); in __osl_socket_poll() 2581 result = poll (&fds, 1, timeout); in __osl_socket_poll()
|
/trunk/main/ucb/source/ucp/webdav/ |
H A D | CurlSession.cxx | 1477 sal_Int32 timeout ) in lastChanceToSendRefreshRequest() argument 1485 if ( timeout != DAVINFINITY ) in lastChanceToSendRefreshRequest() 1488 if ( calltime <= timeout ) in lastChanceToSendRefreshRequest() 1491 = aEnd.Seconds + timeout - calltime; in lastChanceToSendRefreshRequest()
|
/trunk/main/vcl/unx/gtk/app/ |
H A D | gtkdata.cxx | 912 gint *timeout) in sal_source_prepare() argument 916 *timeout = -1; in sal_source_prepare()
|
/trunk/main/offapi/com/sun/star/ucb/ |
H A D | Lock.idl | 58 /** a timeout value for the lock.
|
/trunk/main/offapi/com/sun/star/presentation/ |
H A D | XSlideShow.idl | 234 the timeout between the end of one effect until the start of the 286 Via this value, the implementation can return a timeout value,
|
/trunk/main/solenv/bin/modules/ |
H A D | ExtensionsLst.pm | 481 $agent->timeout(120);
|
/trunk/test/testuno/source/fvt/uno/sc/formula/ |
H A D | TestFormulaDocs.java | 112 @Test(timeout = 15000)
|
/trunk/test/testuno/source/pvt/uno/ |
H A D | Conversion.java | 162 @Test(timeout=10 * 60000)
|