Searched refs:IMemory (Results 1 - 25 of 119) sorted by relevance

12345

/frameworks/av/soundtrigger/
H A DISoundTriggerClient.cpp20 #include <binder/IMemory.h>
43 virtual void onRecognitionEvent(const sp<IMemory>& eventMemory)
53 virtual void onSoundModelEvent(const sp<IMemory>& eventMemory)
62 virtual void onServiceStateChange(const sp<IMemory>& eventMemory)
84 sp<IMemory> eventMemory = interface_cast<IMemory>(
91 sp<IMemory> eventMemory = interface_cast<IMemory>(
98 sp<IMemory> eventMemory = interface_cast<IMemory>(
[all...]
H A DISoundTrigger.cpp21 #include <binder/IMemory.h>
53 status_t loadSoundModel(const sp<IMemory>& modelMemory,
84 const sp<IMemory>& dataMemory)
132 sp<IMemory> modelMemory = interface_cast<IMemory>(
154 sp<IMemory> dataMemory;
156 dataMemory = interface_cast<IMemory>(data.readStrongBinder());
/frameworks/av/include/media/
H A DIMediaLogService.h21 #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;
H A DIMediaMetadataRetriever.h23 #include <binder/IMemory.h>
43 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option) = 0;
44 virtual sp<IMemory> extractAlbumArt() = 0;
H A DIAudioTrack.h26 #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,
H A DIEffect.h23 #include <binder/IMemory.h>
44 virtual sp<IMemory> getCblk() const = 0;
H A Dmediametadataretriever.h23 #include <binder/IMemory.h>
77 sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
78 sp<IMemory> extractAlbumArt();
/frameworks/av/include/soundtrigger/
H A DISoundTriggerClient.h32 virtual void onRecognitionEvent(const sp<IMemory>& eventMemory) = 0;
34 virtual void onSoundModelEvent(const sp<IMemory>& eventMemory) = 0;
36 virtual void onServiceStateChange(const sp<IMemory>& eventMemory) = 0;
H A DSoundTrigger.h48 status_t loadSoundModel(const sp<IMemory>& modelMemory,
53 status_t startRecognition(sound_model_handle_t handle, const sp<IMemory>& dataMemory);
57 virtual void onRecognitionEvent(const sp<IMemory>& eventMemory);
58 virtual void onSoundModelEvent(const sp<IMemory>& eventMemory);
59 virtual void onServiceStateChange(const sp<IMemory>& eventMemory);
H A DISoundTrigger.h23 #include <binder/IMemory.h>
35 virtual status_t loadSoundModel(const sp<IMemory>& modelMemory,
41 const sp<IMemory>& dataMemory) = 0;
/frameworks/base/media/jni/
H A Dandroid_media_MediaHTTPConnection.h27 struct IMemory;
37 sp<IMemory> getIMemory();
50 sp<IMemory> mMemory;
/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.h26 #include <binder/IMemory.h>
52 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
53 virtual sp<IMemory> extractAlbumArt();
69 sp<IMemory> mAlbumArt;
70 sp<IMemory> mThumbnail;
/frameworks/av/include/camera/
H A DICameraClient.h23 #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;
H A DICameraRecordingProxy.h26 class IMemory;
85 virtual void releaseRecordingFrame(const sp<IMemory>& mem) = 0;
H A DICameraRecordingProxyListener.h28 class IMemory;
36 const sp<IMemory>& data) = 0;
H A DCamera.h41 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;
109 void releaseRecordingFrame(const sp<IMemory>& mem);
148 virtual void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
150 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
160 virtual void releaseRecordingFrame(const sp<IMemory>& mem);
/frameworks/av/media/libmedia/
H A DIMediaLogService.cpp42 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/av/camera/
H A DICameraRecordingProxyListener.cpp20 #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());
H A DICameraRecordingProxy.cpp21 #include <binder/IMemory.h>
61 void releaseRecordingFrame(const sp<IMemory>& mem)
96 sp<IMemory> mem = interface_cast<IMemory>(data.readStrongBinder());
H A DICameraClient.cpp54 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/services/camera/libcameraservice/api1/
H A DCameraClient.h51 virtual void releaseRecordingFrame(const sp<IMemory>& mem);
99 static void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
101 static void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
104 void handlePreviewData(int32_t msgType, const sp<IMemory>& mem,
106 void handlePostview(const sp<IMemory>& mem);
107 void handleRawPicture(const sp<IMemory>& mem);
108 void handleCompressedPicture(const sp<IMemory>& mem);
110 void handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr,
112 void handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
/frameworks/native/include/binder/
H A DMemoryDealer.h24 #include <binder/IMemory.h>
40 virtual sp<IMemory> allocate(size_t size);
/frameworks/av/include/media/stagefright/
H A DCameraSourceTimeLapse.h30 class IMemory;
139 const sp<IMemory> &data);
161 sp<IMemory> createIMemoryCopy(const sp<IMemory> &source_data);
/frameworks/native/include/private/binder/
H A DStatic.h23 #include <binder/IMemory.h>
/frameworks/av/include/media/nbaio/
H A DNBLog.h22 #include <binder/IMemory.h>
121 Writer(size_t size, const sp<IMemory>& iMemory);
138 sp<IMemory> getIMemory() const { return mIMemory; }
146 const sp<IMemory> mIMemory; // ref-counted version
180 Reader(size_t size, const sp<IMemory>& iMemory);
185 bool isIMemory(const sp<IMemory>& iMemory) const;
190 const sp<IMemory> mIMemory; // ref-counted version

Completed in 8645 milliseconds

12345