HomeSort by relevance Sort by last modified time
    Searched refs:timeoutInMs (Results 1 - 8 of 8) sorted by null

  /cts/suite/audio_quality/lib/include/
ClientSocket.h 27 * @param timeoutInMs 0 means no time-out
29 virtual bool readData(char* data, int len, int timeoutInMs = 0);
  /cts/suite/audio_quality/lib/src/
ClientSocket.cpp 76 bool ClientSocket::readData(char* data, int len, int timeoutInMs)
78 bool useTimeout = (mTimeoutEnabled && (timeoutInMs > 0));
92 timeInSec = timeoutInMs / 1000;
93 timeInUs = (timeoutInMs % 1000) * 1000;
  /frameworks/base/core/java/android/nfc/
INfcAdapter.aidl 47 void pausePolling(int timeoutInMs);
NfcAdapter.java 719 * Pauses polling for a {@code timeoutInMs} millis. If polling must be resumed before timeout,
723 public void pausePolling(int timeoutInMs) {
725 sService.pausePolling(timeoutInMs);
    [all...]
  /cts/suite/audio_quality/test/
RemoteAudioFakeTcpTest.cpp 71 virtual bool readData(char* data, int len, int timeoutInMs = 0) {
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java 727 public void pausePolling(int timeoutInMs) {
730 if (timeoutInMs <= 0 || timeoutInMs > MAX_POLLING_PAUSE_TIMEOUT) {
731 Log.e(TAG, "Refusing to pause polling for " + timeoutInMs + "ms.");
739 mHandler.obtainMessage(MSG_RESUME_POLLING), timeoutInMs);
    [all...]
  /hardware/invensense/65xx/libsensors_iio/
MPLSensor.cpp     [all...]
  /hardware/invensense/6515/libsensors_iio/
MPLSensor.cpp     [all...]

Completed in 259 milliseconds