Searched refs:client (Results 151 - 175 of 242) sorted by relevance

12345678910

/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp305 ALOGV("Create new media recorder client from pid %d", pid);
309 void MediaPlayerService::removeMediaRecorderClient(wp<MediaRecorderClient> client) argument
312 mMediaRecorderClients.remove(client);
313 ALOGV("Delete media recorder client");
324 sp<IMediaPlayer> MediaPlayerService::create(const sp<IMediaPlayerClient>& client, argument
331 this, pid, connId, client, audioSessionId,
334 ALOGV("Create new client(%d) from pid %d, uid %d, ", connId, pid,
366 const sp<IRemoteDisplayClient>& client, const String8& iface) {
371 return new RemoteDisplay(opPackageName, client, iface.string());
427 SortedVector< sp<Client> > clients; //to serialise the mutex unlock & client destructio
364 listenForRemoteDisplay( const String16 &opPackageName, const sp<IRemoteDisplayClient>& client, const String8& iface) argument
554 removeClient(wp<Client> client) argument
560 Client( const sp<MediaPlayerService>& service, pid_t pid, int32_t connId, const sp<IMediaPlayerClient>& client, audio_session_t audioSessionId, uid_t uid) argument
1270 Client* client = static_cast<Client*>(cookie); local
1336 Antagonizer(notify_callback_f cb, void* client) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DSession.java58 * This class represents an active client session. There is generally one
76 IInputMethodClient client, IInputContext inputContext) {
79 mClient = client;
113 mService.mInputMethodManager.addClient(client, inputContext,
116 client.setUsingInputMethod(false);
118 client.asBinder().linkToDeath(this, 0);
123 mService.mInputMethodManager.removeClient(client);
75 Session(WindowManagerService service, IWindowSessionCallback callback, IInputMethodClient client, IInputContext inputContext) argument
/frameworks/av/cmds/stagefright/
H A Dstream.cpp348 sp<MyClient> client = new MyClient; local
377 service->create(client, AUDIO_SESSION_ALLOCATE);
383 client->waitForEOS();
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DJpegProcessor.cpp39 sp<Camera2Client> client,
42 mDevice(client->getCameraDevice()),
44 mId(client->getCameraId()),
38 JpegProcessor( sp<Camera2Client> client, wp<CaptureSequencer> sequencer) argument
/frameworks/av/media/libstagefright/include/
H A DNuCachedSource2.h46 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client);
/frameworks/av/services/audioflinger/
H A DRecordTracks.h26 const sp<Client>& client,
71 bool mOverflow; // overflow on most recent attempt to fill client buffer
73 AudioBufferProvider::Buffer mSink; // references client's buffer sink in shared memory
H A DAudioFlinger.cpp326 sp<Client> client = mClients.valueAt(i).promote(); local
327 if (client != 0) {
328 snprintf(buffer, SIZE, " pid: %d\n", client->pid());
504 sp<Client> client = mClients.valueFor(pid).promote(); local
505 if (client == 0) {
506 client = new Client(this, pid);
507 mClients.add(pid, client);
510 return client;
590 sp<Client> client; local
603 // client AudioTrac
1307 registerClient(const sp<IAudioFlingerClient>& client) argument
1439 NotificationClient(const sp<AudioFlinger>& audioFlinger, const sp<IAudioFlingerClient>& client, pid_t pid) argument
1478 sp<Client> client; local
2761 sp<Client> client = registerPid(pid); local
[all...]
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl66 IWindowSession openSession(in IWindowSessionCallback callback, in IInputMethodClient client,
68 boolean inputMethodClientHasFocus(IInputMethodClient client);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java771 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance();
772 AccessibilityNodeInfo refreshedInfo = client.findAccessibilityNodeInfoByAccessibilityId(
830 * <strong>Note:</strong> It is a client responsibility to recycle the
850 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance();
851 return client.findAccessibilityNodeInfoByAccessibilityId(mConnectionId, mWindowId,
1315 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance();
1316 return client.performAccessibilityAction(mConnectionId, mWindowId, mSourceNodeId,
1338 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance();
1339 return client.performAccessibilityAction(mConnectionId, mWindowId, mSourceNodeId,
1349 * <strong>Note:</strong> It is a client responsibilit
[all...]
H A DAccessibilityInteractionClient.java45 * Rationale: The content retrieval APIs are synchronous from a client's
46 * perspective but internally they are asynchronous. The client thread
53 * the blocked client thread and the main UI thread of the target view
59 * when making a call the client also passes its process and thread ids so
60 * the accessed view hierarchy can detect if the client making the request
64 * interaction client through which all interactions occur and the latter is
110 * @return The client for the current thread.
121 * look up the correct client knowing a thread id. See ViewRootImpl for details.
123 * @return The client for a given <code>threadId</code>.
127 AccessibilityInteractionClient client
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsCache.java321 ContentProviderClient client = null;
324 client = DocumentsApplication.acquireUnstableProviderOrThrow(resolver, authority);
325 cursor = client.query(rootsUri, null, null, null, null);
334 ContentProviderClient.releaseQuietly(client);
/frameworks/base/services/core/java/com/android/server/am/
H A DConnectionRecord.java31 final IServiceConnection conn; // The client connection.
33 final int clientLabel; // String resource labeling this client.
34 final PendingIntent clientIntent; // How to launch the client.
66 sb.append(binding.client.userId);
H A DIntentBindRecord.java69 pw.print(' '); pw.print(a.client); pw.println('}');
H A DActiveServices.java132 * the client's IServiceConnection.
783 if (modCr != null && modCr.binding.client != null) {
784 if (modCr.binding.client.activities.size() <= 0) {
785 // This connection is from a client without activities, so adding
798 if (cr.binding.client == null || cr.binding.client == proc) {
802 if (cr.binding.client.activities.size() > 0) {
1006 b.client.connections.add(c);
1008 b.client.hasAboveClient = true;
1040 || s.app.treatLikeActivity, b.client);
[all...]
/frameworks/native/include/gui/
H A DSurfaceControl.h86 // the override scaling mode will take precedence over any client
108 const sp<SurfaceComposerClient>& client,
/frameworks/native/include/private/gui/
H A DLayerState.h105 sp<ISurfaceComposerClient> client; member in struct:android::ComposerState
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapBmessage.java17 package android.bluetooth.client.map;
H A DBluetoothMasRequest.java17 package android.bluetooth.client.map;
/frameworks/av/include/media/
H A DIAudioFlinger.h49 TRACK_DEFAULT = 0, // client requests a default AudioTrack
51 // TRACK_TIMED= 1, // client requests a TimedAudioTrack
52 TRACK_FAST = 2, // client requests a fast AudioTrack or AudioRecord
53 TRACK_OFFLOAD = 4, // client requests offload to hw codec
54 TRACK_DIRECT = 8, // client requests a direct output
74 // However on failure, the client is responsible for release.
85 // However on failure, the client is responsible for release.
152 virtual void registerClient(const sp<IAudioFlingerClient>& client) = 0;
204 const sp<IEffectClient>& client,
206 // AudioFlinger doesn't take over handle reference from client
[all...]
/frameworks/av/media/libstagefright/
H A DFileSource.cpp195 void FileSource::getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client) { argument
198 *client = mDrmManagerClient;
/frameworks/base/core/java/android/printservice/
H A DPrintService.java412 public void setClient(IPrintServiceClient client) {
413 mHandler.obtainMessage(ServiceHandler.MSG_SET_CLIENT, client)
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaInserterTest.java85 final ContentProviderClient client = new ContentProviderClient(
87 mMediaInserter = new MediaInserter(client, TEST_BUFFER_SIZE);
/frameworks/base/packages/DocumentsUI/
H A DAndroid.mk10 # The design lib requires that the client package use appcompat themes.
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DWifiScanningServiceImpl.java137 ExternalClientInfo client = (ExternalClientInfo) mClients.get(msg.replyTo);
138 if (client != null) {
139 logw("duplicate client connection: " + msg.sendingUid);
140 client.mChannel.replyToMessage(msg, AsyncChannel.CMD_CHANNEL_FULLY_CONNECTED,
148 client = new ExternalClientInfo(msg.sendingUid, msg.replyTo, ac);
149 client.register();
154 if (DBG) Log.d(TAG, "client connected: " + client);
158 ExternalClientInfo client = (ExternalClientInfo) mClients.get(msg.replyTo);
159 if (client !
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java468 * Closes this client connection, indicating to the system that the
509 * client. If the {@link ContentProvider} is running in a different process then
521 public static void releaseQuietly(ContentProviderClient client) { argument
522 if (client != null) {
524 client.release();

Completed in 594 milliseconds

12345678910