HomeSort by relevance Sort by last modified time
    Searched refs:Client (Results 51 - 75 of 542) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/tools/preload2/src/com/android/preload/ui/
SwingUI.java 19 import com.android.ddmlib.Client;
46 private JList<Client> clientList;
62 public void prepare(ListModel<Client> clientListModel, TableModel dataTableModel,
64 getContentPane().add(new JScrollPane(clientList = new JList<Client>(clientListModel)),
93 public Client getSelectedClient() {
286 ClientData cd = ((Client) value).getClientData();
SequenceUI.java 3 import com.android.ddmlib.Client;
14 private ListModel<Client> clientListModel;
30 public void prepare(ListModel<Client> clientListModel, TableModel dataTableModel,
89 public Client getClient() {
99 throw new RuntimeException("Didn't find client " + pkg);
103 public SequenceUI client(String pkg) { method in class:SequenceUI
135 public Client getSelectedClient() {
  /device/google/contexthub/contexthubhal/test/
main.cpp 67 class Client : IClient {
73 explicit Client(const context_hub_t *hub, CHub *parent) {
77 ~Client() = default;
114 mHubs[item->hub_id] = std::unique_ptr<Client>(new Client(item, this));
131 Client *cli = getClientById(hubId);
151 Client *getClientById(size_t id) { return mHubs.count(id) ? mHubs[id].get() : nullptr; }
156 std::map <size_t, std::unique_ptr<Client> > mHubs;
164 Client *getClientByIndex(size_t idx) {
172 CHub::Client *mClient
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Kms.h 180 /// The size in bytes for the client identifier.
184 /// Pointer to a valid client identifier.
188 /// The client name string type used by this client. The string type set here must be one of
190 /// KMS does not support client names, this field should be set to EFI_KMS_DATA_TYPE_NONE.
194 /// The size in characters for the client name. This field will be ignored if
200 /// Pointer to a client name. This field will be ignored if ClientNameStringType is set to
357 Register client information with the supported KMS.
360 @param[in] Client Pointer to a valid EFI_KMS_CLIENT_INFO structure.
376 KMS if it supports the use of client data. This
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.h 54 Antagonizer(notify_callback_f cb, void* client);
73 class Client;
224 void removeMediaRecorderClient(const wp<MediaRecorderClient>& client);
227 virtual sp<IMediaPlayer> create(const sp<IMediaPlayerClient>& client,
235 const sp<IRemoteDisplayClient>& client, const String8& iface);
238 void removeClient(const wp<Client>& client);
239 bool hasClient(wp<Client> client);
306 class Client : public BnMediaPlayer
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 1 //===---- OrcRemoteTargetClient.h - Orc Remote-target Client ----*- C++ -*-===//
59 RCMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id)
60 : Client(Client), Id(Id) {
65 : Client(std::move(Other.Client)), Id(std::move(Other.Id)),
70 Client = std::move(Other.Client);
78 Client.destroyRemoteAllocator(Id);
125 if (auto AddrOrErr = Client.reserveMem(Id, CodeSize, CodeAlign)
    [all...]
  /external/v4l2_codec2/vda/
v4l2_slice_video_decode_accelerator.h 45 bool Initialize(const Config& config, Client* client) override;
56 const base::WeakPtr<Client>& decode_client,
163 // Dismiss all |picture_buffer_ids| via Client::DismissPictureBuffer()
174 // Sets the state to kError and notifies client if needed.
190 // Flush flow when requested by client.
202 // Otherwise perform flush by sending all pending pictures to the client,
207 // Reset flow when requested by client.
212 // Otherwise perform reset by dropping all pending outputs (client is not
228 // Allocate V4L2 buffers and assign them to |buffers| provided by the client
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
client.go 5 // HTTP client. See RFC 2616.
7 // This is the high-level Client interface.
27 // A Client is an HTTP client. Its zero value (DefaultClient) is a
28 // usable client that uses DefaultTransport.
30 // The Client's Transport typically has internal state (cached TCP
34 // A Client is higher-level than a RoundTripper (such as Transport)
38 // When following redirects, the Client will forward all headers set on the
56 type Client struct {
63 // If CheckRedirect is not nil, the client calls it befor
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
client.go 5 // HTTP client. See RFC 2616.
7 // This is the high-level Client interface.
27 // A Client is an HTTP client. Its zero value (DefaultClient) is a
28 // usable client that uses DefaultTransport.
30 // The Client's Transport typically has internal state (cached TCP
34 // A Client is higher-level than a RoundTripper (such as Transport)
38 // When following redirects, the Client will forward all headers set on the
56 type Client struct {
63 // If CheckRedirect is not nil, the client calls it befor
    [all...]
  /frameworks/base/services/midi/java/com/android/server/midi/
MidiService.java 90 private final HashMap<IBinder, Client> mClients = new HashMap<IBinder, Client>();
130 private final class Client implements IBinder.DeathRecipient {
131 // Binder token for this client
133 // This client's UID
135 // This client's PID
137 // List of all receivers for this client
140 // List of all device connections for this client
144 public Client(IBinder token) {
193 // ignore private devices that our client cannot acces
270 Client client = mClients.get(token); local
601 Client client = getClient(token); local
610 Client client = getClient(token); local
654 Client client = getClient(token); local
680 Client client = getClient(token); local
704 Client client = getClient(clientToken); local
    [all...]
  /external/autotest/client/common_lib/feedback/
tester_feedback_client.py 5 """Feedback client implementation for interacting with a human tester."""
10 from autotest_lib.client.common_lib import error
11 from autotest_lib.client.common_lib.feedback import client
21 class Client(client.Client):
25 """Constructs the client object.
31 super(Client, self).__init__()
58 Initializes an XML-RPC proxy and registers the client at the remote end
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ResultsUploader.java 31 import com.sun.jersey.api.client.Client;
32 import com.sun.jersey.api.client.ClientHandlerException;
33 import com.sun.jersey.api.client.UniformInterfaceException;
34 import com.sun.jersey.api.client.WebResource;
54 private final Client client; field in class:ResultsUploader
61 ResultsUploader(PrintWriter stdout, Gson gson, Client client,
64 this.client = client
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 1 //===---- OrcRemoteTargetClient.h - Orc Remote-target Client ----*- C++ -*-===//
43 RCMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id)
44 : Client(Client), Id(Id) {
54 Client.destroyRemoteAllocator(Id);
101 if (auto AddrOrErr = Client.reserveMem(Id, CodeSize, CodeAlign))
115 if (auto AddrOrErr = Client.reserveMem(Id, RODataSize, RODataAlign))
129 if (auto AddrOrErr = Client.reserveMem(Id, RWDataSize, RWDataAlign))
153 auto Err = Client.deregisterEHFrames(LoadAddr, Size);
217 Client.writeMem(Alloc.getRemoteAddress()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 1 //===---- OrcRemoteTargetClient.h - Orc Remote-target Client ----*- C++ -*-===//
43 RCMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id)
44 : Client(Client), Id(Id) {
54 Client.destroyRemoteAllocator(Id);
101 if (auto AddrOrErr = Client.reserveMem(Id, CodeSize, CodeAlign))
115 if (auto AddrOrErr = Client.reserveMem(Id, RODataSize, RODataAlign))
129 if (auto AddrOrErr = Client.reserveMem(Id, RWDataSize, RWDataAlign))
153 auto Err = Client.deregisterEHFrames(LoadAddr, Size);
217 Client.writeMem(Alloc.getRemoteAddress()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 1 //===---- OrcRemoteTargetClient.h - Orc Remote-target Client ----*- C++ -*-===//
43 RCMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id)
44 : Client(Client), Id(Id) {
54 Client.destroyRemoteAllocator(Id);
101 if (auto AddrOrErr = Client.reserveMem(Id, CodeSize, CodeAlign))
115 if (auto AddrOrErr = Client.reserveMem(Id, RODataSize, RODataAlign))
129 if (auto AddrOrErr = Client.reserveMem(Id, RWDataSize, RWDataAlign))
153 auto Err = Client.deregisterEHFrames(LoadAddr, Size);
217 Client.writeMem(Alloc.getRemoteAddress()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 1 //===---- OrcRemoteTargetClient.h - Orc Remote-target Client ----*- C++ -*-===//
43 RCMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id)
44 : Client(Client), Id(Id) {
54 Client.destroyRemoteAllocator(Id);
101 if (auto AddrOrErr = Client.reserveMem(Id, CodeSize, CodeAlign))
115 if (auto AddrOrErr = Client.reserveMem(Id, RODataSize, RODataAlign))
129 if (auto AddrOrErr = Client.reserveMem(Id, RWDataSize, RWDataAlign))
153 auto Err = Client.deregisterEHFrames(LoadAddr, Size);
217 Client.writeMem(Alloc.getRemoteAddress()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 1 //===---- OrcRemoteTargetClient.h - Orc Remote-target Client ----*- C++ -*-===//
43 RCMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id)
44 : Client(Client), Id(Id) {
54 Client.destroyRemoteAllocator(Id);
101 if (auto AddrOrErr = Client.reserveMem(Id, CodeSize, CodeAlign))
115 if (auto AddrOrErr = Client.reserveMem(Id, RODataSize, RODataAlign))
129 if (auto AddrOrErr = Client.reserveMem(Id, RWDataSize, RWDataAlign))
153 auto Err = Client.deregisterEHFrames(LoadAddr, Size);
217 Client.writeMem(Alloc.getRemoteAddress()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 1 //===---- OrcRemoteTargetClient.h - Orc Remote-target Client ----*- C++ -*-===//
43 RCMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id)
44 : Client(Client), Id(Id) {
54 Client.destroyRemoteAllocator(Id);
101 if (auto AddrOrErr = Client.reserveMem(Id, CodeSize, CodeAlign))
115 if (auto AddrOrErr = Client.reserveMem(Id, RODataSize, RODataAlign))
129 if (auto AddrOrErr = Client.reserveMem(Id, RWDataSize, RWDataAlign))
153 auto Err = Client.deregisterEHFrames(LoadAddr, Size);
217 Client.writeMem(Alloc.getRemoteAddress()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 1 //===---- OrcRemoteTargetClient.h - Orc Remote-target Client ----*- C++ -*-===//
43 RCMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id)
44 : Client(Client), Id(Id) {
54 Client.destroyRemoteAllocator(Id);
101 if (auto AddrOrErr = Client.reserveMem(Id, CodeSize, CodeAlign))
115 if (auto AddrOrErr = Client.reserveMem(Id, RODataSize, RODataAlign))
129 if (auto AddrOrErr = Client.reserveMem(Id, RWDataSize, RWDataAlign))
153 auto Err = Client.deregisterEHFrames(LoadAddr, Size);
217 Client.writeMem(Alloc.getRemoteAddress()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 1 //===---- OrcRemoteTargetClient.h - Orc Remote-target Client ----*- C++ -*-===//
43 RCMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id)
44 : Client(Client), Id(Id) {
54 Client.destroyRemoteAllocator(Id);
101 if (auto AddrOrErr = Client.reserveMem(Id, CodeSize, CodeAlign))
115 if (auto AddrOrErr = Client.reserveMem(Id, RODataSize, RODataAlign))
129 if (auto AddrOrErr = Client.reserveMem(Id, RWDataSize, RWDataAlign))
153 auto Err = Client.deregisterEHFrames(LoadAddr, Size);
217 Client.writeMem(Alloc.getRemoteAddress()
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue8155.go 8 // Alignment of stack prologue zeroing was wrong on 64-bit Native Client
  /prebuilts/go/linux-x86/test/fixedbugs/
issue8155.go 8 // Alignment of stack prologue zeroing was wrong on 64-bit Native Client
  /external/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 1 //===--- FixItRewriter.h - Fix-It Rewriter Diagnostic Client ----*- C++ -*-===//
10 // This is a diagnostic client adaptor that performs rewrites as
12 // then forwards any diagnostics to the adapted diagnostic client.
70 /// \brief The diagnostic client that performs the actual formatting
72 DiagnosticConsumer *Client;
126 /// \brief Emit a diagnostic via the adapted diagnostic client.
  /external/python/cpython2/Lib/multiprocessing/dummy/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
57 def Client(address):
  /frameworks/base/tools/preload2/src/com/android/preload/actions/
WritePreloadedClassesAction.java 19 import com.android.ddmlib.Client;

Completed in 1336 milliseconds

1 23 4 5 6 7 8 91011>>