HomeSort by relevance Sort by last modified time
    Searched refs:IMemory (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /frameworks/av/include/media/
IAudioTrack.h 26 #include <binder/IMemory.h>
39 virtual sp<IMemory> getCblk() const = 0;
77 sp<IMemory>* buffer) = 0;
81 virtual status_t queueTimedBuffer(const sp<IMemory>& buffer,
IMediaMetadataRetriever.h 23 #include <binder/IMemory.h>
40 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option) = 0;
41 virtual sp<IMemory> extractAlbumArt() = 0;
IAudioRecord.h 26 #include <binder/IMemory.h>
49 virtual sp<IMemory> getCblk() const = 0;
IEffect.h 23 #include <binder/IMemory.h>
44 virtual sp<IMemory> getCblk() const = 0;
IStreamSource.h 26 struct IMemory;
33 virtual void setBuffers(const Vector<sp<IMemory> > &buffers) = 0;
mediametadataretriever.h 23 #include <binder/IMemory.h>
74 sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
75 sp<IMemory> extractAlbumArt();
AudioTrack.h 30 #include <binder/IMemory.h>
190 const sp<IMemory>& sharedBuffer = 0,
219 const sp<IMemory>& sharedBuffer = 0,
249 sp<IMemory>& sharedBuffer();
493 const sp<IMemory>& sharedBuffer,
502 sp<IMemory> mCblkMemory;
525 sp<IMemory> mSharedBuffer;
549 status_t allocateTimedBuffer(size_t size, sp<IMemory>* buffer);
557 status_t queueTimedBuffer(const sp<IMemory>& buffer, int64_t pts);
IEffectClient.h 23 #include <binder/IMemory.h>
  /frameworks/av/include/camera/
ICameraRecordingProxy.h 26 class IMemory;
85 virtual void releaseRecordingFrame(const sp<IMemory>& mem) = 0;
ICameraRecordingProxyListener.h 28 class IMemory;
36 const sp<IMemory>& data) = 0;
ICameraClient.h 23 #include <binder/IMemory.h>
35 virtual void dataCallback(int32_t msgType, const sp<IMemory>& data,
37 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& data) = 0;
Camera.h 62 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
64 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) = 0;
111 void releaseRecordingFrame(const sp<IMemory>& mem);
142 virtual void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
144 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
156 virtual void releaseRecordingFrame(const sp<IMemory>& mem);
ICamera.h 23 #include <binder/IMemory.h>
79 virtual void releaseRecordingFrame(const sp<IMemory>& mem) = 0;
  /frameworks/av/media/libmediaplayerservice/
MetadataRetrieverClient.h 26 #include <binder/IMemory.h>
49 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
50 virtual sp<IMemory> extractAlbumArt();
66 sp<IMemory> mAlbumArt;
67 sp<IMemory> mThumbnail;
  /frameworks/native/include/binder/
MemoryDealer.h 24 #include <binder/IMemory.h>
39 virtual sp<IMemory> allocate(size_t size);
MemoryBase.h 23 #include <binder/IMemory.h>
  /frameworks/av/camera/
ICameraRecordingProxyListener.cpp 20 #include <binder/IMemory.h>
38 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
63 sp<IMemory> imageData = interface_cast<IMemory>(data.readStrongBinder());
ICameraRecordingProxy.cpp 21 #include <binder/IMemory.h>
61 void releaseRecordingFrame(const sp<IMemory>& mem)
96 sp<IMemory> mem = interface_cast<IMemory>(data.readStrongBinder());
ICameraClient.cpp 54 void dataCallback(int32_t msgType, const sp<IMemory>& imageData,
70 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
103 sp<IMemory> imageData = interface_cast<IMemory>(data.readStrongBinder());
120 sp<IMemory> imageData = interface_cast<IMemory>(data.readStrongBinder());
  /frameworks/av/include/media/stagefright/
CameraSourceTimeLapse.h 29 class IMemory;
132 const sp<IMemory> &data);
154 sp<IMemory> createIMemoryCopy(const sp<IMemory> &source_data);
CameraSource.h 31 class IMemory;
120 const sp<IMemory> &data);
166 virtual void releaseRecordingFrame(const sp<IMemory>& frame);
173 virtual void dataCallback(int32_t msgType, const sp<IMemory> &data) {}
176 const sp<IMemory> &data);
184 List<sp<IMemory> > mFramesReceived;
185 List<sp<IMemory> > mFramesBeingEncoded;
196 void releaseOneRecordingFrame(const sp<IMemory>& frame);
  /frameworks/native/include/private/binder/
Static.h 23 #include <binder/IMemory.h>
  /frameworks/av/media/libmedia/
IAudioRecord.cpp 67 virtual sp<IMemory> getCblk() const
70 sp<IMemory> cblk;
74 cblk = interface_cast<IMemory>(reply.readStrongBinder());
IAudioTrack.cpp 52 virtual sp<IMemory> getCblk() const
55 sp<IMemory> cblk;
59 cblk = interface_cast<IMemory>(reply.readStrongBinder());
120 virtual status_t allocateTimedBuffer(size_t size, sp<IMemory>* buffer) {
129 *buffer = interface_cast<IMemory>(reply.readStrongBinder());
135 virtual status_t queueTimedBuffer(const sp<IMemory>& buffer,
212 sp<IMemory> buffer;
222 sp<IMemory> buffer = interface_cast<IMemory>(
  /frameworks/av/services/camera/libcameraservice/
CameraService.h 107 virtual void releaseRecordingFrame(const sp<IMemory>& mem);
149 static void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
151 static void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
157 void handlePreviewData(int32_t msgType, const sp<IMemory>& mem,
159 void handlePostview(const sp<IMemory>& mem);
160 void handleRawPicture(const sp<IMemory>& mem);
161 void handleCompressedPicture(const sp<IMemory>& mem);
163 void handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr,
165 void handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);

Completed in 747 milliseconds

1 2 3 4