/external/perfetto/src/ipc/ |
virtual_destructors.cc | 17 #include "perfetto/ipc/client.h" 30 Client::~Client() = default;
|
/prebuilts/jdk/jdk8/darwin-x86/sample/nio/chatserver/ |
DataReader.java | 44 void beforeRead(Client client); 45 void onData(Client client, ByteBuffer buffer, int bytes);
|
/prebuilts/jdk/jdk8/linux-x86/sample/nio/chatserver/ |
DataReader.java | 44 void beforeRead(Client client); 45 void onData(Client client, ByteBuffer buffer, int bytes);
|
/device/google/cuttlefish_common/host/libs/usbip/ |
client.h | 26 // Represents USB/IP client, or individual connection to our USB/IP server. 29 class Client final { 31 Client(const DevicePool& pool, const cvd::SharedFD& fd) 34 ~Client() {} 42 // Return value indicates whether this client is still valid. 46 // Respond to message from remote client. 47 // Returns false, if client violated protocol or disconnected, indicating, 67 Client(const Client&) = delete; 68 Client& operator=(const Client&) = delete [all...] |
/external/autotest/site_utils/lxc/container_pool/ |
__init__.py | 7 from client import Client
|
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/ |
ClassDataRetriever.java | 19 import com.android.ddmlib.Client; 24 * Retrieve a class-to-classloader map for loaded classes from the client. 28 public Map<String, String> getClassData(Client client);
|
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/ |
PlaybackSeekUi.java | 22 * {@link #setPlaybackSeekUiClient(Client)} in the interface. Client (PlaybackGlue) registers 23 * itself as a Client to receive events emitted by PlaybackSeekUi and provide data to the 29 * Client (e.g. PlaybackGlue) to register on PlaybackSeekUi so that it can interact 30 * with Seeking UI. For example client(PlaybackGlue) will pause media when PlaybackSeekUi emits 33 class Client { 36 * Called by PlaybackSeekUi to query client if seek is allowed. 44 * Event for start seeking. Client will typically pause media and save the current position 52 * after {@link #isSeekEnabled()} returns true. If client does not provide a 53 * {@link PlaybackSeekDataProvider}, client may directly seek media i [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
IClientAction.java | 19 import com.android.ddmlib.Client; 25 void selectedClientChanged(Client c);
|
/external/libmojo/mojo/common/ |
data_pipe_drainer.h | 21 class Client { 27 virtual ~Client() {} 30 DataPipeDrainer(Client*, mojo::ScopedDataPipeConsumerHandle source); 37 Client* client_;
|
/external/perfetto/include/perfetto/ipc/ |
client.h | 36 // The client-side class that talks to the host over the socket and multiplexes 39 // auto client = Client::CreateInstance("socket_name", task_runner); 41 // client.BindService(svc); 45 class Client { 47 static std::unique_ptr<Client> CreateInstance(const char* socket_name, 49 virtual ~Client();
|
service_proxy.h | 35 class Client; 38 // The base class for the client-side autogenerated stubs that forward method 47 // Called once after Client::BindService() if the ServiceProxy has been 63 void InitializeBinding(base::WeakPtr<Client>, 90 base::WeakPtr<Client> client_;
|
/external/guice/core/test/com/google/inject/example/ |
ClientServiceWithDependencyInjection.java | 49 public static class Client { 53 public Client(Service service) { 66 public static Client getInstance() { 68 return new Client(service); 74 Client client = new Client(mock); local 75 client.go();
|
ClientServiceWithGuice.java | 51 public static class Client { 56 public Client(Service service) { 67 Client client = new Client(mock); local 68 client.go(); 88 Client client = injector.getInstance(Client.class); local
|
ClientServiceWithGuiceDefaults.java | 47 public static class Client { 52 public Client(Service service) { 63 Client client = new Client(mock); local 64 client.go(); 84 Client client = injector.getProvider(Client.class).get(); local
|
ClientServiceWithFactories.java | 53 public static class Client { 66 Client client = new Client(); local 67 client.go();
|
/external/tensorflow/tensorflow/compiler/xla/client/lib/ |
testing.h | 22 #include "tensorflow/compiler/xla/client/client.h" 23 #include "tensorflow/compiler/xla/client/computation.h" 24 #include "tensorflow/compiler/xla/client/global_data.h" 33 Client* client); 39 const Computation& computation, Client* client);
|
/frameworks/base/tools/preload2/src/com/android/preload/actions/ |
ReloadListAction.java | 19 import com.android.ddmlib.Client; 31 private final DefaultListModel<Client> clientListModel; 34 DefaultListModel<Client> clientListModel) { 42 Client[] clients = clientUtils.findAllClients(device); 47 for (Client c : clients) { 52 private static class ClientComparator implements Comparator<Client> { 55 public int compare(Client o1, Client o2) {
|
ScanPackageAction.java | 19 import com.android.ddmlib.Client; 45 Client client = Main.getUI().getSelectedClient(); local 46 if (client != null) { 47 work(client); 49 Client[] clients = clientUtils.findAllClients(device); 61 work(ret.client); 70 private void work(Client c) { 85 private Client client; field in class:ScanPackageAction.ClientWrapper [all...] |
/frameworks/base/tools/preload2/src/com/android/preload/ |
ClientUtils.java | 21 import com.android.ddmlib.Client; 25 * Helper class for common communication with a Client (the ddms name for a running application). 45 public Client findClient(IDevice device, String processName, int processPid) { 50 * Find the client with the given process name or process id. The name takes precedence over 57 * @return The client, if found. Otherwise null. 59 public Client findClient(IDevice device, String processName, int processPid, int timeout) { 67 public Client[] findAllClients(IDevice device) { 79 public Client[] findAllClients(IDevice device, int timeout) { 93 private Client result; 103 public Client get() [all...] |
/external/tensorflow/tensorflow/compiler/tf2xla/ |
tf2xla.h | 20 #include "tensorflow/compiler/xla/client/client.h" 21 #include "tensorflow/compiler/xla/client/computation.h" 31 // The computation is built in the context of the given `client`, which may 34 const tf2xla::Config& config, xla::Client* client,
|
/frameworks/native/libs/vr/libpdx/ |
client.cpp | 1 #include "pdx/client.h" 10 void Client::EnableAutoReconnect(int64_t reconnect_timeout_ms) { 17 void Client::DisableAutoReconnect() { auto_reconnect_enabled_ = false; } 19 bool Client::IsConnected() const { return channel_.get() != nullptr; } 21 Status<void> Client::CheckReconnect() { 50 bool Client::NeedToDisconnectChannel(int error) const { 54 void Client::CheckDisconnect(int error) { 59 Client::Client(std::unique_ptr<ClientChannel> channel) 62 Client::Client(std::unique_ptr<ClientChannelFactory> channel_factory [all...] |
/frameworks/native/services/surfaceflinger/ |
Client.cpp | 25 #include "Client.h" 37 Client::Client(const sp<SurfaceFlinger>& flinger) 38 : Client(flinger, nullptr) 42 Client::Client(const sp<SurfaceFlinger>& flinger, const sp<Layer>& parentLayer) 48 Client::~Client() 53 // to use sp<Client> while holding the SF lock as descoping it could 68 void Client::updateParent(const sp<Layer>& parentLayer) 179 Client* client; member in class:android::MessageCreateLayer [all...] |
/frameworks/base/tools/preload2/src/com/android/preload/ui/ |
IUI.java | 3 import com.android.ddmlib.Client; 16 void prepare(ListModel<Client> clientListModel, TableModel dataTableModel, 23 Client getSelectedClient();
|
/external/curl/docs/cmdline-opts/ |
proxy-cert-type.d | 4 Help: Client certificate type for HTTS proxy
|
/external/tensorflow/tensorflow/compiler/xla/client/ |
compile_only_client.h | 19 #include "tensorflow/compiler/xla/client/client.h" 20 #include "tensorflow/compiler/xla/client/computation.h" 29 // An XLA Client specialization for doing ahead-of-time compilation. This does 32 class CompileOnlyClient : public Client { 35 : Client(service), compiler_service_(service) {}
|