Searched defs:mem (Results 26 - 37 of 37) sorted by relevance

12

/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.cpp474 void CameraClient::releaseRecordingFrame(const sp<IMemory>& mem) { argument
477 mHardware->releaseRecordingFrame(mem);
818 const sp<IMemory>& mem,
822 sp<IMemoryHeap> heap = mem->getMemory(&offset, &size);
855 c->dataCallback(msgType, mem, metadata);
863 void CameraClient::handlePostview(const sp<IMemory>& mem) { argument
869 c->dataCallback(CAMERA_MSG_POSTVIEW_FRAME, mem, NULL);
874 void CameraClient::handleRawPicture(const sp<IMemory>& mem) { argument
879 sp<IMemoryHeap> heap = mem->getMemory(&offset, &size);
884 c->dataCallback(CAMERA_MSG_RAW_IMAGE, mem, NUL
817 handlePreviewData(int32_t msgType, const sp<IMemory>& mem, camera_frame_metadata_t *metadata) argument
889 handleCompressedPicture(const sp<IMemory>& mem) argument
[all...]
H A DCamera2Client.cpp1257 void Camera2Client::releaseRecordingFrame(const sp<IMemory>& mem) { argument
1262 mStreamingProcessor->releaseRecordingFrame(mem);
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp843 sp<IMemory> mem = local
847 if (mem != NULL) {
851 VideoFrame *frame = (VideoFrame *)mem->pointer();
859 mem = retriever->extractAlbumArt();
861 if (mem != NULL) {
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.h324 void releaseRecordingFrame(const sp<IMemory>& mem) argument
330 sp<IMemoryHeap> heap = mem->getMemory(&offset, &size);
468 sp<CameraHeapMemory> mem(static_cast<CameraHeapMemory *>(data->handle));
469 if (index >= mem->mNumBufs) {
471 index, mem->mNumBufs);
474 __this->mDataCb(msg_type, mem->mBuffers[index], metadata, __this->mCbUser);
487 sp<CameraHeapMemory> mem(static_cast<CameraHeapMemory *>(data->handle));
488 if (index >= mem->mNumBufs) {
490 index, mem->mNumBufs);
493 __this->mDataCbTimestamp(timestamp, msg_type, mem
549 CameraHeapMemory *mem; local
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java1216 public void dumpMemInfo(FileDescriptor fd, Debug.MemoryInfo mem, boolean checkin, argument
1222 mem.writeToParcel(data, 0);
H A DIApplicationThread.java133 void dumpMemInfo(FileDescriptor fd, Debug.MemoryInfo mem, boolean checkin, boolean dumpInfo, argument
H A DActivityThread.java956 public void dumpMemInfo(FileDescriptor fd, Debug.MemoryInfo mem, boolean checkin, argument
961 dumpMemInfo(pw, mem, checkin, dumpFullInfo, dumpDalvik);
1052 // SQLite mem info
4241 BinderInternal.forceGc("mem");
/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp434 jlong mem = 0; local
450 mem += atoll(num) * 1024;
459 return numFound > 0 ? mem : -1;
H A Dandroid_os_Debug.cpp648 long mem[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; local
663 mem[i] = atoll(num);
681 mem[MEMINFO_ZRAM_TOTAL] = atoll(buffer)/1024;
692 outArray[i] = mem[i];
/frameworks/av/media/libstagefright/omx/
H A DOMXNodeInstance.cpp103 BufferMeta(const sp<IMemory> &mem, bool is_backup = false) argument
104 : mMem(mem),
/frameworks/av/media/libstagefright/
H A DOMXCodec.cpp1657 sp<IMemory> mem = mDealer[portIndex]->allocate(def.nBufferSize); local
1658 CHECK(mem.get() != NULL);
1669 mem.clear();
1676 mNode, portIndex, mem, &buffer);
1681 mem.clear();
1688 mNode, portIndex, mem, &buffer);
1691 err = mOMX->useBuffer(mNode, portIndex, mem, &buffer);
1699 if (mem != NULL) {
1700 info.mData = mem->pointer();
1705 info.mMem = mem;
[all...]
H A DACodec.cpp554 sp<IMemory> mem = mDealer[portIndex]->allocate(def.nBufferSize); local
555 CHECK(mem.get() != NULL);
567 mem.clear();
580 mNode, portIndex, mem, &info.mBufferID);
582 err = mOMX->useBuffer(mNode, portIndex, mem, &info.mBufferID);
585 if (mem != NULL) {
586 info.mData = new ABuffer(mem->pointer(), def.nBufferSize);
880 sp<IMemory> mem = mDealer[kPortIndexOutput]->allocate( local
882 CHECK(mem.get() != NULL);
883 info.mData = new ABuffer(mem
[all...]

Completed in 105 milliseconds

12