HomeSort by relevance Sort by last modified time
    Searched refs:Client (Results 26 - 50 of 676) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/chatserver/
MessageReader.java 62 * @param client the client to read messages from
65 public void beforeRead(Client client) {
67 String message = client.nextMessage();
69 chatServer.writeMessageToClients(client, message);
70 message = client.nextMessage();
76 * @param client the client to append messages to
81 public void onData(Client client, ByteBuffer buffer, int bytes)
    [all...]
NameReader.java 44 * The first state a newly connected {@code Client} is in, this
48 * client.
61 * Writes the welcoming message to the client the first time this method
64 * @param client the client to receive the message
67 public void beforeRead(Client client) {
70 client.writeStringMessage("Name: ");
84 public void onData(Client client, ByteBuffer buffer, int bytes)
    [all...]
ChatServer.java 55 private final List<Client> connections = Collections.synchronizedList(new ArrayList<Client>());
127 * Creates a new client and adds it to the list of connections.
133 Client client = new Client(channel, new ClientReader(this, new NameReader(this))); local
139 connections.add(client);
140 client.run();
148 * @param client the message source
151 public void writeMessageToClients(Client client, String message)
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/chatserver/
MessageReader.java 62 * @param client the client to read messages from
65 public void beforeRead(Client client) {
67 String message = client.nextMessage();
69 chatServer.writeMessageToClients(client, message);
70 message = client.nextMessage();
76 * @param client the client to append messages to
81 public void onData(Client client, ByteBuffer buffer, int bytes)
    [all...]
NameReader.java 44 * The first state a newly connected {@code Client} is in, this
48 * client.
61 * Writes the welcoming message to the client the first time this method
64 * @param client the client to receive the message
67 public void beforeRead(Client client) {
70 client.writeStringMessage("Name: ");
84 public void onData(Client client, ByteBuffer buffer, int bytes)
    [all...]
ChatServer.java 55 private final List<Client> connections = Collections.synchronizedList(new ArrayList<Client>());
127 * Creates a new client and adds it to the list of connections.
133 Client client = new Client(channel, new ClientReader(this, new NameReader(this))); local
139 connections.add(client);
140 client.run();
148 * @param client the message source
151 public void writeMessageToClients(Client client, String message)
    [all...]
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Client.java 18 enum Client {
  /external/pdfium/xfa/fwl/
fwl_widgethit.h 12 Client,
  /frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/
GeneralHprofDumpHandler.java 19 import com.android.ddmlib.Client;
48 public void onEndFailure(Client arg0, String arg1) {
56 public void onSuccess(String arg0, Client arg1) {
64 public void onSuccess(byte[] arg0, Client arg1) {
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
HttpUploader.java 25 import com.sun.jersey.api.client.Client;
38 super(stdout, gson, Client.create(), config.getResultProcessorConfig(HttpUploader.class));
  /external/mdnsresponder/mDNSPosix/
Makefile 250 # libdns_sd target builds the client library
252 @echo "Client library done"
451 @echo "Embedded Standalone Client done"
468 $(BUILDDIR)/mDNSClientPosix: $(APPOBJ) $(OBJDIR)/Client.c.o
  /external/perfetto/src/tracing/ipc/consumer/
consumer_ipc_client_impl.h 41 class Client;
80 // The object that owns the client socket and takes care of IPC traffic.
81 std::unique_ptr<ipc::Client> ipc_channel_;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
SelectionDependentViewPart.java 19 import com.android.ddmlib.Client;
29 * A Workbench {@link ViewPart} that requires {@link Device}/{@link Client} selection notifications
51 * Sent when a new {@link Client} is selected.
52 * @param selectedClient The selected client.
57 public final void selectionChanged(Client selectedClient) {
  /device/google/cuttlefish_common/host/libs/usbip/
server.h 22 #include "host/libs/usbip/client.h"
50 // Handle new client connection.
56 std::list<Client> clients_;
  /device/sample/apps/client/src/com/example/android/platform_library/client/
Client.java 17 package com.example.android.platform_library.client;
28 public class Client extends Activity {
  /external/v4l2_codec2/vda/
video_decode_accelerator.h 56 // to the client via PictureReady(), even if the client does not return
57 // any of them via ReusePictureBuffer(). The client is only required to
62 // client must return PictureBuffers to be sure that new frames will be
71 // indicates that the client supports it as well. Refer to
135 // Whether the client supports deferred initialization.
143 // The list of picture buffer formats that the client knows how to use. An
160 class Client {
162 // Notify the client that deferred initialization has completed successfully
165 // client (see Config::is_deferred_initialization_allowed), and the initia
    [all...]
  /frameworks/native/services/surfaceflinger/
Client.h 38 class Client : public BnSurfaceComposerClient
41 explicit Client(const sp<SurfaceFlinger>& flinger);
42 Client(const sp<SurfaceFlinger>& flinger, const sp<Layer>& parentLayer);
43 ~Client();
ColorLayer.h 28 ColorLayer(SurfaceFlinger* flinger, const sp<Client>& client, const String8& name, uint32_t w,
ContainerLayer.cpp 25 ContainerLayer::ContainerLayer(SurfaceFlinger* flinger, const sp<Client>& client,
27 : Layer(flinger, client, name, w, h, flags) {
ContainerLayer.h 28 ContainerLayer(SurfaceFlinger* flinger, const sp<Client>& client, const String8& name,
  /external/v4l2_codec2/include/
C2VDAAdaptor.h 19 public media::VideoDecodeAccelerator::Client {
26 VideoDecodeAcceleratorAdaptor::Client* client) override;
41 // Implementation of the media::VideoDecodeAccelerator::Client interface.
54 VideoDecodeAcceleratorAdaptor::Client* mClient;
57 // client, and used to check validity of picture id in importBufferForPicture and
VideoDecodeAcceleratorAdaptor.h 33 // The adaptor plays the role of providing unified adaptor API functions and client callback to
35 // The adaptor API and client callback are modeled after media::VideoDecodeAccelerator which is
48 // The adaptor client interface. This interface should be implemented in the component side.
49 class Client {
51 virtual ~Client() {}
53 // Callback to tell client how many and what size of buffers to provide.
82 Client* client) = 0;
  /frameworks/base/tools/preload2/src/com/android/preload/actions/
ScanAllPackagesAction.java 19 import com.android.ddmlib.Client;
45 Client[] clients = clientUtils.findAllClients(device);
46 for (Client c : clients) {
  /external/tensorflow/tensorflow/compiler/xla/client/
client.cc 16 #include "tensorflow/compiler/xla/client/client.h"
35 Client::Client(ServiceInterface* stub) : stub_(stub) {}
37 Client::~Client() = default;
39 StatusOr<std::unique_ptr<Literal>> Client::Transfer(
66 StatusOr<std::unique_ptr<GlobalData>> Client::TransferToServer(
94 Status Client::TransferToInfeed(const Literal& literal, int64 replica_id,
116 StatusOr<std::unique_ptr<Literal>> Client::TransferFromOutfeed
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 1 //===- OrcRemoteTargetClient.h - Orc Remote-target Client -------*- C++ -*-===//
65 Client.destroyRemoteAllocator(Id);
120 Client.reserveMem(Id, CodeSize, CodeAlign);
130 Client.reserveMem(Id, RODataSize, RODataAlign);
140 Client.reserveMem(Id, RWDataSize, RWDataAlign);
159 Client.deregisterEHFrames(Frame.Addr, Frame.Size);
197 if (auto Err = Client.registerEHFrames(EHFrame.Addr, EHFrame.Size)) {
261 RemoteRTDyldMemoryManager(OrcRemoteTargetClient &Client,
263 : Client(Client), Id(Id)
    [all...]

Completed in 686 milliseconds

12 3 4 5 6 7 8 91011>>