Searched refs:Client (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/native/services/surfaceflinger/
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...]
H A DClient.h38 class Client : public BnSurfaceComposerClient class in namespace:android
41 Client(const sp<SurfaceFlinger>& flinger);
42 ~Client();
H A DLayerDim.h32 LayerDim(SurfaceFlinger* flinger, const sp<Client>& client,
H A DSurfaceFlinger.h63 class Client;
138 friend class Client;
276 uint32_t setClientStateLocked(const sp<Client>& client, const layer_state_t& s);
282 status_t createLayer(const String8& name, const sp<Client>& client,
286 status_t createNormalLayer(const sp<Client>& client, const String8& name,
291 status_t createDimLayer(const sp<Client>& client, const String8& name,
297 status_t onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle);
308 void addClientLayer(const sp<Client>& client,
H A DLayerDim.cpp34 LayerDim::LayerDim(SurfaceFlinger* flinger, const sp<Client>& client,
H A DLayer.h40 #include "Client.h"
55 class Client;
121 Layer(SurfaceFlinger* flinger, const sp<Client>& client,
406 const wp<Client> mClientRef;
H A DAndroid.mk8 Client.cpp \
H A DSurfaceFlinger.cpp60 #include "Client.h"
202 sp<Client> client(new Client(this));
1943 void SurfaceFlinger::addClientLayer(const sp<Client>& client,
2025 // that we have a Client*. however, RTTI is disabled in Android.
2031 sp<Client> client( static_cast<Client *>(s.client.get()) );
2114 const sp<Client>& client,
2180 const sp<Client>& client,
2218 status_t SurfaceFlinger::createNormalLayer(const sp<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/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/camera/libcameraservice/
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...]
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...]
/frameworks/av/services/audioflinger/
H A DTrackBase.h59 const sp<Client>& client,
139 /*const*/ sp<Client> mClient; // see explanation at ~TrackBase() why not const
H A DPlaybackTracks.h26 const sp<Client>& client,
168 const sp<Client>& client,
201 // Client/App facing methods.
211 const sp<Client>& client,
H A DRecordTracks.h26 const sp<Client>& client,
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 DEffects.h170 const sp<AudioFlinger::Client>& client,
223 /*const*/ sp<Client> mClient; // client for shared memory allocation, see disconnect()
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...]
H A DThreads.h279 const sp<AudioFlinger::Client>& client,
529 const sp<AudioFlinger::Client>& client,
1082 const sp<AudioFlinger::Client>& client,
H A DTracks.cpp66 const sp<Client>& client,
233 // Client destructor must run with AudioFlinger client mutex locked
375 const sp<Client>& client,
501 result.append(" Name Active Client Type Fmt Chn mask Session fCount S F SRate "
881 // Client should implement this using SSQ; the unpresented frame count in latch is irrelevant
1134 const sp<Client>& client,
1154 const sp<Client>& client,
1981 const sp<Client>& client,
2108 result.append(" Active Client Fmt Chn mask Session S Server fCount SRate\n");
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.h49 public Camera2ClientBase<CameraService::Client>
H A DCameraClient.h32 class CameraClient : public CameraService::Client
/frameworks/av/services/camera/libcameraservice/common/
H A DCamera2ClientBase.cpp60 ALOGI("Camera %d: Opened. Client: %s (PID %d, UID %d)", cameraId,
119 ALOGI("Closed Camera %d. Client was: %s (PID %d, UID %u)",
340 template class Camera2ClientBase<CameraService::Client>;
/frameworks/base/docs/html/google/
H A Dgoogle_toc.cs161 <span class="en">Implementing GCM Client</span></a>

Completed in 2828 milliseconds

12