HomeSort by relevance Sort by last modified time
    Searched defs:client (Results 176 - 200 of 1756) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
PerCallSettings.java 25 private final OkHttpClient client = new OkHttpClient(); field in class:PerCallSettings
33 OkHttpClient cloned = client.clone(); // Clone to make a customized OkHttp for this request.
43 OkHttpClient cloned = client.clone(); // Clone to make a customized OkHttp for this request.
PostFile.java 30 private final OkHttpClient client = new OkHttpClient(); field in class:PostFile
40 Response response = client.newCall(request).execute();
PostForm.java 26 private final OkHttpClient client = new OkHttpClient(); field in class:PostForm
37 Response response = client.newCall(request).execute();
PostMultipart.java 29 * The imgur client ID for OkHttp recipes. If you're using imgur for anything
30 * other than running these examples, please request your own client ID!
36 private final OkHttpClient client = new OkHttpClient(); field in class:PostMultipart
48 .header("Authorization", "Client-ID " + IMGUR_CLIENT_ID)
53 Response response = client.newCall(request).execute();
PostStreaming.java 30 private final OkHttpClient client = new OkHttpClient(); field in class:PostStreaming
60 Response response = client.newCall(request).execute();
PostString.java 29 private final OkHttpClient client = new OkHttpClient(); field in class:PostString
45 Response response = client.newCall(request).execute();
SynchronousGet.java 25 private final OkHttpClient client = new OkHttpClient(); field in class:SynchronousGet
32 Response response = client.newCall(request).execute();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAndroidHttpClient.java 10 import org.apache.http.client.ClientProtocolException;
11 import org.apache.http.client.HttpClient;
12 import org.apache.http.client.ResponseHandler;
13 import org.apache.http.client.methods.HttpUriRequest;
15 import org.apache.http.impl.client.DefaultHttpClient;
26 @RealObject private AndroidHttpClient client; field in class:ShadowAndroidHttpClient
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
HttpRedirect.java 29 package com.xtremelabs.robolectric.tester.org.apache.http.impl.client;
33 import org.apache.http.client.methods.HttpGet;
34 import org.apache.http.client.methods.HttpHead;
35 import org.apache.http.client.methods.HttpRequestBase;
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AndroidHttpClientTest.java 10 import org.apache.http.client.methods.HttpGet;
24 AndroidHttpClient client = AndroidHttpClient.newInstance("foo"); local
25 assertThat(client, not(nullValue()));
30 AndroidHttpClient client = AndroidHttpClient.newInstance("foo", Robolectric.application); local
31 assertThat(client, not(nullValue()));
36 AndroidHttpClient client = AndroidHttpClient.newInstance("foo"); local
38 HttpResponse resp = client.execute(new HttpGet("/foo"));
  /external/tensorflow/tensorflow/compiler/aot/
compile.cc 26 #include "tensorflow/compiler/xla/client/client_library.h"
27 #include "tensorflow/compiler/xla/client/compile_only_client.h"
45 Status CompileXla(xla::CompileOnlyClient* client,
52 client->GetComputationShape(computation);
69 aot_or = client->CompileAheadOfTime({instance}, aot_opts);
89 // TODO(toddw): Should we let the user pick the XLA cpu vs. gpu client?
93 xla::CompileOnlyClient* client = local
98 ConvertGraphDefToXla(graph_def, config, client, &computation));
113 return CompileXla(client, computation, aot_opts, compile_result);
  /external/tensorflow/tensorflow/compiler/xla/client/
