Searched defs:client (Results 1 - 25 of 84) sorted by relevance

1234

/frameworks/av/media/libmediaplayerservice/
H A DRemoteDisplay.cpp27 const sp<IRemoteDisplayClient> &client, const char *iface)
30 mSource(new WifiDisplaySource(mNetSession, client)) {
26 RemoteDisplay( const sp<IRemoteDisplayClient> &client, const char *iface) argument
H A DMediaPlayerFactory.h32 virtual float scoreFactory(const sp<IMediaPlayer>& client, argument
36 virtual float scoreFactory(const sp<IMediaPlayer>& client, argument
42 virtual float scoreFactory(const sp<IMediaPlayer>& client, argument
52 static player_type getPlayerType(const sp<IMediaPlayer>& client,
54 static player_type getPlayerType(const sp<IMediaPlayer>& client,
58 static player_type getPlayerType(const sp<IMediaPlayer>& client,
/frameworks/native/services/surfaceflinger/tests/resize/
H A Dresize.cpp38 // create a client to surfaceflinger
39 sp<SurfaceComposerClient> client = new SurfaceComposerClient(); local
41 sp<Surface> surface = client->createSurface(String8("resize"),
/frameworks/native/services/surfaceflinger/tests/surface/
H A Dsurface.cpp36 // create a client to surfaceflinger
37 sp<SurfaceComposerClient> client = new SurfaceComposerClient(); local
39 sp<SurfaceControl> surfaceControl = client->createSurface(
/frameworks/av/cmds/stagefright/
H A Daudioloop.cpp26 OMXClient client; local
27 CHECK_EQ(client.connect(), (status_t)OK);
54 client.interface(),
66 client.interface(),
H A Drecord.cpp185 OMXClient client;
186 CHECK_EQ(client.connect(), (status_t)OK);
201 client.interface(), meta, false /* createEncoder */, source);
228 client.interface(), enc_meta, true /* createEncoder */, decoder);
263 client.disconnect();
301 OMXClient client; local
302 CHECK_EQ(client.connect(), (status_t)OK);
328 OMXCodec::Create(client.interface(), encMeta, true, audioSource);
350 client.disconnect();
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceSession.cpp43 SurfaceComposerClient* client = new SurfaceComposerClient(); local
44 client->incStrong(clazz);
45 return reinterpret_cast<jint>(client);
49 SurfaceComposerClient* client = reinterpret_cast<SurfaceComposerClient*>(ptr); local
50 client->decStrong(clazz);
54 SurfaceComposerClient* client = reinterpret_cast<SurfaceComposerClient*>(ptr); local
55 client->dispose();
/frameworks/native/services/surfaceflinger/
H A DLayerDim.cpp36 LayerDim::LayerDim(SurfaceFlinger* flinger, const sp<Client>& client) argument
37 : LayerBaseClient(flinger, client)
H A DLayerScreenshot.cpp38 const sp<Client>& client)
39 : LayerBaseClient(flinger, client),
37 LayerScreenshot(SurfaceFlinger* flinger, const sp<Client>& client) argument
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DHttpClientStack.java25 import org.apache.http.client.HttpClient;
26 import org.apache.http.client.methods.HttpGet;
27 import org.apache.http.client.methods.HttpPost;
28 import org.apache.http.client.methods.HttpUriRequest;
45 public HttpClientStack(HttpClient client) { argument
46 mClient = client;
/frameworks/av/media/libstagefright/rtsp/
H A Drtp_test.cpp181 OMXClient client; local
182 CHECK_EQ(client.connect(), (status_t)OK);
185 client.interface(),
/frameworks/base/core/java/android/widget/
H A DCursorFilter.java38 CursorFilter(CursorFilterClient client) { argument
39 mClient = client;
/frameworks/base/services/java/com/android/server/am/
H A DAppBindRecord.java24 * An association between a service and one of its client applications.
29 final ProcessRecord client; // Who has started/bound the service. field in class:AppBindRecord
32 // All ConnectionRecord for this client.
36 pw.println(prefix + "client=" + client);
55 client = _client;
61 + " " + service.shortName + ":" + client.processName + "}";
H A DContentProviderConnection.java24 * Represents a link between a content provider and client.
28 public final ProcessRecord client; field in class:ContentProviderConnection
32 // The client of this connection is currently waiting for the provider to appear.
44 client = _client;
75 sb.append(client.toShortString());
/frameworks/base/tests/CoreTests/android/core/
H A DSocketTest.java139 Socket client = new Socket("localhost", 8383);
140 client.getOutputStream().write(1);
141 // Just leave this connection open from the client side. It will be
246 private Socket client; field in class:SocketTest
258 client = new Socket();
264 client.connect(new InetSocketAddress(PACKAGE_DROPPING_ADDRESS, 1357));
278 client.close();
/frameworks/support/v4/java/android/support/v4/widget/
H A DCursorFilter.java39 CursorFilter(CursorFilterClient client) { argument
40 mClient = client;
/frameworks/av/include/media/stagefright/
H A DDataSource.h87 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client) {}; argument
/frameworks/av/media/libstagefright/
H A DFileSource.cpp152 void FileSource::getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client) { argument
155 *client = mDrmManagerClient;
H A DStagefrightMediaScanner.cpp60 const char *filename, MediaScannerClient *client) {
100 status_t status = client->addStringTag("duration", buffer);
109 MediaScannerClient &client) {
112 client.setLocale(locale());
113 client.beginFile();
114 MediaScanResult result = processFileInternal(path, mimeType, client);
115 client.endFile();
121 MediaScannerClient &client) {
141 return HandleMIDI(path, &client);
163 status = client
59 HandleMIDI( const char *filename, MediaScannerClient *client) argument
107 processFile( const char *path, const char *mimeType, MediaScannerClient &client) argument
119 processFileInternal( const char *path, const char *mimeType, MediaScannerClient &client) argument
[all...]
/frameworks/av/services/camera/libcameraservice/camera2/
H A DBurstCapture.cpp31 BurstCapture::BurstCapture(wp<Camera2Client> client, wp<CaptureSequencer> sequencer): argument
33 mClient(client),
67 sp<Camera2Client> client = mClient.promote(); local
68 if(client == 0) return false;
70 res = processFrameAvailable(client);
106 status_t BurstCapture::processFrameAvailable(sp<Camera2Client> &client) { argument
H A DCallbackProcessor.cpp33 CallbackProcessor::CallbackProcessor(wp<Camera2Client> client): argument
35 mClient(client),
59 sp<Camera2Client> client = mClient.promote(); local
60 if (client == 0) return OK;
61 sp<Camera2Device> device = client->getCameraDevice();
79 "%s (%d)", __FUNCTION__, client->getCameraId(),
90 __FUNCTION__, client->getCameraId(), mCallbackStreamId);
94 "for callbacks: %s (%d)", __FUNCTION__, client->getCameraId(),
111 "%s (%d)", __FUNCTION__, client->getCameraId(),
127 sp<Camera2Client> client local
164 sp<Camera2Client> client = mClient.promote(); local
172 processNewCallback(sp<Camera2Client> &client) argument
[all...]
H A DFrameProcessor.cpp31 FrameProcessor::FrameProcessor(wp<Camera2Client> client): argument
32 Thread(false), mClient(client), mLastFrameNumberOfFaces(0) {
76 sp<Camera2Client> client = mClient.promote(); local
77 if (client == 0) return false;
78 device = client->getCameraDevice();
84 sp<Camera2Client> client = mClient.promote(); local
85 if (client == 0) return false;
86 processNewFrames(client);
95 void FrameProcessor::processNewFrames(sp<Camera2Client> &client) { argument
99 while ( (res = client
129 processListeners(const CameraMetadata &frame, sp<Camera2Client> &client) argument
170 processFaceDetect(const CameraMetadata &frame, sp<Camera2Client> &client) argument
292 callbackFaceDetection(sp<Camera2Client> client, camera_frame_metadata &metadata) argument
[all...]
/frameworks/wilhelm/src/android/
H A DAacBqToPcmCbRenderer.cpp160 OMXClient client; local
161 CHECK_EQ(client.connect(), (status_t)OK);
164 client.interface(), meta, false /* createEncoder */,
/frameworks/av/media/libmedia/
H A DMediaScanner.cpp82 const char *path, MediaScannerClient &client) {
100 client.setLocale(locale());
102 MediaScanResult result = doProcessDirectory(pathBuffer, pathRemaining, client, false);
132 char *path, int pathRemaining, MediaScannerClient &client, bool noMedia) {
162 if (doProcessDirectoryEntry(path, pathRemaining, client, noMedia, entry, fileSpot)
173 char *path, int pathRemaining, MediaScannerClient &client, bool noMedia,
212 // report the directory to the client
214 status_t status = client.scanFile(path, statbuf.st_mtime, 0,
224 client, childNoMedia);
230 status_t status = client
81 processDirectory( const char *path, MediaScannerClient &client) argument
131 doProcessDirectory( char *path, int pathRemaining, MediaScannerClient &client, bool noMedia) argument
172 doProcessDirectoryEntry( char *path, int pathRemaining, MediaScannerClient &client, bool noMedia, struct dirent* entry, char* fileSpot) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java38 * to the client of the MediaScannerConnection class.
51 MediaScannerConnectionClient client = mClient;
52 if (client != null) {
53 client.onScanCompleted(path, uri);
64 * Called to notify the client when the media scanner has finished
80 * Called to notify the client when a connection to the
86 * Called to notify the client when the media scanner has finished
99 * @param client an optional object implementing the MediaScannerConnectionClient
102 public MediaScannerConnection(Context context, MediaScannerConnectionClient client) { argument
104 mClient = client;
185 ClientProxy(String[] paths, String[] mimeTypes, OnScanCompletedListener client) argument
[all...]

Completed in 584 milliseconds

1234