/packages/apps/Bluetooth/res/values-it/ |
strings_pbap.xml | 6 <string name="pbap_acceptance_timeout_message" msgid="1107401415099814293">"Timeout dell\'accettazione della connessione con %1$s"</string> 7 <string name="pbap_authentication_timeout_message" msgid="4166979525521902687">"Timeout dell\'ingresso della chiave di sessione con %1$s"</string>
|
/packages/apps/Email/tests/src/com/android/email/ |
ThrottleTest.java | 47 * Gets two events. They're far apart enough that the timeout won't be extended. 91 * Here, we check if the timeout is extended, and the callback get called less than 105 // Timeout should be extended 117 // First call -- won't change the timeout 121 // Call again in 10 ms -- will extend timeout. 126 // Call again in TIMEOUT_EXTEND_INTERAVL ms -- will extend timeout. 131 // Again -- timeout reaches max. 136 // Call in TIMEOUT_EXTEND_INTERAVL + 1 ms -- timeout will get reset.
|
/sdk/chimpchat/src/com/android/chimpchat/core/ |
IChimpBackend.java | 28 * @return the connected device (or null if timeout); 37 * @return the connected device (or null if timeout);
|
/sdk/monkeyrunner/jython/test/ |
MonkeyRunner_test.py | 37 MonkeyRunner.waitForConnection(timeout=2, deviceId='foo') 41 MonkeyRunner.waitForConnection(timeout=2, deviceId='foo', extra='fail')
|
/cts/tests/src/android/app/cts/ |
ActivityTestsBase.java | 168 boolean timeout = false; 173 timeout = true; 187 if (timeout) { 208 final String msg = mExpecting == null ? "Timeout" : "Timeout while expecting " + mExpecting;
|
/cts/tests/tests/database/src/android/database/cts/ |
ContentObserverTest.java | 73 final long timeout = 1000L; local 79 assertTrue(contentObserver.hasChanged(timeout)); 87 assertTrue(contentObserver.hasChanged(timeout)); 121 protected synchronized boolean hasChanged(long timeout) throws InterruptedException { 123 wait(timeout);
|
/external/chromium/chrome/browser/extensions/ |
extension_idle_api.cc | 46 static int CheckThresholdBounds(int timeout); 81 int CheckThresholdBounds(int timeout) { 82 if (timeout < kMinThreshold) return kMinThreshold; 83 if (timeout > kMaxThreshold) return kMaxThreshold; 84 return timeout;
|
/external/dbus/dbus/ |
dbus-connection-internal.h | 32 #include <dbus/dbus-timeout.h> 44 /** default timeout value when waiting for a message reply, 25 seconds */ 70 DBusTimeout *timeout); 72 DBusTimeout *timeout); 74 DBusTimeout *timeout,
|
dbus-pending-call.c | 71 DBusTimeout *timeout; /**< Timeout */ member in struct:DBusPendingCall 73 DBusList *timeout_link; /**< Preallocated timeout response */ 78 unsigned int timeout_added : 1; /**< Have added the timeout */ 87 * @param timeout_milliseconds length of timeout, -1 for default, INT_MAX for no timeout 88 * @param timeout_handler timeout handler, takes pending call as data 97 DBusTimeout *timeout; local 117 timeout = _dbus_timeout_new (timeout_milliseconds, 121 if (timeout == NULL [all...] |
dbus-server.c | 315 DBusTimeout *timeout); 318 DBusTimeout *timeout); 321 DBusTimeout *timeout, 327 DBusTimeout *timeout, 350 retval = (* add_function) (timeouts, timeout); 354 (* remove_function) (timeouts, timeout); 359 (* toggle_function) (timeouts, timeout, enabled); 373 * Adds a timeout for this server, chaining out to 374 * application-provided timeout handlers. The timeout should b [all...] |
/external/qemu/distrib/sdl-1.2.12/src/thread/dc/ |
SDL_syssem.c | 53 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) 119 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) 128 /* A timeout of 0 is an easy case */ 129 if ( timeout == 0 ) { 133 retval = sem_wait_timed(&sem->sem,timeout);
|
/external/qemu/distrib/sdl-1.2.12/src/thread/generic/ |
SDL_syssem.c | 50 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) 146 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) 155 /* A timeout of 0 is an easy case */ 156 if ( timeout == 0 ) { 165 sem->count_lock, timeout);
|
/external/qemu/distrib/sdl-1.2.12/src/thread/irix/ |
SDL_syssem.c | 142 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) 152 if ( timeout == 0 ) { 155 if ( timeout == SDL_MUTEX_MAXWAIT ) { 160 timeout += SDL_GetTicks(); 167 } while ( SDL_GetTicks() < timeout );
|
/external/qemu/distrib/sdl-1.2.12/src/thread/pthread/ |
SDL_syssem.c | 97 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) 107 if ( timeout == 0 ) { 110 if ( timeout == SDL_MUTEX_MAXWAIT ) { 116 timeout += SDL_GetTicks(); 123 } while ( SDL_GetTicks() < timeout );
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
ActivityTestsBase.java | 168 boolean timeout = false; 173 timeout = true; 187 if (timeout) { 208 ? "Timeout" : ("Timeout while expecting " + mExpecting);
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
IDevice.java | 132 * @throws TimeoutException in case of timeout on the connection. 148 * @throws TimeoutException in case of timeout on the connection. 218 * @throws TimeoutException in case of timeout on the connection. 235 * @throws TimeoutException in case of timeout on the connection. 250 * @throws TimeoutException in case of timeout on the connection. 282 * @throws TimeoutException in case of timeout on the connection when sending the command. 299 * @throws TimeoutException in case of timeout on the connection. This can only be thrown if the 300 * timeout happens during setup. Once logs start being received, no timeout will occur as it's 301 * not possible to detect a difference between no log and timeout [all...] |
DdmPreferences.java | 43 /** Default timeout values for adb connection (milliseconds) */ 154 * Returns the timeout to be used in adb connections (milliseconds). 161 * Sets the timeout value for adb connection. 163 * @param timeOut the timeout value (milliseconds). 165 public static void setTimeOut(int timeOut) { 166 sTimeOut = timeOut;
|
/external/webkit/LayoutTests/fast/dom/Geolocation/ |
argument-types-expected.txt | 71 PASS navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {timeout:undefined}) did not throw exception. 72 PASS navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {timeout:null}) did not throw exception. 73 PASS navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {timeout:{}}) did not throw exception. 74 PASS navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {timeout:objectThrowingException}) threw exception Error: valueOf threw exception. 75 PASS navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {timeout:emptyFunction}) did not throw exception. 76 PASS navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {timeout:true}) did not throw exception. 77 PASS navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {timeout:42}) did not throw exception. 78 PASS navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {timeout:Infinity}) did not throw exception. 79 PASS navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {timeout:-Infinity}) did not throw exception. 80 PASS navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {timeout:"string"}) did not throw exception [all...] |
/frameworks/base/core/java/android/nfc/tech/ |
IsoDep.java | 81 * Set the timeout of {@link #transceive} in milliseconds. 82 * <p>The timeout only applies to ISO-DEP {@link #transceive}, and is 84 * <p>Setting a longer timeout may be useful when performing 90 * @param timeout timeout value in milliseconds 92 public void setTimeout(int timeout) { 94 int err = mTag.getTagService().setTimeout(TagTechnology.ISO_DEP, timeout); 96 throw new IllegalArgumentException("The supplied timeout is not valid"); 104 * Get the current timeout for {@link #transceive} in milliseconds. 108 * @return timeout value in millisecond [all...] |
/external/ppp/pppd/plugins/radius/ |
buildreq.c | 64 int timeout, int retries) 69 data->timeout = timeout; 195 int timeout = rc_conf_int("radius_timeout"); local 224 authserver->port[i], timeout, retries); 253 int timeout = rc_conf_int("radius_timeout"); local 268 authserver->port[i], timeout, retries); 299 int timeout = rc_conf_int("radius_timeout"); local 337 acctserver->port[i], timeout, retries); 382 int timeout = rc_conf_int("radius_timeout") local 420 int timeout = rc_conf_int("radius_timeout"); local [all...] |
/external/dbus/bus/ |
test.c | 32 /* The "debug client" watch/timeout handlers don't dispatch messages, 74 client_timeout_callback (DBusTimeout *timeout, 82 dbus_timeout_handle (timeout); 88 add_client_timeout (DBusTimeout *timeout, 93 return _dbus_loop_add_timeout (client_loop, timeout, client_timeout_callback, connection, NULL); 97 remove_client_timeout (DBusTimeout *timeout, 102 _dbus_loop_remove_timeout (client_loop, timeout, client_timeout_callback, connection);
|
/external/openssl/crypto/bio/ |
bss_dgram.c | 196 /* Read current socket timeout */ 198 int timeout; local 200 (void*)&timeout, &sz) < 0) 204 data->socket_timeout.tv_sec = timeout / 1000; 205 data->socket_timeout.tv_usec = (timeout % 1000) * 1000; 232 /* Adjust socket timeout if next handhake message timer 241 timeout = timeleft.tv_sec * 1000 + timeleft.tv_usec / 1000; 243 (void*)&timeout, sizeof(timeout)) < 0) 264 int timeout = data->socket_timeout.tv_sec * 1000 local 628 int timeout = tv->tv_sec * 1000 + tv->tv_usec\/1000; local 642 int timeout, sz = sizeof(timeout); local 666 int timeout = tv->tv_sec * 1000 + tv->tv_usec\/1000; local 680 int timeout, sz = sizeof(timeout); local [all...] |
/external/webkit/Tools/DumpRenderTree/chromium/ |
TestShellMac.mm | 41 // pages timeout if they take too long and tells the test harness via stdout. 46 // |timeout| is in seconds 47 - (id)initWithTimeout:(NSTimeInterval)timeout; 54 - (id)initWithTimeout:(NSTimeInterval)timeout 57 _timeout = timeout; 84 // this as a timeout. 106 // timeout, it can't do anything except terminate the test
|
/external/mtpd/ |
mtpd.c | 158 int timeout; local 175 timeout = initialize(argc, argv); 191 while (timeout >= 0) { 192 if (poll(pollfds, 3, timeout ? timeout : -1) == -1 && errno != EINTR) { 196 timeout = pollfds[0].revents ? 197 the_protocol->process() : the_protocol->timeout(); 206 if (timeout < 0) { 207 status = -timeout;
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
worker_mixin.py | 77 def timeout(self, test_input): member in class:WorkerMixin 78 """Compute the appropriate timeout value for a test.""" 79 # The DumpRenderTree watchdog uses 2.5x the timeout; we want to be 83 # Note that we need to convert the test timeout from a 85 driver_timeout_sec = 3.0 * float(test_input.timeout) / 1000.0 117 def run_test_with_timeout(self, test_input, timeout): 119 return self._run_test_in_another_thread(test_input, timeout) 156 test_input: Object containing the test filename and timeout 195 test_input: Object containing the test filename, uri and timeout
|