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

/frameworks/native/services/surfaceflinger/
H A DClient.h38 class Client : public BnSurfaceComposerClient class in namespace:android
41 explicit Client(const sp<SurfaceFlinger>& flinger);
42 Client(const sp<SurfaceFlinger>& flinger, const sp<Layer>& parentLayer);
43 ~Client();
H A DClient.cpp25 #include "Client.h"
37 Client::Client(const sp<SurfaceFlinger>& flinger) function in class:android::Client
38 : Client(flinger, nullptr)
42 Client::Client(const sp<SurfaceFlinger>& flinger, const sp<Layer>& parentLayer) function in class:android::Client
48 Client::~Client()
59 void Client::setParentLayer(const sp<Layer>& parentLayer) {
64 sp<Layer> Client
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUCertType.java5 Client, enum constant in enum:OSUCertType
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackSeekUi.java22 * {@link #setPlaybackSeekUiClient(Client)} in the interface. Client (PlaybackGlue) registers
23 * itself as a Client to receive events emitted by PlaybackSeekUi and provide data to the
29 * Client (e.g. PlaybackGlue) to register on PlaybackSeekUi so that it can interact
33 class Client { class in interface:PlaybackSeekUi
44 * Event for start seeking. Client will typically pause media and save the current position
82 void setPlaybackSeekUiClient(Client client);
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DRingtonePlayer.java60 private final HashMap<IBinder, Client> mClients = new HashMap<IBinder, Client>();
78 private class Client implements IBinder.DeathRecipient { class in class:RingtonePlayer
82 public Client(IBinder token, Uri uri, UserHandle user, AudioAttributes aa) { method in class:RingtonePlayer.Client
108 Client client;
113 client = new Client(token, uri, user, aa);
126 Client client;
139 Client client;
152 Client client;
232 for (Client clien
[all...]
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
H A DL.java32 private static final Client sSystemClient = new Client() {
43 private static Client sClient = sSystemClient;
45 public static void setClient(Client systemClient) {
136 public interface Client { interface in class:L
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dclient.h28 class Client { class in namespace:android::pdx
32 virtual ~Client() = default;
35 * Returns true if the Client instance successfully initialized, false
45 * Returns the error code describing the Client initialization failure, or 0
55 explicit Client(std::unique_ptr<ClientChannel> channel);
56 explicit Client(std::unique_ptr<ClientChannelFactory> channel_factory,
60 * Called by Client::Connect() after successfully connecting to the service
64 * Subclasses may call Client::Close() within this method to terminate the
65 * connection; Client::Connect() returns the negated error passed to
66 * Client
[all...]
/frameworks/native/libs/vr/libpdx/
H A Dclient.cpp10 void Client::EnableAutoReconnect(int64_t reconnect_timeout_ms) {
17 void Client::DisableAutoReconnect() { auto_reconnect_enabled_ = false; }
19 bool Client::IsConnected() const { return channel_.get() != nullptr; }
21 Status<void> Client::CheckReconnect() {
50 bool Client::NeedToDisconnectChannel(int error) const {
54 void Client::CheckDisconnect(int error) {
59 Client::Client(std::unique_ptr<ClientChannel> channel) function in class:android::pdx::Client
62 Client::Client(st function in class:android::pdx::Client
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h68 class Client;
167 // Client functionality
293 class Client : public hardware::BnCamera, public BasicClient class in class:android::CameraService
324 Client(const sp<CameraService>& cameraService,
332 ~Client();
356 }; // class Client
H A DCameraService.cpp350 ALOGI("%s: Client for camera ID %s evicted due to device status change from HAL",
750 sp<Client> tmp = nullptr;
751 if (!(ret = connectHelper<ICameraClient,Client>(
982 ALOGE("%s: Invalid state: Client for camera %s was not removed in disconnect",
1206 sp<Client> client = nullptr;
1207 ret = connectHelper<ICameraClient,Client>(cameraClient, id,
1234 sp<Client> client = nullptr;
1235 ret = connectHelper<ICameraClient,Client>(cameraClient, id, halVersion,
1405 // Assume we have always received a Client subclass for API1
1406 sp<Client> shimClien
2035 CameraService::Client::Client(const sp<CameraService>& cameraService, function in class:android::CameraService::Client
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h73 class Client;
238 void removeClient(const wp<Client>& client);
239 bool hasClient(wp<Client> client);
306 class Client : public BnMediaPlayer { class in class:android::MediaPlayerService
410 Client( const sp<MediaPlayerService>& service,
416 Client();
417 virtual ~Client();
456 sp<Client> mNextClient;
473 }; // Client
481 SortedVector< wp<Client> > mClient
[all...]
H A DMediaPlayerService.cpp321 sp<Client> c = new Client(
328 wp<Client> w = c;
389 status_t MediaPlayerService::Client::dump(int fd, const Vector<String16>& args)
394 result.append(" Client\n");
438 SortedVector< sp<Client> > clients; //to serialise the mutex unlock & client destruction.
450 sp<Client> c = mClients[i].promote();
565 void MediaPlayerService::removeClient(const wp<Client>& client)
571 bool MediaPlayerService::hasClient(wp<Client> client)
577 MediaPlayerService::Client function in class:android::MediaPlayerService::Client
[all...]
/frameworks/base/services/midi/java/com/android/server/midi/
H A DMidiService.java90 private final HashMap<IBinder, Client> mClients = new HashMap<IBinder, Client>();
130 private final class Client implements IBinder.DeathRecipient { class in class:MidiService
144 public Client(IBinder token) { method in class:MidiService.Client
246 Log.d(TAG, "Client died: " + this);
252 StringBuilder sb = new StringBuilder("Client: UID: ");
268 private Client getClient(IBinder token) {
270 Client client = mClients.get(token);
272 client = new Client(token);
525 private final Client mClien
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h442 // --- Client ---
443 class Client : public RefBase { class in class:android::AudioFlinger
445 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
446 virtual ~Client();
452 DISALLOW_COPY_AND_ASSIGN(Client);
459 // --- Notification Client ---
728 DefaultKeyedVector< pid_t, wp<Client> > mClients; // see ~Client()
809 sp<Client> registerPid(pid_t pid); // always returns non-0
H A DAudioFlinger.cpp93 static const char kClientLockedString[] = "Client lock is taken\n";
391 sp<Client> client = mClients.valueAt(i).promote();
573 sp<AudioFlinger::Client> AudioFlinger::registerPid(pid_t pid)
577 // (for which promote() is always != 0), otherwise create a new entry and Client.
578 sp<Client> client = mClients.valueFor(pid).promote();
580 client = new Client(this, pid);
663 sp<Client> client;
785 // remove local strong reference to Client before deleting the Track so that the
786 // Client destructor is called by the TrackBase destructor with mClientLock held
1483 AudioFlinger::Client function in class:android::AudioFlinger::Client
[all...]
/frameworks/base/media/java/android/media/
H A DMediaRouter.java377 Client client = new Client();
586 final class Client extends IMediaRouterClient.Stub { class in class:MediaRouter.Static
592 if (Client.this == mClient) {
606 if (Client.this != mClient || mSelectedRoute == null

Completed in 1713 milliseconds