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

1 2

  /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,
JsonReader.java 331 case CLOSED:
332 throw new IllegalStateException("JsonReader is closed");
374 * this reader is closed.
392 * this reader is closed.
410 * reader is closed.
508 stack.add(JsonScope.CLOSED);
    [all...]
  /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/base/services/surfaceflinger/
Barrier.h 29 inline Barrier() : state(CLOSED) { }
38 state = CLOSED;
42 while (state == CLOSED) {
47 enum { OPENED, CLOSED };
  /external/webkit/Source/WebCore/websockets/
WebSocket.cpp 121 m_state = CLOSED;
128 m_state = CLOSED;
134 m_state = CLOSED;
140 m_state = CLOSED;
146 m_state = CLOSED;
163 // No exception is raised if the connection was once established but has subsequently been closed.
164 if (m_state == CLOSED) {
176 if (m_state == CLOSED)
178 m_state = CLOSED;
212 ASSERT(m_state == CLOSED);
    [all...]
WebSocket.idl 48 const unsigned short CLOSED = 2;
WebSocket.h 61 CLOSED = 2
  /frameworks/base/core/java/android/bluetooth/
BluetoothSocket.java 100 CLOSED
204 if (mSocketState == SocketState.CLOSED) throw new IOException("socket closed");
226 if (mSocketState == SocketState.CLOSED) return;
239 mSocketState = SocketState.CLOSED;
293 if (mSocketState == SocketState.CLOSED) return EBADFD;
303 if (mSocketState == SocketState.CLOSED) throw new IOException("socket closed");
316 if (mSocketState == SocketState.CLOSED) throw new IOException("socket closed");
    [all...]
  /external/webkit/Source/WebCore/page/
EventSource.idl 49 const unsigned short CLOSED = 2;
EventSource.cpp 133 if (m_state != CLOSED)
162 if (m_state == CLOSED)
170 m_state = CLOSED;
215 m_state = CLOSED;
240 m_state = CLOSED;
246 m_state = CLOSED;
EventSource.h 66 CLOSED = 2,
  /libcore/luni/src/main/java/javax/net/ssl/
SSLEngineResult.java 71 * The operation closed this side of the communication or was already
72 * closed.
74 CLOSED,
  /external/ppp/pppd/
fsm.c 103 f->state = CLOSED;
132 case CLOSED:
181 case CLOSED:
231 f->state = nextstate == CLOSING ? CLOSED : STOPPED;
247 * the CLOSED state.
261 f->state = CLOSED;
293 f->state = (f->state == CLOSING)? CLOSED: STOPPED;
422 case CLOSED:
423 /* Go away, we're closed */
502 case CLOSED
    [all...]
fsm.h 125 #define CLOSED 2 /* Up, hasn't been opened */
  /external/chromium/net/websockets/
websocket.cc 68 if (ready_state_ == CLOSING || ready_state_ == CLOSED) {
93 ready_state_ = CLOSED;
97 // If the readyState attribute is in the CLOSING or CLOSED state, do nothing
98 if (ready_state_ == CLOSING || ready_state_ == CLOSED)
136 ready_state_ = CLOSED;
139 if (ready_state_ != CLOSED) {
214 DCHECK_EQ(CLOSED, ready_state_);
224 // 4.2 3-8-3 If the WebSocket connection is not already closed,
230 // WebSocket connection is closed.
286 case CLOSED
    [all...]
websocket_job.cc 76 DCHECK_EQ(CLOSED, state_);
122 case CLOSED:
134 state_ = CLOSED;
146 state_ = CLOSED;
178 if (state_ == CLOSED)
187 if (state_ == CLOSED)
216 if (state_ == CLOSED)
239 state_ = CLOSED;
websocket_job.h 40 CLOSED = 3,
  /external/chromium/chrome/browser/sync/syncable/
directory_manager.h 34 CLOSED,
63 // Marks a directory as closed. It might take a while until all the
directory_manager.cc 50 << "Dir " << managed_directory_->name() << " not closed!";
90 // Marks a directory as closed. It might take a while until all the file
107 DirectoryManagerEvent event = { DirectoryManagerEvent::CLOSED, name };
  /external/chromium/chrome/browser/chromeos/notifications/
notification_browsertest.cc 169 EXPECT_EQ(NotificationPanel::CLOSED, tester->state());
176 // [CLOSED] -add->[STICKY_AND_NEW] -mouse-> [KEEP_SIZE] -remove/add->
177 // [KEEP_SIZE] -remove-> [CLOSED] -add-> [STICKY_AND_NEW] -remove-> [CLOSED]
183 EXPECT_EQ(NotificationPanel::CLOSED, tester->state());
215 EXPECT_EQ(NotificationPanel::CLOSED, tester->state());
223 EXPECT_EQ(NotificationPanel::CLOSED, tester->state());
261 // [CLOSED] -add,add->[STICKY_AND_NEW] -stale-> [MINIMIZED] -remove->
262 // [MINIMIZED] -remove-> [CLOSED]
269 EXPECT_EQ(NotificationPanel::CLOSED, tester->state())
    [all...]
notification_panel.h 39 // or the system closed the panel.
81 CLOSED, // The panel is closed.
notification_panel.cc 57 case NotificationPanel::CLOSED:
58 return "closed";
400 state_(CLOSED),
491 if (state_ == CLOSED || state_ == MINIMIZED)
516 SET_STATE(CLOSED);
522 if (state_ != CLOSED &&
531 if (state_ == CLOSED || state_ == MINIMIZED)
567 // or the notification is being closed.
568 if (active_ == view || (view && view->closed()))
593 SET_STATE(CLOSED);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLEngineImpl.java 49 // indicates if engine was closed (it means that
101 throw new SSLException("Engine has already been closed.");
145 throw new SSLException("Inbound is closed before close_notify "
411 return new SSLEngineResult(SSLEngineResult.Status.CLOSED,
576 return new SSLEngineResult(SSLEngineResult.Status.CLOSED,
624 SSLEngineResult.Status.CLOSED,
632 return new SSLEngineResult(SSLEngineResult.Status.CLOSED,
751 ? SSLEngineResult.Status.CLOSED
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLEngineImplTest.java 449 SSLEngineResult.Status.CLOSED);
453 // should throw SSLException "engine already closed"
470 SSLEngineResult.Status.CLOSED);
474 // should throw SSLException "engine already closed"
530 SSLEngineResult.Status.CLOSED,
566 assertTrue("Outbound should be closed.",
568 assertTrue("Inbound should be closed.",
612 assertFalse("Outbound should not be closed.",
614 assertTrue("Inbound should be closed.",
624 SSLEngineResult.Status.CLOSED,
    [all...]
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLEngineResultTest.java 117 assertTrue("CLOSED object does not define", findEl(enS,
118 SSLEngineResult.Status.CLOSED));
140 assertEquals(SSLEngineResult.Status.valueOf("CLOSED"),
141 SSLEngineResult.Status.CLOSED);

Completed in 680 milliseconds

1 2