Lines Matching full:connection
74 * connection between two UniPro interfaces.
77 * end of the connection coupled with a reply message returned to
79 * dependent on the protocol associated with the connection.
82 * directly usable by protocol handlers: the operation's connection
93 struct gb_connection *connection; member
111 struct list_head links; /* connection->operations */
139 void gb_connection_recv(struct gb_connection *connection,
144 size_t gb_operation_get_payload_size_max(struct gb_connection *connection);
146 gb_operation_create_flags(struct gb_connection *connection,
152 gb_operation_create(struct gb_connection *connection, in gb_operation_create() argument
156 return gb_operation_create_flags(connection, type, request_size, in gb_operation_create()
161 gb_operation_create_core(struct gb_connection *connection,
191 int gb_operation_sync_timeout(struct gb_connection *connection, int type,
195 int gb_operation_unidirectional_timeout(struct gb_connection *connection,
199 static inline int gb_operation_sync(struct gb_connection *connection, int type, in gb_operation_sync() argument
203 return gb_operation_sync_timeout(connection, type, in gb_operation_sync()
208 static inline int gb_operation_unidirectional(struct gb_connection *connection, in gb_operation_unidirectional() argument
211 return gb_operation_unidirectional_timeout(connection, type, in gb_operation_unidirectional()