Searched defs:client (Results 76 - 100 of 164) sorted by relevance

1234567

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DStreamingProcessor.cpp43 StreamingProcessor::StreamingProcessor(sp<Camera2Client> client): argument
44 mClient(client),
45 mDevice(client->getCameraDevice()),
46 mId(client->getCameraId()),
110 sp<Camera2Client> client = mClient.promote(); local
111 if (client == 0) {
/frameworks/av/services/camera/libcameraservice/common/
H A DCamera2ClientBase.cpp90 ALOGV("%s: Initializing client for camera %s", __FUNCTION__,
184 // Allow both client and the media server to disconnect at all times
212 const sp<TCamCallbacks>& client) {
231 TClientBase::mRemoteCallback = client;
232 mSharedCameraCallbacks = client;
349 SharedCameraCallbacks &client) :
351 mRemoteCallback(client.mRemoteCallback),
352 mSharedClient(client) {
364 const sp<TCamCallbacks>&client) :
366 mRemoteCallback(client) {
211 connect( const sp<TCamCallbacks>& client) argument
348 Lock( SharedCameraCallbacks &client) argument
[all...]
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHwService.h54 const sp<ISoundTriggerClient>& client,
135 sp<ModuleClient> addClient(const sp<ISoundTriggerClient>& client);
160 const sp<ISoundTriggerClient>& client);
186 sp<ISoundTriggerClient> client() const { return mClient; } function in class:android::SoundTriggerHwService::ModuleClient
/frameworks/base/core/java/android/app/
H A DUiAutomationConnection.java82 public void connect(IAccessibilityServiceClient client, int flags) { argument
83 if (client == null) {
92 registerUiTestAutomationServiceLocked(client, flags);
327 private void registerUiTestAutomationServiceLocked(IAccessibilityServiceClient client, argument
343 // process is gone the client calling in will be killed.
344 manager.registerUiTestAutomationService(mToken, client, info, flags);
345 mClient = client;
356 // process is gone the client calling in will be killed.
369 // process is gone the client calling in will be killed.
381 // process is gone the client callin
[all...]
/frameworks/base/core/java/android/printservice/
H A DPrintJob.java55 @NonNull IPrintServiceClient client) {
58 mPrintServiceClient = client;
59 mDocument = new PrintDocument(mCachedInfo.getId(), client,
54 PrintJob(@onNull Context context, @NonNull PrintJobInfo jobInfo, @NonNull IPrintServiceClient client) argument
/frameworks/base/core/jni/
H A Dandroid_media_RemoteDisplay.cpp113 const sp<NativeRemoteDisplayClient>& client) :
114 mDisplay(display), mClient(client) {
150 sp<NativeRemoteDisplayClient> client(new NativeRemoteDisplayClient(env, remoteDisplayObj));
152 client, String8(iface.c_str()));
159 NativeRemoteDisplay* wrapper = new NativeRemoteDisplay(display, client);
112 NativeRemoteDisplay(const sp<IRemoteDisplay>& display, const sp<NativeRemoteDisplayClient>& client) argument
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DAbstractProxyTest.java33 import org.apache.http.client.HttpClient;
34 import org.apache.http.client.methods.HttpGet;
196 HttpClient client = newHttpClient();
198 proxyConfig.configure(server, client, request);
199 HttpResponse response = client.execute(request);
212 HttpClient client = newHttpClient();
215 HttpResponse response = client.execute(request);
241 @Override void configure(MockWebServer server, HttpClient client, HttpRequest request) {
247 @Override void configure(MockWebServer server, HttpClient client, HttpRequest request) {
253 @Override void configure(MockWebServer server, HttpClient client, HttpReques
271 configure(MockWebServer proxy, HttpClient client, HttpRequest request) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeIInputMethodManager.java232 IInputMethodClient client, IBinder windowToken, int controlFlags,
230 startInputOrWindowGainedFocus( int startInputReason, IInputMethodClient client, IBinder windowToken, int controlFlags, int softInputMode, int windowFlags, EditorInfo attribute, IInputContext inputContext, int missingMethodFlags) argument
/frameworks/base/tools/preload2/src/com/android/preload/ui/
H A DSequenceUI.java99 throw new RuntimeException("Didn't find client " + pkg);
103 public SequenceUI client(String pkg) { method in class:SequenceUI
/frameworks/native/include/private/gui/
H A DLayerState.h115 sp<ISurfaceComposerClient> client; member in struct:android::ComposerState
/frameworks/native/libs/gui/
H A DSurfaceControl.cpp49 const sp<SurfaceComposerClient>& client,
52 : mClient(client), mHandle(handle), mGraphicBufferProducer(gbp)
79 // that a client living in the same process still holds references which
209 const sp<SurfaceComposerClient>& client(mClient);
210 return client->clearLayerFrameStats(mHandle);
216 const sp<SurfaceComposerClient>& client(mClient);
217 return client->getLayerFrameStats(mHandle, outStats);
223 ALOGE("invalid handle (%p) or client (%p)",
48 SurfaceControl( const sp<SurfaceComposerClient>& client, const sp<IBinder>& handle, const sp<IGraphicBufferProducer>& gbp) argument
/frameworks/native/libs/vr/libdvr/
H A Ddvr_display_manager.cpp91 std::unique_ptr<DisplayManagerClient> client; member in struct:DvrDisplayManager
102 auto client = DisplayManagerClient::Create();
103 if (!client) {
104 ALOGE("dvrDisplayManagerCreate: Failed to create display manager client!");
108 *client_out = new DvrDisplayManager{std::move(client)};
112 void dvrDisplayManagerDestroy(DvrDisplayManager* client) { delete client; } argument
114 int dvrDisplayManagerSetupNamedBuffer(DvrDisplayManager* client, argument
117 if (!client || !name || !buffer_out)
123 client
134 dvrDisplayManagerGetEventFd(DvrDisplayManager* client) argument
141 dvrDisplayManagerTranslateEpollEventMask(DvrDisplayManager* client, int in_events, int* out_events) argument
154 dvrDisplayManagerGetSurfaceState(DvrDisplayManager* client, DvrSurfaceState* state) argument
167 dvrDisplayManagerGetReadBufferQueue(DvrDisplayManager* client, int surface_id, int queue_id, DvrReadBufferQueue** queue_out) argument
[all...]
H A Ddvr_hardware_composer_client.cpp62 std::unique_ptr<DvrHwcClient> client(new DvrHwcClient());
65 client->composer = android::interface_cast<android::dvr::IVrComposer>(
67 if (!client->composer.get())
70 client->callback = new HwcCallback(callback, data);
71 android::binder::Status status = client->composer->registerObserver(
72 client->callback);
76 return client.release();
79 void dvrHwcClientDestroy(DvrHwcClient* client) { argument
80 delete client;
/frameworks/native/libs/vr/libpdx/
H A Dclient.cpp1 #include "pdx/client.h"
125 Transaction::Transaction(Client& client) : client_{client} {} argument
/frameworks/native/libs/vr/libvrsensor/
H A Dpose_client.cpp7 #include <pdx/client.h>
31 static PoseClient* FromC(DvrPose* client) { argument
32 return reinterpret_cast<PoseClient*>(client);
281 PoseClient* client = PoseClient::Create().release(); local
282 return reinterpret_cast<DvrPose*>(client);
285 void dvrPoseDestroy(DvrPose* client) { delete PoseClient::FromC(client); } argument
287 int dvrPoseGet(DvrPose* client, uint32_t vsync_count, DvrPoseAsync* out_pose) { argument
288 return PoseClient::FromC(client)->GetPose(vsync_count, out_pose);
291 uint32_t dvrPoseGetVsyncCount(DvrPose* client) { argument
295 dvrPoseGetController(DvrPose* client, int32_t controller_id, uint32_t vsync_count, DvrPoseAsync* out_pose) argument
301 dvrPoseLogController(DvrPose* client, bool enable) argument
305 dvrPosePoll(DvrPose* client, DvrPoseState* state) argument
309 dvrPoseFreeze(DvrPose* client, const DvrPoseState* frozen_state) argument
313 dvrPoseSetMode(DvrPose* client, DvrPoseMode mode) argument
317 dvrPoseGetMode(DvrPose* client, DvrPoseMode* mode) argument
321 dvrPoseGetRingBuffer(DvrPose* client, DvrPoseRingBufferInfo* out_info) argument
325 privateDvrPoseNotifyVsync(DvrPose* client, uint32_t vsync_count, int64_t display_timestamp, int64_t display_period_ns, int64_t right_eye_photon_offset_ns) argument
334 privateDvrPoseGetRingBufferFd(DvrPose* client, LocalHandle* fd) argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DClient.cpp164 Client* client; member in class:android::MessageCreateLayer
177 const String8& name, Client* client,
182 : flinger(flinger), client(client),
189 result = flinger->createLayer(name, client, w, h, format, flags,
176 MessageCreateLayer(SurfaceFlinger* flinger, const String8& name, Client* client, uint32_t w, uint32_t h, PixelFormat format, uint32_t flags, sp<IBinder>* handle, uint32_t windowType, uint32_t ownerUid, sp<IGraphicBufferProducer>* gbp, sp<Layer>* parent) argument
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapBmessage.java17 package android.bluetooth.client.map;
H A DBluetoothMapMessage.java17 package android.bluetooth.client.map;
18 import android.bluetooth.client.map.utils.ObexTime;
H A DBluetoothMasRequest.java17 package android.bluetooth.client.map;
H A DBluetoothMasClient.java17 package android.bluetooth.client.map;
27 import android.bluetooth.client.map.BluetoothMasRequestSetMessageStatus.StatusIndicator;
28 import android.bluetooth.client.map.utils.ObexTime;
284 /** device associated with client */
287 /** MAS instance associated with client */
313 public SessionHandler(BluetoothMasClient client) { argument
316 mClient = new WeakReference<BluetoothMasClient>(client);
322 BluetoothMasClient client = mClient.get();
323 if (client == null) {
330 client
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DIntRangeManagerTest.java607 TestIntRangeManager testManager, int startId, int endId, String client) {
610 assertTrue("enabling range", testManager.enableRange(startId, endId, client));
606 verifyAddChannel( TestIntRangeManager testManager, int startId, int endId, String client) argument
/frameworks/av/cmds/stagefright/
H A Dstream.cpp352 sp<MyClient> client = new MyClient; local
379 service->create(client, AUDIO_SESSION_ALLOCATE);
385 client->waitForEOS();
/frameworks/av/services/mediaresourcemanager/
H A DResourceManagerService.cpp104 const sp<IResourceManagerClient>& client,
113 info.client = client;
179 snprintf(buffer, SIZE, " Name: %s\n", infos[j].client->getName().string());
227 const sp<IResourceManagerClient> client,
239 ResourceInfo& info = getResourceInfoForEdit(clientId, client, infos);
244 IInterface::asBinder(client)->linkToDeath(info.deathNotifier);
273 IInterface::asBinder(infos[j].client)->unlinkToDeath(infos[j].deathNotifier);
280 ALOGV("didn't find client");
289 sp<IResourceManagerClient> client; local
102 getResourceInfoForEdit( int64_t clientId, const sp<IResourceManagerClient>& client, ResourceInfos& infos) argument
224 addResource( int pid, int64_t clientId, const sp<IResourceManagerClient> client, const Vector<MediaResource> &resources) argument
436 getLowestPriorityBiggestClient_l( int callingPid, MediaResource::Type type, sp<IResourceManagerClient> *client) argument
508 getBiggestClient_l( int pid, MediaResource::Type type, sp<IResourceManagerClient> *client) argument
[all...]
/frameworks/av/services/mediaresourcemanager/test/
H A DResourceManagerService_test.cpp32 static int64_t getId(const sp<IResourceManagerClient>& client) { argument
33 return (int64_t) client.get();
60 sp<IResourceManagerClient> client(this);
61 mService->removeResource(mPid, (int64_t) client.get());
118 static void expectEqResourceInfo(const ResourceInfo &info, sp<IResourceManagerClient> client, argument
120 EXPECT_EQ(client, info.client);
140 // pid priority client type number
234 EXPECT_EQ(mTestClient3, infos2[0].client);
440 // clean up client
447 sp<IResourceManagerClient> client; local
486 sp<IResourceManagerClient> client; local
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java495 * Closes this client connection, indicating to the system that the
536 * client. If the {@link ContentProvider} is running in a different process then
548 public static void releaseQuietly(ContentProviderClient client) { argument
549 if (client != null) {
551 client.release();

Completed in 8108 milliseconds

1234567