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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
asyncore.py 225 accepting = False variable in class:dispatcher
264 if self.accepting and self.addr:
332 self.accepting = True
400 self.accepting = False
434 if self.accepting:
435 # accepting sockets are never connected, they "spawn" new
452 if self.accepting:
453 # Accepting sockets shouldn't get a write event.
  /prebuilts/gdb/darwin-x86/lib/python2.7/
asyncore.py 135 # accepting sockets should not be writable
136 if is_w and not obj.accepting:
183 # accepting sockets should not be writable
184 if obj.writable() and not obj.accepting:
227 accepting = False variable in class:dispatcher
267 if self.accepting and self.addr:
335 self.accepting = True
405 self.accepting = False
440 if self.accepting:
441 # accepting sockets are never connected, they "spawn" ne
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
asyncore.py 135 # accepting sockets should not be writable
136 if is_w and not obj.accepting:
183 # accepting sockets should not be writable
184 if obj.writable() and not obj.accepting:
227 accepting = False variable in class:dispatcher
267 if self.accepting and self.addr:
335 self.accepting = True
405 self.accepting = False
440 if self.accepting:
441 # accepting sockets are never connected, they "spawn" ne
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 135 # accepting sockets should not be writable
136 if is_w and not obj.accepting:
183 # accepting sockets should not be writable
184 if obj.writable() and not obj.accepting:
227 accepting = False variable in class:dispatcher
267 if self.accepting and self.addr:
335 self.accepting = True
405 self.accepting = False
440 if self.accepting:
441 # accepting sockets are never connected, they "spawn" ne
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asyncore.py 135 # accepting sockets should not be writable
136 if is_w and not obj.accepting:
183 # accepting sockets should not be writable
184 if obj.writable() and not obj.accepting:
227 accepting = False variable in class:dispatcher
267 if self.accepting and self.addr:
335 self.accepting = True
405 self.accepting = False
440 if self.accepting:
441 # accepting sockets are never connected, they "spawn" ne
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
UnixAsynchronousServerSocketChannelImpl.java 59 private final AtomicBoolean accepting = new AtomicBoolean(); field in class:UnixAsynchronousServerSocketChannelImpl
61 accepting.set(false);
205 // re-enable accepting and invoke handler
294 // check and set flag to prevent concurrent accepting
295 if (!accepting.compareAndSet(false, true))
349 // re-enable accepting before invoking handler
  /external/libevent/
listener.c 99 struct accepting_socket **accepting; member in struct:evconnlistener_iocp
712 struct accepting_socket *as = lev_iocp->accepting[i];
734 struct accepting_socket *as = lev_iocp->accepting[i];
849 lev->accepting = mm_calloc(lev->n_accepting,
851 if (!lev->accepting) {
856 lev->accepting[i] = new_accepting_socket(lev, ss.ss_family);
857 if (!lev->accepting[i]) {
858 event_warnx("Couldn't create accepting socket");
861 if (cb && start_accepting(lev->accepting[i]) < 0) {
862 event_warnx("Couldn't start accepting on socket")
    [all...]
  /external/guice/extensions/struts2/lib/
jetty-6.1.0.jar 

Completed in 860 milliseconds