client_library.h 16 // The "client library" instantiates a local (in-process) XLA service for
18 // client. ClientLibrary::GetOrCreateLocalClient will spawn a local service,
19 // and return a client that's connected to it and ready to run XLA
29 #include "tensorflow/compiler/xla/client/compile_only_client.h"
30 #include "tensorflow/compiler/xla/client/local_client.h"
43 // Options to configure the local client when it is created.
71 // Singleton constructor-or-accessor -- returns a client for the application
82 // client library or creates one with default platform and allocator.
86 // access user computations from client.
96 // Clears the local instance and compile only instance caches. The client
112 std::unique_ptr<LocalClient> client; member in struct:xla::ClientLibrary::LocalInstance
119 std::unique_ptr<CompileOnlyClient> client; member in struct:xla::ClientLibrary::CompileOnlyInstance
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/tests/
local_client_aot_test_helper.cc 23 #include "tensorflow/compiler/xla/client/client_library.h"
24 #include "tensorflow/compiler/xla/client/computation_builder.h"
34 xla::Computation Doubler(xla::Client* client) {
35 xla::ComputationBuilder builder(client, "doubler");
45 auto client = xla::ClientLibrary::GetOrCreateCompileOnlyClient().ValueOrDie(); local
47 xla::ComputationBuilder builder(client, "aot_test_helper");
52 builder.Call(Doubler(client), {sum});
84 client->CompileAheadOfTime({instance}, options).ConsumeValueOrDie();
  /external/tensorflow/tensorflow/compiler/xla/tools/
dumped_computation_to_graphviz.cc 31 #include "tensorflow/compiler/xla/client/client.h"
32 #include "tensorflow/compiler/xla/client/client_library.h"
33 #include "tensorflow/compiler/xla/client/computation.h"
34 #include "tensorflow/compiler/xla/client/local_client.h"
50 Client* client = ClientLibrary::LocalClientOrDie(); local
55 Computation computation = client->LoadSnapshot(module).ConsumeValueOrDie();
59 client->GetComputationStats(computation, debug_options)
dumped_computation_to_tf_graphdef.cc 29 #include "tensorflow/compiler/xla/client/client.h"
30 #include "tensorflow/compiler/xla/client/client_library.h"
31 #include "tensorflow/compiler/xla/client/computation.h"
32 #include "tensorflow/compiler/xla/client/local_client.h"
49 Client* client = ClientLibrary::LocalClientOrDie(); local
54 Computation computation = client->LoadSnapshot(module).ConsumeValueOrDie();
59 client->GetComputationStats(computation, debug_options)
  /external/v8/src/inspector/
v8-inspector-impl.h 58 V8InspectorClient* client() { return m_client; } function in class:v8_inspector::V8InspectorImpl
  /external/valgrind/none/tests/
fdleak_ipv4.c 39 void client () function
83 client();
  /external/wayland/tests/
resources-test.c 37 struct wl_client *client; local
46 client = wl_client_create(display, s[0]);
47 assert(client);
49 res = wl_resource_create(client, &wl_seat_interface, 4, 0);
55 assert(client == wl_resource_get_client(res));
57 assert(wl_client_get_object(client, id) == res);
67 wl_client_destroy(client);
92 struct wl_client *client; local
106 client = wl_client_create(display, s[0]);
107 assert(client);
142 struct wl_client *client; local
    [all...]
  /external/webrtc/webrtc/base/
httpserver_unittest.cc 61 StreamSource* client = new StreamSource; local
62 client->SetState(SS_OPEN);
63 server.HandleConnection(client);
69 client->QueueString(kRequest);
78 // Add an active client connection
92 // Add an idle client connection
104 // Add an active client connection
121 // Add an active client connection
  /external/webrtc/webrtc/examples/peerconnection/client/linux/
main.cc 13 #include "webrtc/examples/peerconnection/client/conductor.h"
14 #include "webrtc/examples/peerconnection/client/flagdefs.h"
15 #include "webrtc/examples/peerconnection/client/linux/main_wnd.h"
16 #include "webrtc/examples/peerconnection/client/peer_connection_client.h"
27 void set_client(PeerConnectionClient* client) { client_ = client; }
87 PeerConnectionClient client; local
89 new rtc::RefCountedObject<Conductor>(&client, &wnd));
90 socket_server.set_client(&client);
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
FinishListener.java 17 package com.google.zxing.client.android;
Intents.java 17 package com.google.zxing.client.android;
34 public static final String ACTION = "com.google.zxing.client.android.YOUTUBE_SCAN";
  /frameworks/av/media/libaaudio/src/binding/
AAudioBinderClient.h 51 void registerClient(const android::sp<android::IAAudioClient>& client __unused) override {}
101 const android::AudioClient& client __unused,
112 // TODO This is just a stub so we can have a client Binder to pass to the service.
126 android::sp<AAudioBinderClient> client = mBinderClient.promote(); local
127 if (client.get() != nullptr) {
128 client->dropAAudioService();
135 android::sp<AAudioBinderClient> client = mBinderClient.promote(); local
136 if (client.get() != nullptr) {
137 client->onStreamChange(handle, opcode, value);
  /frameworks/base/cmds/bootanimation/iot/
BootAction.cpp 36 APeripheralManagerClient* client = nullptr; local
39 while (client == nullptr) {
40 client = APeripheralManagerClient_new();
41 if (client == nullptr) {
47 APeripheralManagerClient_delete(client);
  /frameworks/base/core/jni/
android_view_SurfaceSession.cpp 44 SurfaceComposerClient* client = new SurfaceComposerClient(); local
45 client->incStrong((void*)nativeCreate);
46 return reinterpret_cast<jlong>(client);
51 SurfaceComposerClient* client = new SurfaceComposerClient(parent->getIGraphicBufferProducer()); local
52 client->incStrong((void*)nativeCreate);
53 return reinterpret_cast<jlong>(client);
57 SurfaceComposerClient* client = reinterpret_cast<SurfaceComposerClient*>(ptr); local
58 client->decStrong((void*)nativeCreate);
62 SurfaceComposerClient* client = reinterpret_cast<SurfaceComposerClient*>(ptr); local
63 client->dispose()
    [all...]

Completed in 553 milliseconds

1 2 3 4 5 6 78 91011>>