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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/Basic/
DiagnosticIDs.cpp 382 /// getDiagnosticLevel - Based on the way the client configured the
399 /// \brief Based on the way the client configured the Diagnostic
640 Diag.Client->IncludeInDiagnosticCounts()) {
647 // If the client doesn't care about this message, don't issue it. If this is
663 if (Diag.Client->IncludeInDiagnosticCounts()) {
685 Diag.Client->HandleDiagnostic((DiagnosticsEngine::Level)DiagLevel, Info);
686 if (Diag.Client->IncludeInDiagnosticCounts()) {
Diagnostic.cpp 60 DiagnosticConsumer *client, bool ShouldOwnClient)
61 : Diags(diags), DiagOpts(DiagOpts), Client(nullptr), SourceMgr(nullptr) {
62 setClient(client, ShouldOwnClient);
88 // If we own the diagnostic client, destroy it first so that it can access the
93 void DiagnosticsEngine::setClient(DiagnosticConsumer *client,
95 Owner.reset(ShouldOwnClient ? client : nullptr);
96 Client = client;
351 assert(Client && "DiagnosticConsumer not set!");
354 Client->HandleDiagnostic(DiagLevel, Info)
    [all...]
  /external/pdfium/xfa/fwl/
cfwl_datetimepicker.cpp 107 return FWL_WidgetHit::Client;
111 return FWL_WidgetHit::Client;
393 return FWL_WidgetHit::Client;
396 return FWL_WidgetHit::Client;
  /external/perfetto/src/tracing/ipc/consumer/
consumer_ipc_client_impl.cc 23 #include "perfetto/ipc/client.h"
46 ipc_channel_(ipc::Client::CreateInstance(service_sock_name, task_runner)),
  /external/tensorflow/tensorflow/tools/test/
upload_test_benchmarks.py 52 retrieval of benchmark data and reduced I/O to the client without adding a lot
140 def upload_benchmark_data(client, data):
141 """Parse benchmark data and use the client to upload it to the datastore.
145 and upload them to the datastore in a batch using the client connection.
148 client: datastore client connection
160 t_key = client.key("Test")
174 e_key = client.key("Entry")
186 client.put_multi(batch)
206 client = datastore.Client(
    [all...]
  /frameworks/av/services/camera/libcameraservice/
CameraService.h 70 class Client;
171 // Client functionality
226 // Return the package name for this client
229 // Notify client about a fatal error
233 // Get the UID of the application client using this
236 // Get the PID of the application client using this
239 // Check what API level is used for this client. This is used to determine which
243 // Block the client form using the camera
285 explicit OpsCallback(wp<BasicClient> client);
302 class Client : public hardware::BnCamera, public BasicClien
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/
CameraClient.h 32 class CameraClient : public CameraService::Client
37 virtual status_t connect(const sp<hardware::ICameraClient>& client);
127 const sp<hardware::ICameraClient>& client,
168 // trying to deliver the callback messages if the client is not
169 // interested in it anymore. For example, if the client is calling
  /frameworks/native/libs/vr/libbufferhub/
buffer_hub_client.cpp 25 : Client(ClientChannelFactory::Create(BufferHubRPC::kClientPath)) {}
28 : Client(ClientChannel::Create(std::move(channel_handle))) {}
43 : Client{pdx::default_transport::ClientChannel::Create(
47 : Client{pdx::default_transport::ClientChannelFactory::Create(
378 // For release operation, the client don't need to change the state as it's
  /frameworks/native/libs/vr/libperformance/
performance_client.cpp 19 *error = Client::error();
118 if (auto client = android::dvr::PerformanceClient::Create(&error))
119 return client->SetCpuPartition(task_id, partition);
127 if (auto client = android::dvr::PerformanceClient::Create(&error))
128 return client->SetSchedulerPolicy(task_id, scheduler_policy);
136 if (auto client = android::dvr::PerformanceClient::Create(&error))
137 return client->SetSchedulerClass(task_id, scheduler_class);
144 if (auto client = android::dvr::PerformanceClient::Create(&error))
145 return client->GetCpuPartition(task_id, partition, size);
  /frameworks/av/services/audioflinger/
Effects.h 36 // from different client threads. It keeps a list of EffectHandle objects corresponding
37 // to all client applications using this effect and notifies applications of effect state,
163 Vector<EffectHandle *> mHandles; // list of client handles
191 const sp<AudioFlinger::Client>& client,
216 // - signal: true client app should be signaled of change, false otherwise
248 sp<IEffectClient> mEffectClient; // callback interface for client notifications
249 /*const*/ sp<Client> mClient; // client for shared memory allocation, see disconnect()
254 int mPriority; // client application priority to control the effec
    [all...]
AudioFlinger.h 152 virtual void registerClient(const sp<IAudioFlingerClient>& client);
273 const AudioClient& client,
419 // --- Client ---
420 class Client : public RefBase {
422 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
423 virtual ~Client();
429 DISALLOW_COPY_AND_ASSIGN(Client);
436 // --- Notification Client ---
440 const sp<IAudioFlingerClient>& client,
531 // server side of the client's IAudioTrac
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_client_test.go 107 // clientTest represents a test of the TLS client handshake against a reference
267 return filepath.Join("testdata", "Client-"+test.name)
303 client := Client(clientConn, config)
309 defer client.Close()
311 if _, err := client.Write([]byte("hello\n")); err != nil {
312 t.Errorf("Client.Write failed: %s", err)
326 // a goroutine to call client.Read and thus process the
330 // client.Read to complete.
341 n, err := client.Read(buf
    [all...]
tls.go 35 // Client returns a new TLS client side connection
39 func Client(conn net.Conn, config *Config) *Conn {
143 conn := Client(rawConn, config)
  /prebuilts/go/linux-x86/src/crypto/tls/
handshake_client_test.go 107 // clientTest represents a test of the TLS client handshake against a reference
267 return filepath.Join("testdata", "Client-"+test.name)
303 client := Client(clientConn, config)
309 defer client.Close()
311 if _, err := client.Write([]byte("hello\n")); err != nil {
312 t.Errorf("Client.Write failed: %s", err)
326 // a goroutine to call client.Read and thus process the
330 // client.Read to complete.
341 n, err := client.Read(buf
    [all...]
tls.go 35 // Client returns a new TLS client side connection
39 func Client(conn net.Conn, config *Config) *Conn {
143 conn := Client(rawConn, config)
  /prebuilts/go/darwin-x86/src/net/rpc/
server_test.go 166 client, err := Dial("tcp", addr)
170 defer client.Close()
175 err = client.Call("Arith.Add", args, reply)
186 err = client.Call("Embed.Exported", args, reply)
197 err = client.Call("Arith.BadOperation", args, reply)
208 err = client.Call("Arith.Unknown", args, reply)
218 mulCall := client.Go("Arith.Mul", args, mulReply, nil)
220 addCall := client.Go("Arith.Add", args, addReply, nil)
241 err = client.Call("Arith.Div", args, reply)
251 err = client.Call("Arith.Add", reply, reply) // args, reply would be the correct thing to us
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/
server_test.go 166 client, err := Dial("tcp", addr)
170 defer client.Close()
175 err = client.Call("Arith.Add", args, reply)
186 err = client.Call("Embed.Exported", args, reply)
197 err = client.Call("Arith.BadOperation", args, reply)
208 err = client.Call("Arith.Unknown", args, reply)
218 mulCall := client.Go("Arith.Mul", args, mulReply, nil)
220 addCall := client.Go("Arith.Add", args, addReply, nil)
241 err = client.Call("Arith.Div", args, reply)
251 err = client.Call("Arith.Add", reply, reply) // args, reply would be the correct thing to us
    [all...]
  /external/caliper/lib/
jersey-client-1.11.jar 
  /frameworks/native/services/surfaceflinger/
Layer.h 39 #include "Client.h"
63 class Client;
224 Layer(SurfaceFlinger* flinger, const sp<Client>& client, const String8& name, uint32_t w,
242 // in window.h. The scaling mode may be set by the client, as it submits buffers.
607 // destroy client resources
627 // IGraphicBufferProducer client, as that should not affect child clipping.
681 // Client) or mOverrideScalingMode mode (originating from
687 * The layer handle is just a BBinder object passed to the client
768 const wp<Client> mClientRef
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DeviceChooserDialog.java 21 import com.android.ddmlib.Client;
744 Client[] clients = device.getClients();
746 for (Client client : clients) {
748 if (mPackageName.equals(client.getClientData().getClientDescription())) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkGdbLaunchDelegate.java 23 import com.android.ddmlib.Client;
252 for (Client c: device.getClients()) {
279 Client app = device.getClient(manifestData.getPackage());
  /external/boringssl/src/ssl/test/runner/
tls.go 34 // Client returns a new TLS client side connection
38 func Client(conn net.Conn, config *Config) *Conn {
145 conn := Client(rawConn, config)
  /prebuilts/go/darwin-x86/src/net/http/
response.go 30 // The Client and Transport return Responses from servers once
57 // The http Client and Transport guarantee that Body is always
60 // close Body. The default HTTP client's Transport may not
108 // This is only populated for Client requests.
  /prebuilts/go/linux-x86/src/net/http/
response.go 30 // The Client and Transport return Responses from servers once
57 // The http Client and Transport guarantee that Body is always
60 // close Body. The default HTTP client's Transport may not
108 // This is only populated for Client requests.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
FSProxy.py 11 FSProxyClient -- used on the client side of remote access
18 import client
283 class FSProxyClient(client.Client):
285 def __init__(self, address, verbose = client.VERBOSE):
286 client.Client.__init__(self, address, verbose)

Completed in 1185 milliseconds

1 2 3 4 5 6 7 8 91011>>