Searched refs:timeout (Results 176 - 200 of 260) sorted by relevance

1234567891011

/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.h109 status_t waitUntilRequestReceived(int32_t requestId, nsecs_t timeout) override;
151 status_t waitForNextFrame(nsecs_t timeout) override;
503 status_t waitUntilStateThenRelock(bool active, nsecs_t timeout);
681 * within the timeout.
683 status_t waitUntilRequestProcessed(int32_t requestId, nsecs_t timeout);
/frameworks/base/services/net/java/android/net/dhcp/
H A DDhcpPacket.java37 // DHCP client timeout.
1188 byte[] mac, Integer timeout, Inet4Address netMask, Inet4Address bcAddr,
1195 pkt.mLeaseTime = timeout;
1208 byte[] mac, Integer timeout, Inet4Address netMask, Inet4Address bcAddr,
1215 pkt.mLeaseTime = timeout;
1186 buildOfferPacket(int encap, int transactionId, boolean broadcast, Inet4Address serverIpAddr, Inet4Address clientIpAddr, byte[] mac, Integer timeout, Inet4Address netMask, Inet4Address bcAddr, List<Inet4Address> gateways, List<Inet4Address> dnsServers, Inet4Address dhcpServerIdentifier, String domainName) argument
1206 buildAckPacket(int encap, int transactionId, boolean broadcast, Inet4Address serverIpAddr, Inet4Address clientIpAddr, byte[] mac, Integer timeout, Inet4Address netMask, Inet4Address bcAddr, List<Inet4Address> gateways, List<Inet4Address> dnsServers, Inet4Address dhcpServerIdentifier, String domainName) argument
/frameworks/base/services/tests/notification/src/com/android/server/notification/
H A DBuzzBeepBlinkTest.java34 import static org.mockito.Mockito.timeout;
334 verify(mVibrator, timeout(MAX_VIBRATION_DELAY).times(1)).vibrate(anyInt(), anyString(),
544 verify(mVibrator, timeout(MAX_VIBRATION_DELAY).times(1)).vibrate(anyInt(), anyString(),
559 verify(mVibrator, timeout(MAX_VIBRATION_DELAY).times(1)).vibrate(anyInt(), anyString(),
/frameworks/base/tests/net/java/com/android/server/connectivity/
H A DNetdEventListenerServiceTest.java27 import static org.mockito.Mockito.timeout;
/frameworks/base/wifi/tests/src/android/net/wifi/
H A DWifiNetworkScoreCacheTest.java20 import static org.mockito.Mockito.timeout;
/frameworks/native/include/gui/
H A DIGraphicBufferProducer.h192 // * TIMED_OUT - the timeout set by setDequeueTimeout was exceeded while
266 // * TIMED_OUT - the timeout set by setDequeueTimeout was exceeded while
565 // This timeout also affects the attachBuffer call, which will block if
570 // timeout of -1. If set (to a value other than -1), this will disable
578 virtual status_t setDequeueTimeout(nsecs_t timeout) = 0;
/frameworks/native/opengl/include/EGL/
H A Deglext.h150 EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout);
156 typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout);
230 EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncNV (EGLSyncNV sync, EGLint flags, EGLTimeNV timeout);
237 typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCNVPROC) (EGLSyncNV sync, EGLint flags, EGLTimeNV timeout);
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES30.spec80 GLenum glClientWaitSync ( GLsync sync, GLbitfield flags, GLuint64 timeout )
81 void glWaitSync ( GLsync sync, GLbitfield flags, GLuint64 timeout )
/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java282 public final int timeout; field in class:NetworkManagementService.IdleTimerParams
286 IdleTimerParams(int timeout, int type) { argument
287 this.timeout = timeout;
1423 public void addIdleTimer(String iface, int timeout, final int type) { argument
1437 mConnector.execute("idletimer", "add", iface, Integer.toString(timeout),
1442 mActiveIdleTimers.put(iface, new IdleTimerParams(timeout, type));
1472 Integer.toString(params.timeout), Integer.toString(params.type));
2359 pw.print(" timeout="); pw.print(params.timeout);
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
H A DWifiAwareStateManager.java996 + "timeout or a race condition with cancel) -- msg=" + msg);
1138 WakeupMessage timeout = new WakeupMessage(mContext, getHandler(),
1141 mDataPathConfirmTimeoutMessages.put(networkSpecifier, timeout);
1142 timeout.schedule(
1156 WakeupMessage timeout = mDataPathConfirmTimeoutMessages.remove(
1158 if (timeout != null) {
1159 timeout.cancel();
1386 WakeupMessage timeout = new WakeupMessage(mContext, getHandler(),
1389 mDataPathConfirmTimeoutMessages.put(networkSpecifier, timeout);
1390 timeout
[all...]
/frameworks/base/core/java/android/app/
H A DIApplicationThread.aidl139 void scheduleTranslucentConversionComplete(IBinder token, boolean timeout);
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothGatt.aidl71 void registerSync(in ScanResult scanResult, in int skip, in int timeout, in IPeriodicAdvertisingCallback callback);
H A DBluetoothGatt.java610 int timeout, int status) {
613 " timeout=" + timeout + " status=" + status);
623 timeout, status);
/frameworks/base/core/tests/coretests/src/android/animation/
H A DEventsTest.java165 * Variant constructor that auto-releases the FutureWaiter after the specified timeout.
167 * @param timeout
169 public FutureReleaseListener(FutureWaiter future, long timeout) { argument
177 }, timeout);
462 // Set the listener to automatically timeout after an uncanceled animation
489 // Set the listener to automatically timeout after an uncanceled animation
606 * the appropriate timeout duration.
632 * the appropriate timeout duration.
659 * Verify that pausing an animator without resuming it causes a timeout.
687 * Verify that pausing a startDelayed animator without resuming it causes a timeout
[all...]
/frameworks/base/libs/input/
H A DPointerController.cpp241 // Remove the inactivity timeout, since we are fading now.
610 nsecs_t timeout = mLocked.inactivityTimeout == INACTIVITY_TIMEOUT_SHORT local
612 mLooper->sendMessageDelayed(timeout, mHandler, MSG_INACTIVITY_TIMEOUT);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseLinearLayoutManagerTest.java407 public void assertNoCallbacks(String msg, long timeout) throws Throwable { argument
408 callbackLatch.await(timeout, TimeUnit.SECONDS);
H A DBaseRecyclerViewAnimationsTest.java374 public void waitForDraw(long timeout) throws Throwable { argument
375 drawLatch.await(timeout * (DEBUG ? 100 : 1), TimeUnit.SECONDS);
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java284 /** note timeout presently ignored */
285 protected void connect(LocalSocketAddress address, int timeout) argument
520 // Note: The incoming timeout value is in milliseconds.
/frameworks/rs/tests/lldb/tests/
H A Drun_test.py158 '''Start a 'timeout' timer, to catch stalled execution.
160 This function will start a timer that will act as a timeout killing this
165 interval: the interval for the timeout, in seconds
188 '''This function will exit making sure the timeout thread is killed.
286 ('timeout', int),
309 # start the timeout counter
310 timer = _initialise_timer(android, args.timeout)
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DRTSPSource.cpp281 void NuPlayer::RTSPSource::setEOSTimeout(bool audio, int64_t timeout) { argument
283 mEOSTimeoutAudio = timeout;
285 mEOSTimeoutVideo = timeout;
/frameworks/base/libs/common_time/
H A Dcommon_time_server.cpp69 // timeout value representing an infinite timeout
77 // timeout used when waiting for a response to a WhoIsMaster request
93 // timeout used when waiting for a response to a WhoIsMaster request
209 int rc, timeout; local
232 timeout = static_cast<int>(t1 < t2 ? t1 : t2);
237 rc = poll(pfds, eventCnt, timeout);
680 // If we have no socket, then this must be a timeout to retry socket setup.
705 return becomeMaster("initial timeout");
714 return becomeInitial("timeout pani
[all...]
/frameworks/native/libs/vr/libpdx_default_transport/
H A Dpdx_benchmarks.cpp178 int timeout = 1; member in struct:Options
191 const char kOptionTimeout[] = "timeout";
497 ProgramOptions.timeout) {}
999 std::cout << "\t--timeout <timeout ms | -1> : Timeout to wait for services." << std::endl;
1061 ProgramOptions.timeout = std::stoi(optarg);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRadioIndication.java295 public void stkCallSetup(int indicationType, long timeout) { argument
298 if (RIL.RILJ_LOGD) mRil.unsljLogRet(RIL_UNSOL_STK_CALL_SETUP, timeout);
301 mRil.mCatCallSetUpRegistrant.notifyRegistrant(new AsyncResult (null, timeout, null));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceHal.java436 * Initiate a P2P service discovery with a (optional) timeout.
438 * @param timeout Max time to be spent is peforming discovery.
443 public boolean find(int timeout) { argument
447 if (timeout < 0) {
448 Log.e(TAG, "Invalid timeout value: " + timeout);
451 SupplicantResult<Void> result = new SupplicantResult("find(" + timeout + ")");
453 result.setResult(mISupplicantP2pIface.find(timeout));
565 Log.e(TAG, "Invalid group timeout value " + timeoutInSec);
1114 * timeout occur
[all...]
/frameworks/base/services/core/java/com/android/server/power/
H A DPowerManagerService.java125 // Message: Sent when a user activity timeout occurs to update the power state.
178 // Default timeout in milliseconds. This is only used until the settings
183 // Screen brightness boost timeout.
350 // draining faster than it is charging and the user activity timeout has expired.
394 // If the battery level drops by this percentage and the user activity timeout
411 // The minimum screen off timeout, in milliseconds.
415 // This is subtracted from the end of the screen off timeout so the
416 // minimum screen off timeout should be longer than this.
420 // off timeout. If the screen off timeout i
[all...]

Completed in 657 milliseconds

1234567891011