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.java53 private final HashMap<IBinder, Client> mClients = new HashMap<IBinder, Client>();
71 private class Client implements IBinder.DeathRecipient { class in class:RingtonePlayer
75 public Client(IBinder token, Uri uri, UserHandle user, AudioAttributes aa) { method in class:RingtonePlayer.Client
100 Client client;
105 client = new Client(token, uri, user, aa);
116 Client client;
129 Client client;
172 for (Client client : mClients.values()) {
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h58 class Client;
124 // Client functionality
230 class Client : public BnCamera, public BasicClient class in class:android::CameraService
260 Client(const sp<CameraService>& cameraService,
268 ~Client();
281 // convert client from cookie. Client lock should be acquired before getting Client.
282 static Client* getClientFromCookie(void* user);
292 }; // class Client
363 // either a Client o
[all...]
H A DCameraService.cpp480 sp<Client> client;
486 client = static_cast<Client*>(mClient[cameraId].promote().get());
644 mBusy is set to false as the last step of the Client destructor,
645 after which it is guaranteed that the Client destructor has finished (
648 We only need this for a Client subclasses since we don't allow
664 sp<Client>& client,
753 sp<Client> client;
762 device = static_cast<Client*>(clientTmp.get());
816 sp<Client> client;
825 device = static_cast<Client*>(clientTm
1361 CameraService::Client::Client(const sp<CameraService>& cameraService, function in class:android::CameraService::Client
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp338 sp<Client> c = new Client(
345 wp<Client> w = c;
434 status_t MediaPlayerService::Client::dump(int fd, const Vector<String16>& args) const
439 result.append(" Client\n");
468 sp<Client> c = mClients[i].promote();
568 void MediaPlayerService::removeClient(wp<Client> client)
574 MediaPlayerService::Client::Client( function in class:android::MediaPlayerService::Client
579 ALOGV("Client(
[all...]
H A DMediaPlayerService.h68 class Client;
289 void removeClient(wp<Client> client);
337 class Client : public BnMediaPlayer { class in class:android::MediaPlayerService
392 Client( const sp<MediaPlayerService>& service,
398 Client();
399 virtual ~Client();
438 sp<Client> mNextClient;
453 }; // Client
461 SortedVector< wp<Client> > mClients;
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h393 // --- Client ---
394 class Client : public RefBase { class in class:android::AudioFlinger
396 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
397 virtual ~Client();
406 Client(const Client&);
407 Client& operator = (const Client&);
416 // --- Notification Client ---
665 DefaultKeyedVector< pid_t, wp<Client> > mClient
[all...]
H A DAudioFlinger.cpp85 static const char kClientLockedString[] = "Client lock is taken\n";
312 sp<Client> client = mClients.valueAt(i).promote();
459 sp<AudioFlinger::Client> AudioFlinger::registerPid(pid_t pid)
463 // (for which promote() is always != 0), otherwise create a new entry and Client.
464 sp<Client> client = mClients.valueFor(pid).promote();
466 client = new Client(this, pid);
549 sp<Client> client;
657 // remove local strong reference to Client before deleting the Track so that the
658 // Client destructor is called by the TrackBase destructor with mClientLock held
1302 AudioFlinger::Client function in class:android::AudioFlinger::Client
[all...]
/frameworks/base/media/java/android/media/
H A DMediaRouter.java352 Client client = new Client();
571 final class Client extends IMediaRouterClient.Stub { class in class:MediaRouter.Static
577 if (Client.this == mClient) {

Completed in 1253 milliseconds