HomeSort by relevance Sort by last modified time
    Searched refs:UNAVAILABLE (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /tools/tradefederation/core/remote/src/com/android/tradefed/device/
FreeDeviceState.java 27 UNAVAILABLE,
  /libcore/ojluni/src/main/java/sun/nio/ch/
IOStatus.java 37 @Native public static final int UNAVAILABLE = -2; // Nothing available (non-blocking)
52 // return IOStatus.normalize(n); // Converts UNAVAILABLE to zero
60 if (n == UNAVAILABLE)
66 return (n >= UNAVAILABLE);
70 if (n == UNAVAILABLE)
76 return (n >= UNAVAILABLE);
SinkChannelImpl.java 172 end((n > 0) || (n == IOStatus.UNAVAILABLE));
195 end((n > 0) || (n == IOStatus.UNAVAILABLE));
SourceChannelImpl.java 176 end((n > 0) || (n == IOStatus.UNAVAILABLE));
207 end((n > 0) || (n == IOStatus.UNAVAILABLE));
DatagramChannelImpl.java 391 if (n == IOStatus.UNAVAILABLE)
399 if (n == IOStatus.UNAVAILABLE)
422 end((n > 0) || (n == IOStatus.UNAVAILABLE));
521 end((n > 0) || (n == IOStatus.UNAVAILABLE));
602 end((n > 0) || (n == IOStatus.UNAVAILABLE));
631 end((n > 0) || (n == IOStatus.UNAVAILABLE));
658 end((n > 0) || (n == IOStatus.UNAVAILABLE));
687 end((n > 0) || (n == IOStatus.UNAVAILABLE));
    [all...]
SocketChannelImpl.java 446 end(n > 0 || (n == IOStatus.UNAVAILABLE));
486 end(n > 0 || (n == IOStatus.UNAVAILABLE));
517 end(n > 0 || (n == IOStatus.UNAVAILABLE));
550 end((n > 0) || (n == IOStatus.UNAVAILABLE));
580 end((n > 0) || (n == IOStatus.UNAVAILABLE));
698 end((n > 0) || (n == IOStatus.UNAVAILABLE));
796 end((n > 0) || (n == IOStatus.UNAVAILABLE));
    [all...]
UnixAsynchronousSocketChannelImpl.java 356 if (n == IOStatus.UNAVAILABLE) {
418 if (n == IOStatus.UNAVAILABLE) {
526 int n = IOStatus.UNAVAILABLE;
541 if (n == IOStatus.UNAVAILABLE) {
613 if (n == IOStatus.UNAVAILABLE) {
709 int n = IOStatus.UNAVAILABLE;
724 if (n == IOStatus.UNAVAILABLE) {
UnixAsynchronousServerSocketChannelImpl.java 172 if (n == IOStatus.UNAVAILABLE) {
306 if (n == IOStatus.UNAVAILABLE) {
378 // Returns 1 on success, or IOStatus.UNAVAILABLE.
  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
MojoResult.java 25 public static final int UNAVAILABLE = 14;
69 case UNAVAILABLE:
70 return "UNAVAILABLE";
  /external/apache-http/src/org/apache/http/util/
VersionInfo.java 64 /** A string constant for unavailable information. */
65 public final static String UNAVAILABLE = "UNAVAILABLE";
109 infoModule = (module != null) ? module : UNAVAILABLE;
110 infoRelease = (release != null) ? release : UNAVAILABLE;
111 infoTimestamp = (time != null) ? time : UNAVAILABLE;
112 infoClassloader = (clsldr != null) ? clsldr : UNAVAILABLE;
183 // If version info is missing, a single "UNAVAILABLE" for the module
185 if (!UNAVAILABLE.equals(infoRelease))
187 if (!UNAVAILABLE.equals(infoTimestamp)
    [all...]
  /hardware/interfaces/gnss/1.0/
IGnssGeofenceCallback.hal 80 * When the GNSS system is unavailable, gnssGeofenceStatusCb must be
103 UNAVAILABLE = (1 << 0L),
141 * signals, it will call this callback with UNAVAILABLE parameter.
143 * @param status - UNAVAILABLE or AVAILABLE.
  /packages/apps/LegacyCamera/src/com/android/camera/
Storage.java 44 public static final long UNAVAILABLE = -1L;
112 return UNAVAILABLE;
118 return UNAVAILABLE;
  /external/protobuf/src/google/protobuf/stubs/
status.cc 73 case UNAVAILABLE:
74 return "UNAVAILABLE";
status.h 60 UNAVAILABLE = 14,
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
status.h 60 UNAVAILABLE = 14,
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/companion/
CompanionDeviceTracker.java 89 deviceState = FreeDeviceState.UNAVAILABLE;
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiDirectServicesList.java 99 case WifiP2pDevice.UNAVAILABLE:
100 return "Unavailable";
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapConstants.java 103 public static final String UNAVAILABLE = "UNAVAILABLE";
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pDevice.java 115 public static final int UNAVAILABLE = 4;
118 public int status = UNAVAILABLE;
  /packages/apps/Camera2/src/com/android/camera/
Storage.java 55 public static final long UNAVAILABLE = -1L;
499 return UNAVAILABLE;
505 return UNAVAILABLE;
  /developers/samples/android/connectivity/wifidirect/DirectP2P/Application/src/main/java/com/example/android/wifidirectp2p/
DeviceListFragment.java 81 case WifiP2pDevice.UNAVAILABLE:
82 return "Unavailable";
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
DeviceListFragment.java 81 case WifiP2pDevice.UNAVAILABLE:
82 return "Unavailable";
  /external/autotest/client/cros/cellular/
cellular.py 99 'UNAVAILABLE',
150 UeLteDataStatus.UNAVAILABLE: UeGenericDataStatus.NONE
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
CameraControlPane.java 82 * android.hardware.camera2.CameraDevice.StateCallback, plus UNAVAILABLE for
86 UNAVAILABLE,
605 setCameraState(CameraState.UNAVAILABLE);
663 case UNAVAILABLE:
  /tools/tradefederation/core/tests/src/com/android/tradefed/command/remote/
RemoteManagerFuncTest.java 296 state.put(device, FreeDeviceState.UNAVAILABLE);
463 mockHandler.failure((String)EasyMock.anyObject(), EasyMock.eq(FreeDeviceState.UNAVAILABLE),
487 state.put(device, FreeDeviceState.UNAVAILABLE);

Completed in 291 milliseconds

1 2 3 4