HomeSort by relevance Sort by last modified time
    Searched full:socketio (Results 1 - 25 of 34) sorted by null

1 2

  /external/python/cpython2/Lib/idlelib/
rpc.py 8 | SocketServer.BaseRequestHandler | | SocketIO |
23 RPCHandler inherits the mix-in class SocketIO, which provides these methods.
124 class SocketIO(object):
202 msg = "*** Internal Error: rpc.py:SocketIO.localcall()\n\n"\
476 #----------------- end class SocketIO --------------------
492 class RPCHandler(SocketServer.BaseRequestHandler, SocketIO):
499 SocketIO.__init__(self, sock)
509 class RPCClient(SocketIO):
526 SocketIO.__init__(self, working_sock)
run.py 70 the mix-in class SocketIO.
79 call MyHandler(SocketIO) register/unregister methods via the reference to
295 "override SocketIO method - wait for MainThread to shut us down"
299 "Override SocketIO method - terminate wait on callback and exit thread"
RemoteDebugger.py 64 # calls rpc.SocketIO.remotecall() via run.MyHandler instance
NEWS.txt 834 - rpc.py:SocketIO - Large modules were generating large pickles when downloade
    [all...]
  /external/python/cpython3/Lib/idlelib/
rpc.py 8 | socketserver.BaseRequestHandler | | SocketIO |
23 RPCHandler inherits the mix-in class SocketIO, which provides these methods.
125 class SocketIO(object):
207 msg = "*** Internal Error: rpc.py:SocketIO.localcall()\n\n"\
484 #----------------- end class SocketIO --------------------
503 class RPCHandler(socketserver.BaseRequestHandler, SocketIO):
510 SocketIO.__init__(self, sock)
521 class RPCClient(SocketIO):
538 SocketIO.__init__(self, working_sock)
run.py 95 the mix-in class SocketIO.
104 call MyHandler(SocketIO) register/unregister methods via the reference to
430 "override SocketIO method - wait for MainThread to shut us down"
434 "Override SocketIO method - terminate wait on callback and exit thread"
debugger_r.py 64 # calls rpc.SocketIO.remotecall() via run.MyHandler instance
165 ### Will probably need to extend rpc.py:SocketIO._proxify at that time.
NEWS2x.txt 331 - rpc.py:SocketIO - Large modules were generating large pickles when downloaded
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
rpc.py 8 | SocketServer.BaseRequestHandler | | SocketIO |
23 RPCHandler inherits the mix-in class SocketIO, which provides these methods.
124 class SocketIO(object):
202 msg = "*** Internal Error: rpc.py:SocketIO.localcall()\n\n"\
479 #----------------- end class SocketIO --------------------
495 class RPCHandler(SocketServer.BaseRequestHandler, SocketIO):
502 SocketIO.__init__(self, sock)
512 class RPCClient(SocketIO):
529 SocketIO.__init__(self, working_sock)
run.py 57 the mix-in class SocketIO.
66 call MyHandler(SocketIO) register/unregister methods via the reference to
276 "override SocketIO method - wait for MainThread to shut us down"
280 "Override SocketIO method - terminate wait on callback and exit thread"
RemoteDebugger.py 65 # calls rpc.SocketIO.remotecall() via run.MyHandler instance
NEWS.txt 423 - rpc.py:SocketIO - Large modules were generating large pickles when downloaded
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
rpc.py 8 | SocketServer.BaseRequestHandler | | SocketIO |
23 RPCHandler inherits the mix-in class SocketIO, which provides these methods.
124 class SocketIO(object):
202 msg = "*** Internal Error: rpc.py:SocketIO.localcall()\n\n"\
479 #----------------- end class SocketIO --------------------
495 class RPCHandler(SocketServer.BaseRequestHandler, SocketIO):
502 SocketIO.__init__(self, sock)
512 class RPCClient(SocketIO):
529 SocketIO.__init__(self, working_sock)
run.py 57 the mix-in class SocketIO.
66 call MyHandler(SocketIO) register/unregister methods via the reference to
276 "override SocketIO method - wait for MainThread to shut us down"
280 "Override SocketIO method - terminate wait on callback and exit thread"
RemoteDebugger.py 65 # calls rpc.SocketIO.remotecall() via run.MyHandler instance
NEWS.txt 423 - rpc.py:SocketIO - Large modules were generating large pickles when downloaded
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 8 | SocketServer.BaseRequestHandler | | SocketIO |
23 RPCHandler inherits the mix-in class SocketIO, which provides these methods.
124 class SocketIO(object):
202 msg = "*** Internal Error: rpc.py:SocketIO.localcall()\n\n"\
479 #----------------- end class SocketIO --------------------
495 class RPCHandler(SocketServer.BaseRequestHandler, SocketIO):
502 SocketIO.__init__(self, sock)
512 class RPCClient(SocketIO):
529 SocketIO.__init__(self, working_sock)
run.py 57 the mix-in class SocketIO.
66 call MyHandler(SocketIO) register/unregister methods via the reference to
276 "override SocketIO method - wait for MainThread to shut us down"
280 "Override SocketIO method - terminate wait on callback and exit thread"
RemoteDebugger.py 65 # calls rpc.SocketIO.remotecall() via run.MyHandler instance
NEWS.txt 423 - rpc.py:SocketIO - Large modules were generating large pickles when downloaded
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 8 | SocketServer.BaseRequestHandler | | SocketIO |
23 RPCHandler inherits the mix-in class SocketIO, which provides these methods.
124 class SocketIO(object):
202 msg = "*** Internal Error: rpc.py:SocketIO.localcall()\n\n"\
479 #----------------- end class SocketIO --------------------
495 class RPCHandler(SocketServer.BaseRequestHandler, SocketIO):
502 SocketIO.__init__(self, sock)
512 class RPCClient(SocketIO):
529 SocketIO.__init__(self, working_sock)
run.py 57 the mix-in class SocketIO.
66 call MyHandler(SocketIO) register/unregister methods via the reference to
276 "override SocketIO method - wait for MainThread to shut us down"
280 "Override SocketIO method - terminate wait on callback and exit thread"
RemoteDebugger.py 65 # calls rpc.SocketIO.remotecall() via run.MyHandler instance
NEWS.txt 423 - rpc.py:SocketIO - Large modules were generating large pickles when downloaded
  /external/python/cpython3/Lib/
socket.py 237 raw = SocketIO(self, rawmode)
543 class SocketIO(io.RawIOBase):
612 """True if the SocketIO is open for reading.
619 """True if the SocketIO is open for writing.
626 """True if the SocketIO is open for seeking.
650 """Close the SocketIO object. This doesn't close the underlying

Completed in 5434 milliseconds

1 2