Searched refs:client (Results 76 - 100 of 313) sorted by relevance

1234567891011>>

/frameworks/native/libs/vr/libdisplay/include/private/dvr/
H A Dvsync_client.h6 #include <pdx/client.h>
/frameworks/native/services/surfaceflinger/
H A DLayerDim.h32 LayerDim(SurfaceFlinger* flinger, const sp<Client>& client,
H A DLayerDim.cpp38 LayerDim::LayerDim(SurfaceFlinger* flinger, const sp<Client>& client, argument
40 : Layer(flinger, client, name, w, h, flags) {
/frameworks/native/services/vr/hardware_composer/impl/
H A Dvr_composer_client.cpp41 VrComposerClient::VrCommandReader::VrCommandReader(VrComposerClient& client) argument
42 : CommandReader(client), mVrClient(client), mVrHal(client.mVrHal) {}
/frameworks/av/include/media/
H A DMmapStreamInterface.h56 * \param[in] client a Client struct describing the first client using this stream.
71 const Client& client,
108 * \param[in] client a Client struct describing the client starting on this stream.
114 virtual status_t start(const Client& client, audio_port_handle_t *handle) = 0;
129 * Must be called after createMmapBuffer(). Cannot be called if any client is active.
130 * It is recommended to place a mmap stream into standby as often as possible when no client is
/frameworks/av/include/media/stagefright/
H A DThrottledSource.h61 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client) { argument
62 mSource->getDrmInfo(handle, client);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerFactory.cpp103 player_type MediaPlayerFactory::getPlayerType(const sp<IMediaPlayer>& client, argument
105 GET_PLAYER_TYPE_IMPL(client, url);
108 player_type MediaPlayerFactory::getPlayerType(const sp<IMediaPlayer>& client, argument
112 GET_PLAYER_TYPE_IMPL(client, fd, offset, length);
115 player_type MediaPlayerFactory::getPlayerType(const sp<IMediaPlayer>& client, argument
117 GET_PLAYER_TYPE_IMPL(client, source);
120 player_type MediaPlayerFactory::getPlayerType(const sp<IMediaPlayer>& client, argument
122 GET_PLAYER_TYPE_IMPL(client, source);
173 virtual float scoreFactory(const sp<IMediaPlayer>& /*client*/,
205 virtual float scoreFactory(const sp<IMediaPlayer>& /*client*/,
[all...]
/frameworks/av/media/libstagefright/foundation/include/
H A DThrottledSource.h61 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client) { argument
62 mSource->getDrmInfo(handle, client);
/frameworks/av/media/libstagefright/include/
H A DThrottledSource.h61 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client) { argument
62 mSource->getDrmInfo(handle, client);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCallbackProcessor.h44 explicit CallbackProcessor(sp<Camera2Client> client);
82 status_t processNewCallback(sp<Camera2Client> &client);
H A DCallbackProcessor.cpp34 CallbackProcessor::CallbackProcessor(sp<Camera2Client> client): argument
36 mClient(client),
37 mDevice(client->getCameraDevice()),
38 mId(client->getCameraId()),
64 sp<Camera2Client> client = mClient.promote(); local
65 if (client == 0) return OK;
66 sp<CameraDeviceBase> device = client->getCameraDevice();
74 client->getCameraId(), strerror(-res), res);
234 sp<Camera2Client> client = mClient.promote(); local
235 if (client
261 processNewCallback(sp<Camera2Client> &client) argument
[all...]
/frameworks/base/core/java/android/printservice/
H A DIPrintService.aidl29 void setClient(IPrintServiceClient client);
/frameworks/base/core/java/android/widget/
H A DCursorFilter.java38 CursorFilter(CursorFilterClient client) { argument
39 mClient = client;
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/jdwp/
H A DJDWPClassDataRetriever.java36 private final Client client; field in class:JDWPClassDataRetriever
42 public JDWPClassDataRetriever(Client client) { argument
43 this.client = client;
53 public Map<String, String> getClassData(Client client) { argument
54 return new JDWPClassDataRetriever(client).retrieve();
58 if (client == null) {
62 settings = createTestOptions("localhost:" + String.valueOf(client.getDebuggerListenPort()));
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestGetFolderListing.java17 package android.bluetooth.client.map;
18 import android.bluetooth.client.map.utils.ObexAppParameters;
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DCursorFilter.java39 CursorFilter(CursorFilterClient client) { argument
40 mClient = client;
/frameworks/av/media/libmedia/
H A DIResourceManagerService.cpp76 const sp<IResourceManagerClient> client,
82 data.writeStrongBinder(IInterface::asBinder(client));
133 sp<IResourceManagerClient> client(
135 if (client == NULL) {
140 addResource(pid, clientId, client, resources);
73 addResource( int pid, int64_t clientId, const sp<IResourceManagerClient> client, const Vector<MediaResource> &resources) 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 DDefaultHttpClientTest.java33 import org.apache.http.client.methods.HttpGet;
35 import org.apache.http.impl.client.DefaultHttpClient;
81 DefaultHttpClient client = new DefaultHttpClient();
83 HttpResponse a = client.execute(new HttpGet(server.getUrl("/a").toURI()));
87 HttpResponse b = client.execute(new HttpGet(server.getUrl("/b").toURI()));
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.cpp104 // tear down the client
168 // lock camera to this client if the the camera is unlocked
174 // returns NO_ERROR if the client already owns the camera, EBUSY otherwise
199 // connect a new client to the camera
200 status_t CameraClient::connect(const sp<hardware::ICameraClient>& client) { argument
212 (IInterface::asBinder(client) == IInterface::asBinder(mRemoteCallback))) {
213 LOG1("Connect to the same client");
219 mRemoteCallback = client;
242 // Allow both client and the cameraserver to disconnect at all times
244 ALOGW("different client
836 sp<CameraClient> client = getClientFromCookie(user); local
856 sp<CameraClient> client = getClientFromCookie(user); local
889 sp<CameraClient> client = getClientFromCookie(user); local
906 sp<CameraClient> client = getClientFromCookie(user); local
1100 copyFrameAndPostCopiedFrame( int32_t msgType, const sp<hardware::ICameraClient>& client, const sp<IMemoryHeap>& heap, size_t offset, size_t size, camera_frame_metadata_t *metadata) argument
[all...]
/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/base/services/core/java/com/android/server/media/
H A DMediaRouterService.java119 public void registerClientAsUser(IMediaRouterClient client, String packageName, int userId) { argument
120 if (client == null) {
121 throw new IllegalArgumentException("client must not be null");
138 registerClientLocked(client, pid, packageName, resolvedUserId, trusted);
147 public void unregisterClient(IMediaRouterClient client) { argument
148 if (client == null) {
149 throw new IllegalArgumentException("client must not be null");
155 unregisterClientLocked(client, false);
164 public MediaRouterClientState getState(IMediaRouterClient client) { argument
165 if (client
181 setDiscoveryRequest(IMediaRouterClient client, int routeTypes, boolean activeScan) argument
204 setSelectedRoute(IMediaRouterClient client, String routeId, boolean explicit) argument
221 requestSetVolume(IMediaRouterClient client, String routeId, int volume) argument
241 requestUpdateVolume(IMediaRouterClient client, String routeId, int direction) argument
306 registerClientLocked(IMediaRouterClient client, int pid, String packageName, int userId, boolean trusted) argument
335 unregisterClientLocked(IMediaRouterClient client, boolean died) argument
345 getStateLocked(IMediaRouterClient client) argument
353 setDiscoveryRequestLocked(IMediaRouterClient client, int routeTypes, boolean activeScan) argument
377 setSelectedRouteLocked(IMediaRouterClient client, String routeId, boolean explicit) argument
407 requestSetVolumeLocked(IMediaRouterClient client, String routeId, int volume) argument
417 requestUpdateVolumeLocked(IMediaRouterClient client, String routeId, int direction) argument
501 ClientRecord(UserRecord userRecord, IMediaRouterClient client, int pid, String packageName, boolean trusted) argument
[all...]
/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/base/services/core/java/com/android/server/wm/
H A DViewServer.java169 Socket client = mServer.accept();
171 mThreadPool.submit(new ViewServerWorker(client));
174 client.close();
185 private static boolean writeValue(Socket client, String value) { argument
189 OutputStream clientStream = client.getOutputStream();
214 public ViewServerWorker(Socket client) { argument
215 mClient = client;
/frameworks/native/libs/vr/libpdx_default_transport/
H A Dservicetool.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();

Completed in 437 milliseconds

1234567891011>>