Home
last modified time | relevance | path

Searched refs:ConnectionObject (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Modules/_multiprocessing/
Dconnection.h39 ConnectionObject *self; in connection_new()
61 self = PyObject_New(ConnectionObject, type); in connection_new()
79 connection_dealloc(ConnectionObject* self) in connection_dealloc()
97 connection_sendbytes(ConnectionObject *self, PyObject *args) in connection_sendbytes()
145 connection_recvbytes(ConnectionObject *self, PyObject *args) in connection_recvbytes()
189 connection_recvbytes_into(ConnectionObject *self, PyObject *args) in connection_recvbytes_into()
260 connection_send_obj(ConnectionObject *self, PyObject *obj) in connection_send_obj()
293 connection_recv_obj(ConnectionObject *self) in connection_recv_obj()
337 connection_poll(ConnectionObject *self, PyObject *args) in connection_poll()
375 connection_fileno(ConnectionObject* self) in connection_fileno()
[all …]
Dpipe_connection.c18 conn_send_string(ConnectionObject *conn, char *string, size_t length) in conn_send_string()
42 conn_recv_string(ConnectionObject *conn, char *buffer, in conn_recv_string()
93 conn_poll(ConnectionObject *conn, double timeout, PyThreadState *_save) in conn_poll()
Dsocket_connection.c103 conn_send_string(ConnectionObject *conn, char *string, size_t length) in conn_send_string()
146 conn_recv_string(ConnectionObject *conn, char *buffer, in conn_recv_string()
188 conn_poll(ConnectionObject *conn, double timeout, PyThreadState *_save) in conn_poll()
Dmultiprocessing.h176 } ConnectionObject; typedef