Lines Matching defs:connection

60 		ConnectionListener* connectionListener, Connection* connection)
63 fConnection(connection),
75 fThread = spawn_thread(&_ThreadEntry, "connection initializer",
91 // finish connection initialization
95 // create a client connection
104 fConnection = NULL; // connection belongs to client connection now
107 // add the client connection to the server
217 // stop the connection listener
240 // terminate the server info connection listener
243 // terminate the connection deleter
255 ClientConnection* connection
258 connection->Close();
259 delete connection;
264 ClientConnection* connection
267 delete connection;
294 // create a connection listener
302 // spawn the connection listener thread
304 "connection listener", B_NORMAL_PRIORITY, this);
313 // spawn the connection deleter
315 "connection deleter", B_NORMAL_PRIORITY, this);
319 // init the server info connection listener
343 // start the connection listener
346 // start the connection deleter
349 // start the server info connection listener
406 ClientConnection* connection
409 connection->UserRemoved(user);
507 ClientConnection* connection
510 connection->ShareRemoved(share);
677 ClientConnection* connection
680 connection->UserPermissionsChanged(share, user,
766 NetFSServer::ClientConnectionClosed(ClientConnection* connection, bool broken)
769 if (!connection)
772 if (!fClientConnections.RemoveItem(connection))
774 if (!fClosedConnections.AddItem(connection)) {
775 // out of memory: Try to delete the connection right now.,
779 delete connection;
1064 "server info connection listener", B_NORMAL_PRIORITY, this);
1111 Connection* connection = NULL;
1114 error = fConnectionListener->Listen(&connection);
1118 connection);
1121 ERROR("Failed to run connection initializer.\n")
1125 ERROR("Failed to create connection initializer.\n")
1126 delete connection;
1148 ClientConnection* connection = NULL;
1151 connection = (ClientConnection*)fClosedConnections.RemoveItem((int32)0);
1153 if (connection)
1154 delete connection;
1258 // accept a incoming connection
1304 // set the server name and the connection method
1312 // TODO: Set the actually used connection method!