Searched defs:Client (Results 1 - 10 of 10) sorted by relevance

/frameworks/native/services/surfaceflinger/
H A DClient.h38 class Client : public BnSurfaceComposerClient class in namespace:android
41 Client(const sp<SurfaceFlinger>& flinger);
42 ~Client();
H A DClient.cpp25 #include "Client.h"
37 Client::Client(const sp<SurfaceFlinger>& flinger) function in class:android::Client
42 Client::~Client()
53 status_t Client::initCheck() const {
57 void Client::attachLayer(const sp<IBinder>& handle, const sp<Layer>& layer)
63 void Client::detachLayer(const Layer* layer)
75 sp<Layer> Client::getLayerUser(const sp<IBinder>& handle) const
88 status_t Client
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DRingtonePlayer.java52 private final HashMap<IBinder, Client> mClients = new HashMap<IBinder, Client>();
70 private class Client implements IBinder.DeathRecipient { class in class:RingtonePlayer
74 public Client(IBinder token, Uri uri, UserHandle user, int streamType) { method in class:RingtonePlayer.Client
99 Client client;
104 client = new Client(token, uri, user, streamType);
115 Client client;
128 Client client;
171 for (Client client : mClients.values()) {
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h55 class Client;
106 // Client functionality
207 class Client : public BnCamera, public BasicClient class in class:android::CameraService
237 Client(const sp<CameraService>& cameraService,
245 ~Client();
258 // convert client from cookie. Client lock should be acquired before getting Client.
259 static Client* getClientFromCookie(void* user);
268 }; // class Client
338 // either a Client o
[all...]
H A DCameraService.cpp387 mBusy is set to false as the last step of the Client destructor,
388 after which it is guaranteed that the Client destructor has finished (
391 We only need this for a Client subclasses since we don't allow
425 sp<Client> client;
434 device = static_cast<Client*>(clientTmp.get());
776 // Client::~Client() -> disconnect() -> removeClientByRemote().
846 // may come in while the previous Client's destructor has not been run or is
847 // still running. If the last strong reference of the previous Client is gone
848 // but the destructor has not been finished, we should not allow the new Client
913 CameraService::Client::Client(const sp<CameraService>& cameraService, function in class:android::CameraService::Client
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp263 sp<Client> c = new Client(
270 wp<Client> w = c;
360 status_t MediaPlayerService::Client::dump(int fd, const Vector<String16>& args) const
365 result.append(" Client\n");
394 sp<Client> c = mClients[i].promote();
494 void MediaPlayerService::removeClient(wp<Client> client)
500 MediaPlayerService::Client::Client( function in class:android::MediaPlayerService::Client
505 ALOGV("Client(
[all...]
H A DMediaPlayerService.h68 class Client;
276 void removeClient(wp<Client> client);
324 class Client : public BnMediaPlayer { class in class:android::MediaPlayerService
378 Client( const sp<MediaPlayerService>& service,
384 Client();
385 virtual ~Client();
421 sp<Client> mNextClient;
436 }; // Client
444 SortedVector< wp<Client> > mClients;
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h319 // --- Client ---
320 class Client : public RefBase { class in class:android::AudioFlinger
322 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
323 virtual ~Client();
332 Client(const Client&);
333 Client& operator = (const Client&);
342 // --- Notification Client ---
541 DefaultKeyedVector< pid_t, wp<Client> > mClient
[all...]
H A DAudioFlinger.cpp260 sp<Client> client = mClients.valueAt(i).promote();
391 sp<AudioFlinger::Client> AudioFlinger::registerPid_l(pid_t pid)
394 // (for which promote() is always != 0), otherwise create a new entry and Client.
395 sp<Client> client = mClients.valueFor(pid).promote();
397 client = new Client(this, pid);
456 sp<Client> client;
546 // remove local strong reference to Client before deleting the Track so that the Client
1153 AudioFlinger::Client::Client(cons function in class:android::AudioFlinger::Client
[all...]
/frameworks/base/media/java/android/media/
H A DMediaRouter.java350 Client client = new Client();
569 final class Client extends IMediaRouterClient.Stub { class in class:MediaRouter.Static
575 if (Client.this == mClient) {

Completed in 392 milliseconds