Searched refs:client (Results 126 - 150 of 372) sorted by relevance

1234567891011>>

/frameworks/native/libs/vr/libpdx_default_transport/
H A Dpdx_tool.cpp4 #include <pdx/client.h>
119 auto client = ControlClient::Create(service_path, kClientTimeoutMs); local
120 if (!client) {
126 client->Reload();
139 auto client = ControlClient::Create(service_path, kClientTimeoutMs); local
140 if (!client) {
146 std::string response = client->Dump();
/frameworks/native/libs/vr/libpdx_uds/
H A Dremote_method_tests.cpp14 #include <pdx/client.h>
54 // Defines a serializable user type that may be transferred between client and
128 // Defines the contract between the client and service, including ServiceFS
189 // Test client to send messages to the test service.
550 // thread, either the service or client must be destroyed before stopping the
553 // stopping the dispatcher the client destructor will get blocked waiting for a
593 // Create a client to service.
594 auto client = TestClient::Create(); local
595 ASSERT_NE(nullptr, client);
597 const int sum = client
647 auto client = TestClient::Create(); local
691 auto client = TestClient::Create(); local
716 auto client = TestClient::Create(); local
731 auto client = TestClient::Create(); local
755 auto client = TestClient::Create(); local
[all...]
/frameworks/av/services/camera/libcameraservice/common/
H A DCamera2ClientBase.h97 explicit Lock(SharedCameraCallbacks &client);
103 explicit SharedCameraCallbacks(const sp<TCamCallbacks>& client);
104 SharedCameraCallbacks& operator=(const sp<TCamCallbacks>& client);
122 /** Binder client interface-related private members */
124 // Mutex that must be locked by methods implementing the binder client
125 // interface. Ensures serialization between incoming client calls.
144 const int mApi1CameraId; // -1 if client is API2
/frameworks/base/core/java/android/hardware/location/
H A DContextHubManager.java579 * @param client the ContextHubClient object associated with this callback
580 * @param callback the callback to invoke at the client process
581 * @param executor the executor to invoke callbacks for this client
586 ContextHubClient client, ContextHubClientCallback callback, Executor executor) {
590 executor.execute(() -> callback.onMessageFromNanoApp(client, message));
595 executor.execute(() -> callback.onHubReset(client));
600 executor.execute(() -> callback.onNanoAppAborted(client, nanoAppId, abortCode));
605 executor.execute(() -> callback.onNanoAppLoaded(client, nanoAppId));
610 executor.execute(() -> callback.onNanoAppUnloaded(client, nanoAppId));
615 executor.execute(() -> callback.onNanoAppEnabled(client, nanoAppI
585 createClientCallback( ContextHubClient client, ContextHubClientCallback callback, Executor executor) argument
[all...]
/frameworks/base/services/core/java/com/android/server/location/
H A DActivityRecognitionProxy.java138 IActivityRecognitionHardwareClient client =
140 if (client == null) {
141 Log.e(TAG, "No client found on connection.");
145 client.onAvailabilityChanged(mIsSupported, mInstance);
147 Log.e(TAG, "Error delivering hardware interface to client.", e);
/frameworks/native/libs/vr/libdvr/include/dvr/
H A Ddvr_deleter.h30 void dvrDisplayManagerDestroy(DvrDisplayManager* client);
33 void dvrHwcClientDestroy(DvrHwcClient* client);
35 void dvrVSyncClientDestroy(DvrVSyncClient* client);
/frameworks/av/services/camera/libcameraservice/utils/
H A DClientManager.h266 const std::shared_ptr<ClientDescriptor<KEY, VALUE>>& client);
296 const std::shared_ptr<ClientDescriptor<KEY, VALUE>>& client) const;
299 * Return a vector of active ClientDescriptors that prevent this client from being added.
302 const std::shared_ptr<ClientDescriptor<KEY, VALUE>>& client) const;
327 * Block until the given client is no longer in the active clients list, or the timeout
333 status_t waitUntilRemoved(const std::shared_ptr<ClientDescriptor<KEY, VALUE>> client,
337 * Set the current listener for client add/remove events.
347 * The onClientRemoved method will be called when the client has been removed or evicted
349 * method will be called when the client has been added to the ClientManager that this
362 * vector of ClientDescriptors that are higher priority than the incoming client an
410 wouldEvictLocked( const std::shared_ptr<ClientDescriptor<KEY, VALUE>>& client, bool returnIncompatibleClients) const argument
503 addAndEvict( const std::shared_ptr<ClientDescriptor<KEY, VALUE>>& client) argument
620 waitUntilRemoved( const std::shared_ptr<ClientDescriptor<KEY, VALUE>> client, nsecs_t timeout) const argument
[all...]
/frameworks/base/services/midi/java/com/android/server/midi/
H A DMidiService.java131 // 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
193 // ignore private devices that our client cannot access
207 // ignore private devices that our client cannot access
221 // ignore private devices that our client cannot access
270 Client client = mClients.get(token);
271 if (client
528 DeviceConnection(Device device, Client client, IMidiDeviceOpenCallback callback) argument
[all...]
/frameworks/av/camera/aidl/android/hardware/
H A DICameraService.aidl78 ICamera connect(ICameraClient client,
100 ICamera connectLegacy(ICameraClient client,
/frameworks/av/include/soundtrigger/
H A DISoundTriggerHwService.h40 const sp<ISoundTriggerClient>& client,
/frameworks/av/soundtrigger/
H A DISoundTriggerHwService.cpp81 const sp<ISoundTriggerClient>& client,
87 data.writeStrongBinder(IInterface::asBinder(client));
156 sp<ISoundTriggerClient> client = local
159 status_t status = attach(handle, client, module);
80 attach(const sound_trigger_module_handle_t handle, const sp<ISoundTriggerClient>& client, sp<ISoundTrigger>& module) argument
/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
H A DRemoteDrawableParamsAdapter.java17 package com.android.layoutlib.bridge.remote.client.adapters;
H A DRemoteILayoutPullParserAdapter.java17 package com.android.layoutlib.bridge.remote.client.adapters;
H A DRemoteParserFactoryAdapter.java17 package com.android.layoutlib.bridge.remote.client.adapters;
/frameworks/native/libs/vr/libdisplay/include/private/dvr/
H A Ddisplay_manager_client.h7 #include <pdx/client.h>
/frameworks/native/libs/vr/libperformance/include/private/dvr/
H A Dperformance_client.h10 #include <pdx/client.h>
/frameworks/native/services/surfaceflinger/tests/fakehwc/
H A DFakeComposerService.h29 FakeComposerService(android::sp<ComposerClient>& client);
/frameworks/av/include/media/
H A DIMediaPlayerService.h49 virtual sp<IMediaPlayer> create(const sp<IMediaPlayerClient>& client,
57 // display client when display connection, disconnection or errors occur.
61 const sp<IRemoteDisplayClient>& client, const String8& iface) = 0;
/frameworks/av/media/libmedia/include/media/
H A DIMediaPlayerService.h49 virtual sp<IMediaPlayer> create(const sp<IMediaPlayerClient>& client,
57 // display client when display connection, disconnection or errors occur.
61 const sp<IRemoteDisplayClient>& client, const String8& iface) = 0;
/frameworks/av/services/oboeservice/
H A DAAudioServiceEndpoint.h25 #include "client/AudioStreamInternal.h"
26 #include "client/AudioStreamInternalPlay.h"
62 virtual aaudio_result_t startClient(const android::AudioClient& client, argument
64 ALOGD("AAudioServiceEndpoint::startClient(%p, ...) AAUDIO_ERROR_UNAVAILABLE", &client);
/frameworks/base/core/java/android/app/
H A DIUiAutomationConnection.aidl37 void connect(IAccessibilityServiceClient client, int flags);
/frameworks/base/core/java/android/app/servertransaction/
H A DActivityConfigurationChangeItem.java39 public void execute(ClientTransactionHandler client, IBinder token, argument
43 client.handleActivityConfigurationChanged(token, mConfiguration, INVALID_DISPLAY);
H A DActivityResultItem.java46 public void execute(ClientTransactionHandler client, IBinder token, argument
49 client.handleSendResult(token, mResultInfoList, "ACTIVITY_RESULT");
H A DDestroyActivityItem.java36 public void execute(ClientTransactionHandler client, IBinder token, argument
39 client.handleDestroyActivity(token, mFinished, mConfigChanges,
H A DMoveToDisplayItem.java39 public void execute(ClientTransactionHandler client, IBinder token, argument
42 client.handleActivityConfigurationChanged(token, mConfiguration, mTargetDisplayId);

Completed in 755 milliseconds

1234567891011>>