/frameworks/support/leanback/src/main/java/androidx/leanback/app/ |
PlaybackSupportFragment.java | 98 PlaybackSeekUi.Client mSeekUiClient; [all...] |
/frameworks/support/leanback/src/main/java/androidx/leanback/media/ |
PlaybackTransportControlGlue.java | 325 class SeekUiClient extends PlaybackSeekUi.Client {
|
/prebuilts/go/darwin-x86/src/crypto/tls/ |
conn_test.go | 151 tlsConn := Client(clientConn, config) 153 t.Errorf("Error from client handshake: %v", err) 212 t.Fatalf("Client encountered an error") 272 client, server := net.Pipe() 274 defer client.Close() 276 conn := &hairpinConn{client, nil}
|
/prebuilts/go/linux-x86/src/crypto/tls/ |
conn_test.go | 151 tlsConn := Client(clientConn, config) 153 t.Errorf("Error from client handshake: %v", err) 212 t.Fatalf("Client encountered an error") 272 client, server := net.Pipe() 274 defer client.Close() 276 conn := &hairpinConn{client, nil}
|
/prebuilts/go/darwin-x86/src/net/http/httputil/ |
persist.go | 145 // A close from the opposing client is treated as a 229 // Deprecated: Use Client or Transport in package net/http instead. 247 // Deprecated: Use the Client or Transport in package net/http instead. 264 // Deprecated: Use the Client or Transport in package net/http instead.
|
/prebuilts/go/linux-x86/src/net/http/httputil/ |
persist.go | 145 // A close from the opposing client is treated as a 229 // Deprecated: Use Client or Transport in package net/http instead. 247 // Deprecated: Use the Client or Transport in package net/http instead. 264 // Deprecated: Use the Client or Transport in package net/http instead.
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
dbgeng.h | 235 STDMETHOD(ExitDispatch)(THIS_ PDEBUG_CLIENT Client) PURE; 236 STDMETHOD(CreateClient)(THIS_ PDEBUG_CLIENT *Client) PURE; 243 STDMETHOD(GetOtherOutputMask)(THIS_ PDEBUG_CLIENT Client,PULONG Mask) PURE; 244 STDMETHOD(SetOtherOutputMask)(THIS_ PDEBUG_CLIENT Client,ULONG Mask) PURE; 306 STDMETHOD(ExitDispatch)(THIS_ PDEBUG_CLIENT Client) PURE; 307 STDMETHOD(CreateClient)(THIS_ PDEBUG_CLIENT *Client) PURE; 314 STDMETHOD(GetOtherOutputMask)(THIS_ PDEBUG_CLIENT Client,PULONG Mask) PURE; 315 STDMETHOD(SetOtherOutputMask)(THIS_ PDEBUG_CLIENT Client,ULONG Mask) PURE; 368 STDMETHOD(ExitDispatch)(THIS_ PDEBUG_CLIENT Client) PURE; 369 STDMETHOD(CreateClient)(THIS_ PDEBUG_CLIENT *Client) PURE [all...] |
/external/perfetto/src/ipc/ |
client_impl_unittest.cc | 48 // A fake ServiceProxy. This fakes the client-side class that would be 203 cli_ = Client::CreateInstance(kSockName, task_runner_.get()); 216 std::unique_ptr<Client> cli_; 514 // If the Client object is destroyed before the ServiceProxy, the ServiceProxy
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
client_library_test_base.cc | 20 #include "tensorflow/compiler/xla/client/client_library.h" 21 #include "tensorflow/compiler/xla/client/computation.h" 22 #include "tensorflow/compiler/xla/client/local_client.h" 40 Client* GetOrCreateLocalClientOrDie(const LocalClientOptions& client_options) { 41 StatusOr<Client*> result = 43 TF_CHECK_OK(result.status()) << " could not create local client for testing";
|
/frameworks/native/libs/vr/libbufferhubqueue/ |
buffer_hub_queue_client.cpp | 48 : Client{pdx::default_transport::ClientChannel::Create( 54 : Client{ 132 // A temporary consumer queue client to pull its channel parcelable. 181 // client itself. 579 // resources backing the queue; while the original client channel of this 580 // producer queue is destroyed in place so that this client can no longer
|
/frameworks/native/services/surfaceflinger/ |
Layer.cpp | 73 Layer::Layer(SurfaceFlinger* flinger, const sp<Client>& client, const String8& name, uint32_t w, 94 mClientRef(client), 146 sp<Client> c(mClientRef.promote()); 756 // have a HWC counterpart, then it will always be Client 757 return HWC2::Composition::Client; [all...] |
/hardware/qcom/display/msm8909w_3100/sdm/libs/hwc2/ |
hwc_layers.cpp | 226 case HWC2::Composition::Client: 748 hwc_composition = HWC2::Composition::Client;
|
/hardware/qcom/display/msm8996/sdm/libs/hwc2/ |
hwc_layers.cpp | 168 // Validation is required when the client changes the composition type 174 case HWC2::Composition::Client: 571 hwc_composition = HWC2::Composition::Client;
|
/hardware/qcom/display/msm8998/sdm/libs/hwc2/ |
hwc_layers.cpp | 335 // Validation is required when the client changes the composition type 341 case HWC2::Composition::Client: 791 hwc_composition = HWC2::Composition::Client;
|
/prebuilts/go/darwin-x86/src/net/ |
tcpsock_test.go | 134 // Client connection. 176 // The benchmark creates GOMAXPROCS client/server pairs. 177 // Each pair creates 4 goroutines: client reader/writer and server reader/writer. 187 // Setup P client/server connections. 221 // Client writer. 275 // Client reader. 495 client, err := Dial("tcp", ln.Addr().String()) 499 defer client.Close() 511 _, err = io.ReadFull(client, buf[:]) 531 if _, err = io.ReadFull(client, buf[:]); err != nil [all...] |
/prebuilts/go/linux-x86/src/net/ |
tcpsock_test.go | 134 // Client connection. 176 // The benchmark creates GOMAXPROCS client/server pairs. 177 // Each pair creates 4 goroutines: client reader/writer and server reader/writer. 187 // Setup P client/server connections. 221 // Client writer. 275 // Client reader. 495 client, err := Dial("tcp", ln.Addr().String()) 499 defer client.Close() 511 _, err = io.ReadFull(client, buf[:]) 531 if _, err = io.ReadFull(client, buf[:]); err != nil [all...] |
/external/autotest/site_utils/lxc/container_pool/ |
service_unittest.py | 64 client = connection.Client(self.address) 65 client.close() 71 with self.run_service(), self.create_client() as client: 73 client.send_bytes(array.array('i', range(1, 10))) 76 client.recv() 83 with self.run_service(), self.create_client() as client: 85 client.send('foo') 88 client.recv() 95 with self.run_service(), self.create_client() as client [all...] |
/external/python/cpython2/Lib/multiprocessing/ |
managers.py | 159 Listener, Client = listener_client[serializer] 454 # Mapping from serializer name to Listener and Client types 458 'pickle' : (connection.Listener, connection.Client), 499 Listener, Client = listener_client[self._serializer] 500 conn = Client(self._address, authkey=self._authkey) [all...] |
/external/python/cpython3/Lib/multiprocessing/ |
managers.py | 136 Listener, Client = listener_client[serializer] 445 # Mapping from serializer name to Listener and Client types 449 'pickle' : (connection.Listener, connection.Client), 488 Listener, Client = listener_client[self._serializer] 489 conn = Client(self._address, authkey=self._authkey) [all...] |
/frameworks/av/services/camera/libcameraservice/common/ |
Camera2ClientBase.cpp | 62 ALOGI("Camera %s: Opened. Client: %s (PID %d, UID %d)", cameraId.string(), 93 ALOGV("%s: Initializing client for camera %s", __FUNCTION__, 130 ALOGI("Closed Camera %s. Client was: %s (PID %d, UID %u)", 188 // Allow both client and the media server to disconnect at all times 216 const sp<TCamCallbacks>& client) { 235 TClientBase::mRemoteCallback = client; 236 mSharedCameraCallbacks = client; 359 SharedCameraCallbacks &client) : 361 mRemoteCallback(client.mRemoteCallback), 362 mSharedClient(client) { [all...] |
/frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/ |
buffer_hub_queue_client.h | 14 #include <pdx/client.h> 36 class BufferHubQueue : public pdx::Client { 45 // a new consumer queue client or nullptr on failure. 359 // producer queue client should no longer be used.
|
/frameworks/native/libs/vr/libvrflinger/ |
hwc_types.h | 187 Client = HWC2_COMPOSITION_CLIENT,
|
/prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/ |
managers.py | 159 Listener, Client = listener_client[serializer] 454 # Mapping from serializer name to Listener and Client types 458 'pickle' : (connection.Listener, connection.Client), 499 Listener, Client = listener_client[self._serializer] 500 conn = Client(self._address, authkey=self._authkey) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/ |
managers.py | 159 Listener, Client = listener_client[serializer] 454 # Mapping from serializer name to Listener and Client types 458 'pickle' : (connection.Listener, connection.Client), 499 Listener, Client = listener_client[self._serializer] 500 conn = Client(self._address, authkey=self._authkey) [all...] |
/prebuilts/go/darwin-x86/src/expvar/ |
expvar_test.go | 396 // The benchmark creates GOMAXPROCS client/server pairs. 397 // Each pair creates 4 goroutines: client reader/writer and server reader/writer. 407 // Setup P client/server connections. 441 // Client writer. 502 // Client reader.
|