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

1 2 3 4 5

  /frameworks/av/include/media/
IMediaLogService.h 21 #include <binder/IMemory.h>
31 virtual void registerWriter(const sp<IMemory>& shared, size_t size, const char *name) = 0;
32 virtual void unregisterWriter(const sp<IMemory>& shared) = 0;
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>
38 virtual sp<IMemory> getCblk() const = 0;
IEffect.h 23 #include <binder/IMemory.h>
44 virtual sp<IMemory> getCblk() const = 0;
IAudioTrack.h 26 #include <binder/IMemory.h>
41 virtual sp<IMemory> getCblk() const = 0;
74 sp<IMemory>* buffer) = 0;
78 virtual status_t queueTimedBuffer(const sp<IMemory>& buffer,
IStreamSource.h 26 struct IMemory;
33 virtual void setBuffers(const Vector<sp<IMemory> > &buffers) = 0;
mediametadataretriever.h 23 #include <binder/IMemory.h>
75 sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
76 sp<IMemory> extractAlbumArt();
  /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>
38 virtual void dataCallback(int32_t msgType, const sp<IMemory>& data,
40 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& data) = 0;
Camera.h 41 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
43 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) = 0;
105 void releaseRecordingFrame(const sp<IMemory>& mem);
144 virtual void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
146 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
156 virtual void releaseRecordingFrame(const sp<IMemory>& mem);
  /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/av/media/libmedia/
IMediaLogService.cpp 42 virtual void registerWriter(const sp<IMemory>& shared, size_t size, const char *name) {
52 virtual void unregisterWriter(const sp<IMemory>& shared) {
73 sp<IMemory> shared = interface_cast<IMemory>(data.readStrongBinder());
82 sp<IMemory> shared = interface_cast<IMemory>(data.readStrongBinder());
  /frameworks/native/include/binder/
MemoryDealer.h 24 #include <binder/IMemory.h>
39 virtual sp<IMemory> allocate(size_t size);
  /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/nbaio/
NBLog.h 22 #include <binder/IMemory.h>
119 Writer(size_t size, const sp<IMemory>& iMemory);
136 sp<IMemory> getIMemory() const { return mIMemory; }
144 const sp<IMemory> mIMemory; // ref-counted version
178 Reader(size_t size, const sp<IMemory>& iMemory);
183 bool isIMemory(const sp<IMemory>& iMemory) const;
188 const sp<IMemory> mIMemory; // ref-counted versio
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/
CameraClient.h 51 virtual void releaseRecordingFrame(const sp<IMemory>& mem);
98 static void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
100 static void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
103 void handlePreviewData(int32_t msgType, const sp<IMemory>& mem,
105 void handlePostview(const sp<IMemory>& mem);
106 void handleRawPicture(const sp<IMemory>& mem);
107 void handleCompressedPicture(const sp<IMemory>& mem);
109 void handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr,
111 void handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
  /frameworks/av/include/media/stagefright/
CameraSource.h 32 class IMemory;
129 const sp<IMemory> &data);
176 virtual void releaseRecordingFrame(const sp<IMemory>& frame);
183 virtual void dataCallback(int32_t msgType, const sp<IMemory> &data) {}
186 const sp<IMemory> &data);
194 List<sp<IMemory> > mFramesReceived;
195 List<sp<IMemory> > mFramesBeingEncoded;
206 void releaseOneRecordingFrame(const sp<IMemory>& frame);
CameraSourceTimeLapse.h 30 class IMemory;
139 const sp<IMemory> &data);
161 sp<IMemory> createIMemoryCopy(const sp<IMemory> &source_data);
  /device/asus/flo/camera/QCamera2/HAL/test/
qcamera_test.h 89 const sp<IMemory>& dataPtr,
94 const sp<IMemory>& dataPtr);
103 status_t saveFile(const sp<IMemory>& mem, String8 path);
104 void previewCallback(const sp<IMemory>& mem);
  /frameworks/native/include/private/binder/
Static.h 23 #include <binder/IMemory.h>
  /hardware/qcom/camera/QCamera2/HAL/test/
qcamera_test.h 89 const sp<IMemory>& dataPtr,
94 const sp<IMemory>& dataPtr);
103 status_t saveFile(const sp<IMemory>& mem, String8 path);
104 void previewCallback(const sp<IMemory>& mem);
  /frameworks/av/services/audioflinger/
PlaybackTracks.h 32 const sp<IMemory>& sharedBuffer,
101 sp<IMemory> sharedBuffer() const { return mSharedBuffer; }
124 sp<IMemory> mSharedBuffer;
168 const sp<IMemory>& sharedBuffer,
176 TimedBuffer(const sp<IMemory>& buffer, int64_t pts);
177 const sp<IMemory>& buffer() const { return mBuffer; }
182 sp<IMemory> mBuffer;
198 sp<IMemory>* buffer);
199 status_t queueTimedBuffer(const sp<IMemory>& buffer,
212 const sp<IMemory>& sharedBuffer
    [all...]

Completed in 563 milliseconds

1 2 3 4 5