Home | History | Annotate | Download | only in libcc1

Lines Matching refs:connection

1 /* Plugin connection declarations
28 // The connection class represents one side of the connection
31 class connection
35 connection (int fd)
42 connection (int fd, int aux_fd)
49 virtual ~connection () = default;
51 connection (const connection &) = delete;
52 connection &operator= (const connection &) = delete;
61 // Read a single byte from the connection and verify that it
79 // function returns when the connection is closed.
85 // Register a callback with this connection. NAME is the name of
110 // Callbacks associated with this connection.