HomeSort by relevance Sort by last modified time
    Searched defs:CLOSED (Results 1 - 25 of 261) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/guava/guava/src/com/google/common/collect/
BoundType.java 20 * Indicates whether an endpoint of some range is contained in the range itself ("closed") or not
21 * ("open"). If a range is unbounded on a side, it is neither open nor closed on that side; the
34 return CLOSED;
40 CLOSED {
51 return inclusive ? CLOSED : OPEN;
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
ZipFileState.java 24 * Zip file is closed.
26 CLOSED,
  /cts/libs/json/src/com/android/json/stream/
JsonScope.java 26 * it is closed.
38 * before it is closed.
65 * A document that's been closed and cannot be accessed.
67 CLOSED,
  /frameworks/base/core/java/android/util/
JsonScope.java 26 * it is closed.
38 * before it is closed.
65 * A document that's been closed and cannot be accessed.
67 CLOSED,
  /frameworks/native/services/surfaceflinger/
Barrier.h 29 inline Barrier() : state(CLOSED) { }
44 state = CLOSED;
52 while (state == CLOSED) {
57 enum { OPENED, CLOSED };
  /hardware/qcom/display/msm8084/liboverlay/pipes/
overlayGenPipe.h 66 /* is closed */
83 /* set Closed pipe */
90 /* Pipe open or closed */
92 CLOSED,
  /hardware/qcom/display/msm8960/liboverlay/pipes/
overlayGenPipe.h 67 /* is closed */
79 /* set Closed pipe */
93 /* Pipe open or closed */
95 CLOSED,
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLEngineResult.java 94 * The operation just closed this side of the
96 * could not be completed because it was already closed.
98 CLOSED;
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
ScanManagerMXBean.java 71 * The {@link #CLOSED} state means
72 * that the {@link ScanManagerMXBean} was closed and is no longer usable.
102 CLOSED
135 * running or scheduled, or the MBean is closed.
167 * Switches the state to CLOSED.
168 * When closed, this MBean cannot be used any more.
181 * running or scheduled, or the MBean is closed.
227 * running or scheduled, or the MBean is closed.
  /prebuilts/jdk/jdk8/linux-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
ScanManagerMXBean.java 71 * The {@link #CLOSED} state means
72 * that the {@link ScanManagerMXBean} was closed and is no longer usable.
102 CLOSED
135 * running or scheduled, or the MBean is closed.
167 * Switches the state to CLOSED.
168 * When closed, this MBean cannot be used any more.
181 * running or scheduled, or the MBean is closed.
227 * running or scheduled, or the MBean is closed.
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSState.java 61 CLOSED("closed", StateClass.closed);
64 probing, announcing, announced, canceling, canceled, closing, closed enum constant in enum:DNSState.StateClass
113 return CLOSED;
114 case CLOSED:
115 return CLOSED;
144 case CLOSED:
145 return CLOSED;
209 * @return <code>true</code> if closed state, <code>false</code> otherwis
    [all...]
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DataChannel.java 93 public enum State { CONNECTING, OPEN, CLOSING, CLOSED };
PeerConnection.java 52 NEW, CHECKING, CONNECTED, COMPLETED, FAILED, DISCONNECTED, CLOSED
58 HAVE_REMOTE_PRANSWER, CLOSED
  /external/ppp/pppd/
fsm.h 125 #define CLOSED 2 /* Up, hasn't been opened */
  /external/replicaisland/src/com/replica/replicaisland/
DoorAnimationComponent.java 25 public static final int CLOSED = 0;
111 mSprite.playAnimation(Animation.CLOSED);
161 mSprite.playAnimation(Animation.CLOSED);
  /packages/apps/Camera2/src/com/android/camera/device/
SingleDeviceStateMachine.java 40 * Closed Opened -> Execute onDeviceOpening.
42 * Opening Closed -> Nothing.
43 * Opened Closed -> Execute onDeviceClosing.
45 * Closing Closed -> Nothing.
46 * Closed Closed -> Execute onDeviceClosed.
60 CLOSED
66 CLOSED
96 * state of the device are initially set to "Closed"
110 mTargetState = TargetState.CLOSED;
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketChannelClient.java 60 NEW, CONNECTED, REGISTERED, CLOSED, ERROR
146 case CLOSED:
147 Log.e(TAG, "WebSocket send() in error or closed state : " + message);
186 state = WebSocketConnectionState.CLOSED;
264 Log.d(TAG, "WebSocket connection closed. Code: " + code
273 if (state != WebSocketConnectionState.CLOSED) {
274 state = WebSocketConnectionState.CLOSED;
WebSocketRTCClient.java 45 NEW, CONNECTED, CLOSED, ERROR
127 roomState = ConnectionState.CLOSED;
  /external/scapy/scapy/layers/
inet.py     [all...]
  /external/syslinux/core/lwip/src/include/lwip/
tcp.h 68 * @param p The received data (or NULL when the connection has been closed!)
102 * receives a RST or is unexpectedly closed for any other reason.
107 * @param err Error code to indicate why the pcb has been closed
128 CLOSED = 0,
183 #define TF_RXCLOSED ((u8_t)0x10U) /* rx closed by tcp_shutdown */
184 #define TF_FIN ((u8_t)0x20U) /* Connection was closed locally (FIN segment enqueued). */
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
CameraControlPane.java 87 CLOSED,
104 CLOSED
548 * This method is called when the session is closed.
550 * <p>A session is closed when a new session is created by the parent camera device,
551 * or when the parent camera device is closed (either by the user closing the device,
554 * <p>Once a session is closed, all methods on it will throw an IllegalStateException, and
565 setSessionState(SessionState.CLOSED);
607 setCameraState(CameraState.CLOSED);
617 setCameraState(CameraState.CLOSED);
629 case CLOSED
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetNavigationTester.java 17 import static com.google.common.collect.BoundType.CLOSED;
149 assertEquals(a, sortedMultiset.headMultiset(samples.e0, CLOSED).lastEntry());
150 assertEquals(a, sortedMultiset.tailMultiset(samples.e0, CLOSED).firstEntry());
197 assertEquals(a, sortedMultiset.headMultiset(a.getElement(), CLOSED).lastEntry());
198 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), CLOSED).lastEntry());
199 assertEquals(c, sortedMultiset.headMultiset(c.getElement(), CLOSED).lastEntry());
206 assertEquals(a, sortedMultiset.tailMultiset(a.getElement(), CLOSED).firstEntry());
207 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), CLOSED).firstEntry());
208 assertEquals(c, sortedMultiset.tailMultiset(c.getElement(), CLOSED).firstEntry());
294 expectAddFailure(sortedMultiset.tailMultiset(b.getElement(), CLOSED), a)
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothSocket.java 151 CLOSED,
384 if (mSocketState == SocketState.CLOSED) throw new IOException("socket closed");
392 if (mSocketState == SocketState.CLOSED) throw new IOException("socket closed");
406 if (mSocketState == SocketState.CLOSED) {
407 throw new IOException("bt socket closed");
423 if (mSocketState == SocketState.CLOSED) return EBADFD;
558 throw new IOException("bt socket closed, read return: " + ret);
605 if (mSocketState == SocketState.CLOSED) {
    [all...]
  /device/google/marlin/camera/QCamera2/HAL3/
QCamera3HWI.h 247 // | | CLOSED | OPENED | INITIALIZED | CONFIGURED | STARTED | ERROR | DEINIT |
249 // | CLOSED | \ | open | x | x | x | x | x |
265 CLOSED,
  /external/brotli/java/org/brotli/dec/
Decode.java 31 private static final int CLOSED = 11;
168 if (s.runningState == CLOSED) {
171 s.runningState = CLOSED;
722 if (s.runningState == CLOSED) {
    [all...]

Completed in 4649 milliseconds

1 2 3 4 5 6 7 8 91011