Searched refs:client (Results 101 - 125 of 180) sorted by relevance

12345678

/frameworks/av/include/camera/
H A DICamera.h43 // connect new client with existing camera remote
44 virtual status_t connect(const sp<ICameraClient>& client) = 0;
60 // set a buffer interface to use for client-received preview frames instead
/frameworks/av/include/media/stagefright/
H A DDataSource.h90 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client) {}; argument
/frameworks/av/media/libstagefright/include/
H A DChromiumHTTPDataSource.h48 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client);
H A DNuCachedSource2.h44 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client);
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h127 // returns plain pointer of client. Note that mClientLock should be acquired to
128 // prevent the client from destruction. The result can be NULL.
183 // Notify client about a fatal error
190 OpsCallback(wp<BasicClient> client);
214 virtual status_t connect(const sp<ICameraClient>& client) = 0;
247 // return our camera client
258 // convert client from cookie. Client lock should be acquired before getting Client.
329 sp<BasicClient> &client);
331 // When connection is successful, initialize client and track its death
332 status_t connectFinishUnsafe(const sp<BasicClient>& client,
[all...]
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DZslProcessor.h51 ZslProcessor(sp<Camera2Client> client, wp<CaptureSequencer> sequencer);
H A DZslProcessor3.h50 ZslProcessor3(sp<Camera2Client> client, wp<CaptureSequencer> sequencer);
H A DJpegProcessor.cpp39 sp<Camera2Client> client,
42 mDevice(client->getCameraDevice()),
44 mId(client->getCameraId()),
38 JpegProcessor( sp<Camera2Client> client, wp<CaptureSequencer> sequencer) argument
H A DStreamingProcessor.h43 StreamingProcessor(sp<Camera2Client> client);
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl59 IWindowSession openSession(in IInputMethodClient client,
61 boolean inputMethodClientHasFocus(IInputMethodClient client);
254 * the client for contextual changes related to display magnification.
/frameworks/native/include/gui/
H A DSurfaceControl.h85 const sp<SurfaceComposerClient>& client,
/frameworks/native/include/private/gui/
H A DLayerState.h91 sp<ISurfaceComposerClient> client; member in struct:android::ComposerState
/frameworks/av/services/audioflinger/
H A DPlaybackTracks.h26 const sp<Client>& client,
161 const sp<Client>& client,
204 const sp<Client>& client,
H A DTrackBase.h41 const sp<Client>& client,
H A DAudioFlinger.cpp260 sp<Client> client = mClients.valueAt(i).promote(); local
261 if (client != 0) {
262 snprintf(buffer, SIZE, " pid: %d\n", client->pid());
395 sp<Client> client = mClients.valueFor(pid).promote(); local
396 if (client == 0) {
397 client = new Client(this, pid);
398 mClients.add(pid, client);
401 return client;
455 sp<Client> client; local
459 // client AudioTrac
1058 registerClient(const sp<IAudioFlingerClient>& client) argument
1200 NotificationClient(const sp<AudioFlinger>& audioFlinger, const sp<IAudioFlingerClient>& client, pid_t pid) argument
1237 sp<Client> client; local
2236 sp<Client> client = registerPid_l(pid); local
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityInteractionClient.java46 * Rationale: The content retrieval APIs are synchronous from a client's
47 * perspective but internally they are asynchronous. The client thread
54 * the blocked client thread and the main UI thread of the target view
60 * when making a call the client also passes its process and thread ids so
61 * the accessed view hierarchy can detect if the client making the request
65 * interaction client through which all interactions occur and the latter is
114 * @return The client for the current thread.
125 * look up the correct client knowing a thread id. See ViewRootImpl for details.
127 * @return The client for a given <code>threadId</code>.
131 AccessibilityInteractionClient client
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DSession.java51 * This class represents an active client session. There is generally one
66 public Session(WindowManagerService service, IInputMethodClient client, argument
69 mClient = client;
102 mService.mInputMethodManager.addClient(client, inputContext,
105 client.setUsingInputMethod(false);
107 client.asBinder().linkToDeath(this, 0);
112 mService.mInputMethodManager.removeClient(client);
/frameworks/av/cmds/stagefright/
H A Dstream.cpp345 sp<MyClient> client = new MyClient; local
374 service->create(client, 0);
380 client->waitForEOS();
H A Dstagefright.cpp164 static void playSource(OMXClient *client, sp<MediaSource> &source) { argument
183 client->interface(), meta, false /* createEncoder */, source,
953 OMXClient client; local
954 status_t err = client.connect();
1087 OMXClient client; local
1088 CHECK_EQ(client.connect(), (status_t)OK);
1092 client.interface(),
1103 playSource(&client, mediaSource);
1119 client.disconnect();
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java432 * client. If the {@link ContentProvider} is running in a different process then
444 public static void releaseQuietly(ContentProviderClient client) { argument
445 if (client != null) {
447 client.release();
/frameworks/base/core/java/android/net/http/
H A DHttpResponseCache.java36 import org.apache.http.impl.client.DefaultHttpClient;
100 * contains a stale copy of the response, the client will issue a conditional
102 * changed, or a short 'not modified' response if the client's copy is still
106 * server to return cacheable responses. Although this client honors all <a
266 * both client requests and requests that were made on the client's behalf
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsCache.java252 ContentProviderClient client = null;
255 client = DocumentsApplication.acquireUnstableProviderOrThrow(resolver, authority);
256 cursor = client.query(rootsUri, null, null, null, null);
265 ContentProviderClient.releaseQuietly(client);
/frameworks/base/services/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.java70 pw.print(' '); pw.print(a.client); pw.println('}');
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp206 sp<Client> client(new Client(this));
207 status_t err = client->initCheck();
209 bclient = client;
1829 void SurfaceFlinger::addClientLayer(const sp<Client>& client, argument
1834 // attach this layer to the client
1835 client->attachLayer(handle, lbc);
1906 // one of our own. A malicious client could give us a NULL
1912 if (s.client != NULL) {
1913 sp<IBinder> binder = s.client->asBinder();
1917 sp<Client> client( static_cas
1989 setClientStateLocked( const sp<Client>& client, const layer_state_t& s) argument
2052 createLayer( const String8& name, const sp<Client>& client, uint32_t w, uint32_t h, PixelFormat format, uint32_t flags, sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp) argument
2092 createNormalLayer(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
2127 createDimLayer(const sp<Client>& client, const String8& name, uint32_t w, uint32_t h, uint32_t flags, sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer) argument
2137 onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle) argument
[all...]

Completed in 721 milliseconds

12345678