Home | History | Annotate | Download | only in opp

Lines Matching defs:server

89     TestTcpServer server;
325 server = new TestTcpServer();
326 Thread server_thread = new Thread(server);
336 synchronized (server) {
337 server.a = true;
338 server.notify();
392 Log.v(TAG, "Create server RfcommSocket on channel"
467 updateStatus("[server:] listen on port " + port);
470 updateStatus("[server:] Now waiting for a client to connect");
472 updateStatus("[server:] A client is now connected");
474 updateStatus("[server:] Caught the error: " + ex);
484 updateStatus("[server:] The client has created an OBEX session");
495 updateStatus("[server:] we accpet the seesion");
518 updateStatus("[server:] Wrote data to " + f.getAbsolutePath());
533 updateStatus("[server:] The client has disconnected the OBEX session");
561 ServerSocket server = null;
568 server = new ServerSocket(port);
574 conn = server.accept();