Searched refs:client (Results 276 - 300 of 372) sorted by relevance

<<1112131415

/frameworks/av/services/audioflinger/
H A DTracks.cpp65 const sp<Client>& client,
81 mClient(client),
143 if (client != 0) {
144 mCblkMemory = client->heap()->allocate(size);
148 client->heap()->dump("AudioTrack");
260 // Client destructor must run with AudioFlinger client mutex locked
262 // If the client's reference count drops to zero, the associated destructor
375 const sp<Client>& client,
390 : TrackBase(thread, client, attr, sampleRate, format, channelMask, frameCount,
417 // client
63 TrackBase( ThreadBase *thread, const sp<Client>& client, const audio_attributes_t& attr, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t frameCount, void *buffer, size_t bufferSize, audio_session_t sessionId, uid_t clientUid, bool isOut, alloc_type alloc, track_type type, audio_port_handle_t portId) argument
373 Track( PlaybackThread *thread, const sp<Client>& client, audio_stream_type_t streamType, const audio_attributes_t& attr, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t frameCount, void *buffer, size_t bufferSize, const sp<IMemory>& sharedBuffer, audio_session_t sessionId, uid_t uid, audio_output_flags_t flags, track_type type, audio_port_handle_t portId) argument
1643 RecordTrack( RecordThread *thread, const sp<Client>& client, const audio_attributes_t& attr, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t frameCount, void *buffer, size_t bufferSize, audio_session_t sessionId, uid_t uid, audio_input_flags_t flags, track_type type, audio_port_handle_t portId) argument
[all...]
H A DAudioFlinger.h152 virtual void registerClient(const sp<IAudioFlingerClient>& client);
273 const AudioClient& client,
440 const sp<IAudioFlingerClient>& client,
531 // server side of the client's IAudioTrack
557 // server side of the client's IAudioRecord
585 virtual status_t start(const AudioClient& client,
786 // Audio data transfer is directly handled by the client creating the MMAP stream
H A DPlaybackTracks.h26 const sp<Client>& client,
209 // If the last track change was notified to the client with readAndClearHasChanged
/frameworks/base/services/core/java/com/android/server/am/
H A DActiveServices.java134 * the client's IServiceConnection.
1392 if (modCr != null && modCr.binding.client != null) {
1393 if (modCr.binding.client.activities.size() <= 0) {
1394 // This connection is from a client without activities, so adding
1407 if (cr.binding.client == null || cr.binding.client == proc) {
1411 if (cr.binding.client.activities.size() > 0) {
1626 b.client.connections.add(c);
1628 b.client.hasAboveClient = true;
1660 || s.app.treatLikeActivity, b.client);
[all...]
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp201 s.client = sc->getClient()->mClient;
567 SurfaceComposerClient::SurfaceComposerClient(const sp<ISurfaceComposerClient>& client) argument
568 : mStatus(NO_ERROR), mClient(client)
607 sp<ISurfaceComposerClient> client; local
610 client = mClient; // hold ref while lock is held
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.h525 status_t createLayer(const String8& name, const sp<Client>& client,
530 status_t createBufferLayer(const sp<Client>& client, const String8& name,
535 status_t createColorLayer(const sp<Client>& client, const String8& name,
543 status_t onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle);
555 status_t addClientLayer(const sp<Client>& client,
H A DLayer.cpp73 Layer::Layer(SurfaceFlinger* flinger, const sp<Client>& client, const String8& name, uint32_t w, argument
94 mClientRef(client),
994 // the size changed, we need to ask our client to request a new buffer
1008 // record the new size, form this point on, when the client request
1578 sp<Client> client(child->mClientRef.promote());
1579 if (client != nullptr) {
1580 client->updateParent(newParent);
1612 sp<Client> client(mClientRef.promote());
1615 if (client != newParentClient) {
1616 client
[all...]
H A DSurfaceFlinger.cpp375 static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) { argument
376 status_t err = client->initCheck();
378 return client;
2125 // If the layer was client composited in the previous frame, we
2126 // need to merge with the previous client target acquire fence.
2128 // client target acquire fence when it is available, even though
2987 ALOGV("Rendering client layers");
3054 status_t SurfaceFlinger::addClientLayer(const sp<Client>& client, argument
3090 // attach this layer to the client
3091 client
3510 createLayer( const String8& name, const sp<Client>& client, uint32_t w, uint32_t h, PixelFormat format, uint32_t flags, int32_t windowType, int32_t ownerUid, sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* parent) argument
3593 createBufferLayer(const sp<Client>& client, const String8& name, uint32_t w, uint32_t h, uint32_t flags, PixelFormat& format, sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer) argument
3620 createColorLayer(const sp<Client>& client, const String8& name, uint32_t w, uint32_t h, uint32_t flags, sp<IBinder>* handle, sp<Layer>* outLayer) argument
3629 onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle) argument
[all...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java489 // If the client is from a process that runs across users such as
493 Client client = new Client(callback, Binder.getCallingUid(), userState);
495 mGlobalClients.register(callback, client);
497 Slog.i(LOG_TAG, "Added global client for pid:" + Binder.getCallingPid());
501 client.mLastSentRelevantEventTypes);
503 userState.mUserClients.register(callback, client);
504 // If this client is not for the current user we do not
506 // We will send the state to the client on a user switch.
508 Slog.i(LOG_TAG, "Added user client for pid:" + Binder.getCallingPid()
513 client
1416 computeRelevantEventTypesLocked(UserState userState, Client client) argument
1434 isClientInPackageWhitelist( @ullable AccessibilityServiceInfo serviceInfo, Client client) argument
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp294 ALOGV("Create new media recorder client from pid %d", pid);
298 void MediaPlayerService::removeMediaRecorderClient(const wp<MediaRecorderClient>& client) argument
301 mMediaRecorderClients.remove(client);
302 ALOGV("Delete media recorder client");
313 sp<IMediaPlayer> MediaPlayerService::create(const sp<IMediaPlayerClient>& client, argument
320 this, pid, connId, client, audioSessionId,
323 ALOGV("Create new client(%d) from pid %d, uid %d, ", connId, pid,
340 const sp<IRemoteDisplayClient>& /*client*/,
420 SortedVector< sp<Client> > clients; //to serialise the mutex unlock & client destruction.
437 result.append(" No media recorder client\
547 removeClient(const wp<Client>& client) argument
553 hasClient(wp<Client> client) argument
559 Client( const sp<MediaPlayerService>& service, pid_t pid, int32_t connId, const sp<IMediaPlayerClient>& client, audio_session_t audioSessionId, uid_t uid) argument
[all...]
H A DMediaRecorderClient.cpp339 wp<MediaRecorderClient> client(this);
340 mMediaPlayerService->removeMediaRecorderClient(client);
/frameworks/base/drm/java/android/drm/
H A DDrmManagerClient.java82 * @param client The <code>DrmManagerClient</code> instance.
86 public void onInfo(DrmManagerClient client, DrmInfoEvent event); argument
97 * @param client The <code>DrmManagerClient</code> instance.
101 public void onEvent(DrmManagerClient client, DrmEvent event); argument
111 * @param client The <code>DrmManagerClient</code> instance.
114 public void onError(DrmManagerClient client, DrmErrorEvent event); argument
/frameworks/av/media/libaudioclient/
H A DIAudioFlinger.cpp343 virtual void registerClient(const sp<IAudioFlingerClient>& client) argument
347 data.writeStrongBinder(IInterface::asBinder(client));
625 const sp<IEffectClient>& client,
647 data.writeStrongBinder(IInterface::asBinder(client));
1120 sp<IAudioFlingerClient> client = interface_cast<IAudioFlingerClient>( local
1122 registerClient(client);
1295 sp<IEffectClient> client = interface_cast<IEffectClient>(data.readStrongBinder()); local
1306 sp<IEffect> effect = createEffect(&desc, client, priority, output, sessionId,
623 createEffect( effect_descriptor_t *pDesc, const sp<IEffectClient>& client, int32_t priority, audio_io_handle_t output, audio_session_t sessionId, const String16& opPackageName, pid_t pid, status_t *status, int *id, int *enabled) argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java171 * <strong>Note:</strong> It is a client responsibility to recycle the received info
185 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance();
186 return client.findAccessibilityNodeInfoByAccessibilityId(mConnectionId, mSourceWindowId,
/frameworks/base/media/java/android/media/tv/
H A DITvInputManager.aidl60 void createSession(in ITvInputClient client, in String inputId, boolean isRecordingSession,
/frameworks/av/include/media/
H A DIAudioPolicyService.h146 virtual void registerClient(const sp<IAudioPolicyServiceClient>& client) = 0;
/frameworks/av/media/libaudioclient/include/media/
H A DIAudioPolicyService.h146 virtual void registerClient(const sp<IAudioPolicyServiceClient>& client) = 0;
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.h57 virtual status_t connect(const sp<hardware::ICameraClient>& client);
/frameworks/base/core/java/android/provider/
H A DMediaStore.java2367 try (ContentProviderClient client =
2369 final Cursor c = client.query(
2399 try (ContentProviderClient client = resolver.acquireUnstableContentProviderClient(
2405 final Bundle out = client.call("getDocumentId", path, in);
/frameworks/base/core/java/android/webkit/
H A DWebView.java1675 * Clears the client certificate preferences stored in response
1676 * to proceeding/cancelling client cert requests. Note that WebView
1681 * @param onCleared A runnable to be invoked when client certs are cleared.
1916 * @param client an implementation of WebViewClient
1919 public void setWebViewClient(WebViewClient client) { argument
1921 mProvider.setWebViewClient(client);
1927 * @return the WebViewClient, or a default client if not yet set
1952 * @param client an implementation of WebChromeClient
1955 public void setWebChromeClient(WebChromeClient client) { argument
1957 mProvider.setWebChromeClient(client);
[all...]
/frameworks/base/services/net/java/android/net/dhcp/
H A DDhcpClient.java65 * A DHCPv4 client.
100 // This is not strictly needed, since the client is asynchronous and implements exponential
268 DhcpClient client = new DhcpClient(context, controller, ifParams.name);
269 client.mIface = ifParams;
270 client.start();
271 return client;
/frameworks/base/tools/preload2/src/com/android/preload/ui/
H A DSequenceUI.java99 throw new RuntimeException("Didn't find client " + pkg);
103 public SequenceUI client(String pkg) { method in class:SequenceUI
/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
H A DRemoteXmlPullParserAdapter.java17 package com.android.layoutlib.bridge.remote.client.adapters;
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/
H A Dbuffer_hub_client.h6 #include <pdx/client.h>
115 // A state mask which is unique to a buffer hub client among all its siblings
/frameworks/support/media/version-compat-tests/current/client/src/androidTest/java/androidx/media/test/client/
H A DMockPlayer.java17 package androidx.media.test.client;

Completed in 565 milliseconds

<<1112131415