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

1 2 3 4 5 6 7 8 91011>>

  /external/libunwind/tests/
run-ptrace-mapper 2 ./test-ptrace -c -n -t ./mapper $*
  /hardware/interfaces/graphics/mapper/2.0/default/
passthrough.cpp 16 #include <android/hardware/graphics/mapper/2.0/IMapper.h>
17 #include <mapper-passthrough/2.0/GrallocLoader.h>
19 using android::hardware::graphics::mapper::V2_0::IMapper;
20 using android::hardware::graphics::mapper::V2_0::passthrough::GrallocLoader;
  /hardware/interfaces/graphics/mapper/2.1/default/
passthrough.cpp 16 #include <android/hardware/graphics/mapper/2.1/IMapper.h>
17 #include <mapper-passthrough/2.1/GrallocLoader.h>
19 using android::hardware::graphics::mapper::V2_1::IMapper;
20 using android::hardware::graphics::mapper::V2_1::passthrough::GrallocLoader;
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
VideoPayloadManager.h 34 virtual bool getMetaData(BufferMapper *mapper, MetaData *metadata);
35 virtual bool setRenderStatus(BufferMapper *mapper, bool renderStatus);
OverlayPlaneBase.h 61 virtual bool setDataBuffer(BufferMapper& mapper);
62 virtual bool bufferOffsetSetup(BufferMapper& mapper);
64 virtual bool coordinateSetup(BufferMapper& mapper);
70 virtual bool scalingSetup(BufferMapper& mapper);
71 virtual bool colorSetup(BufferMapper& mapper);
83 virtual void putTTMMapper(BufferMapper* mapper);
84 virtual bool rotatedBufferReady(BufferMapper& mapper, BufferMapper* &rotatedMapper);
85 virtual bool useOverlayRotation(BufferMapper& mapper);
86 virtual bool scaledBufferReady(BufferMapper& mapper, BufferMapper* &scaledMapper, VideoPayloadBuffer *payload);
89 inline bool isActiveTTMBuffer(BufferMapper *mapper);
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/common/buffers/
BufferManager.cpp 80 BufferMapper *mapper = mBufferPool->getMapper(i); local
81 mapper->unmap();
82 delete mapper;
90 BufferMapper *mapper = mFrameBuffers.valueAt(j); local
91 mapper->unmap();
92 delete mapper;
112 BufferMapper *mapper = mBufferPool->getMapper(i); local
115 mapper->getHandle(),
116 mapper->getWidth(),
117 mapper->getHeight()
149 BufferMapper* mapper; local
245 BufferMapper *mapper = NULL; local
297 BufferMapper *mapper = mFrameBuffers.valueAt(index); local
    [all...]
BufferCache.cpp 35 bool BufferCache::addMapper(uint64_t handle, BufferMapper* mapper)
43 // add mapper
44 index = mBufferPool.add(handle, mapper);
46 ETRACE("failed to add mapper. err = %d", (int)index);
53 bool BufferCache::removeMapper(BufferMapper* mapper)
57 if (!mapper) {
58 ETRACE("invalid mapper");
62 index = mBufferPool.removeItem(mapper->getKey());
64 WTRACE("failed to remove mapper. err = %d", (int)index);
92 BufferMapper* mapper = mBufferPool.valueAt(index) local
    [all...]
BufferCache.h 30 // add a new mapper into buffer cache
31 virtual bool addMapper(uint64_t handle, BufferMapper* mapper);
32 //remove mapper
33 virtual bool removeMapper(BufferMapper* mapper);
34 // get a buffer mapper
38 // get mapper with an index
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/buffers/
BufferManager.cpp 80 BufferMapper *mapper = mBufferPool->getMapper(i); local
81 mapper->unmap();
82 delete mapper;
90 BufferMapper *mapper = mFrameBuffers.valueAt(j); local
91 mapper->unmap();
92 delete mapper;
112 BufferMapper *mapper = mBufferPool->getMapper(i); local
115 mapper->getHandle(),
116 mapper->getWidth(),
117 mapper->getHeight()
149 BufferMapper* mapper; local
245 BufferMapper *mapper = NULL; local
297 BufferMapper *mapper = mFrameBuffers.valueAt(index); local
    [all...]
BufferCache.cpp 35 bool BufferCache::addMapper(uint64_t handle, BufferMapper* mapper)
43 // add mapper
44 index = mBufferPool.add(handle, mapper);
46 ELOGTRACE("failed to add mapper. err = %d", index);
53 bool BufferCache::removeMapper(BufferMapper* mapper)
57 if (!mapper) {
58 ELOGTRACE("invalid mapper");
62 index = mBufferPool.removeItem(mapper->getKey());
64 WLOGTRACE("failed to remove mapper. err = %d", index);
92 BufferMapper* mapper = mBufferPool.valueAt(index) local
    [all...]
BufferCache.h 30 // add a new mapper into buffer cache
31 virtual bool addMapper(uint64_t handle, BufferMapper* mapper);
32 //remove mapper
33 virtual bool removeMapper(BufferMapper* mapper);
34 // get a buffer mapper
38 // get mapper with an index
  /hardware/interfaces/graphics/mapper/2.1/utils/passthrough/include/mapper-passthrough/2.1/
GrallocLoader.h 22 #include <mapper-hal/2.1/Mapper.h>
23 #include <mapper-hal/2.1/MapperHal.h>
24 #include <mapper-passthrough/2.0/GrallocLoader.h>
25 #include <mapper-passthrough/2.1/Gralloc0Hal.h>
26 #include <mapper-passthrough/2.1/Gralloc1Hal.h>
31 namespace mapper { namespace in namespace:android::hardware::graphics
69 auto mapper = std::make_unique<V2_0::passthrough::GrallocMapper<hal::Mapper>>(); local
70 return mapper->init(std::move(hal)) ? mapper.release() : nullptr
    [all...]
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/proguard/
ProGuardClassSpecParser.kt 27 class ProGuardClassSpecParser(private val mapper: ProGuardTypesMapper) {
57 { annotation: String -> mapper.replaceType(annotation) },
58 { className: String -> mapper.replaceType(className) },
59 { className2: String -> mapper.replaceType(className2) },
70 { annotation: String -> mapper.replaceType(annotation) }
78 { annotation: String -> mapper.replaceType(annotation) },
79 { fieldType: String -> mapper.replaceType(fieldType) }
87 { annotation: String -> mapper.replaceType(annotation) }
95 { annotation: String -> mapper.replaceType(annotation) },
96 { className: String -> mapper.replaceType(className) }
    [all...]
  /system/libhidl/libhidlmemory/
mapping.cpp 46 sp<IMapper> mapper = IMapper::getService(name, true /* getStub */); local
47 if (mapper != nullptr) {
48 gMappersByName[name] = mapper;
50 return mapper;
55 sp<IMapper> mapper = getMapperService(memory.name()); local
57 if (mapper == nullptr) {
58 LOG(ERROR) << "Could not fetch mapper for " << memory.name() << " shared memory";
62 if (mapper->isRemote()) {
76 Return<sp<IMemory>> ret = mapper->mapMemory(memory);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
OverlayPlaneBase.h 60 virtual bool setDataBuffer(BufferMapper& mapper);
61 virtual bool bufferOffsetSetup(BufferMapper& mapper);
63 virtual bool coordinateSetup(BufferMapper& mapper);
69 virtual bool scalingSetup(BufferMapper& mapper);
70 virtual bool colorSetup(BufferMapper& mapper);
82 virtual void putTTMMapper(BufferMapper* mapper);
83 virtual bool rotatedBufferReady(BufferMapper& mapper, BufferMapper* &rotatedMapper);
84 virtual bool useOverlayRotation(BufferMapper& mapper);
87 inline bool isActiveTTMBuffer(BufferMapper *mapper);
88 void updateActiveTTMBuffers(BufferMapper *mapper);
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
AnnOverlayPlane.h 47 virtual bool rotatedBufferReady(BufferMapper& mapper, BufferMapper* &rotatedMapper);
48 virtual bool useOverlayRotation(BufferMapper& mapper);
49 virtual bool scaledBufferReady(BufferMapper& mapper, BufferMapper* &scaledMapper, VideoPayloadBuffer *payload);
52 void signalVideoRotation(BufferMapper& mapper);
56 virtual bool setDataBuffer(BufferMapper& mapper);
58 virtual bool bufferOffsetSetup(BufferMapper& mapper);
59 virtual bool scalingSetup(BufferMapper& mapper);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
AnnOverlayPlane.h 49 virtual bool rotatedBufferReady(BufferMapper& mapper, BufferMapper* &rotatedMapper);
50 virtual bool useOverlayRotation(BufferMapper& mapper);
53 void signalVideoRotation(BufferMapper& mapper);
56 virtual bool setDataBuffer(BufferMapper& mapper);
58 virtual bool bufferOffsetSetup(BufferMapper& mapper);
59 virtual bool coordinateSetup(BufferMapper& mapper);
60 virtual bool scalingSetup(BufferMapper& mapper);
  /dalvik/dx/src/com/android/dx/ssa/back/
NullRegisterAllocator.java 47 BasicRegisterMapper mapper = new BasicRegisterMapper(oldRegCount); local
50 mapper.addMapping(i, i*2, 2);
53 return mapper;
  /hardware/interfaces/graphics/allocator/2.0/utils/hal/include/allocator-hal/2.0/
AllocatorHal.h 23 #include <android/hardware/graphics/mapper/2.0/IMapper.h>
32 using mapper::V2_0::BufferDescriptor;
33 using mapper::V2_0::Error;
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTest/java/android/databinding/
DataBindingMapperTest.java 24 android.databinding.DataBinderMapper mapper = new android.databinding.DataBinderMapper(); local
25 ViewDataBinding binding = mapper.getDataBinder(null, view, 1);
31 android.databinding.DataBinderMapper mapper = new android.databinding.DataBinderMapper(); local
34 mapper.getDataBinder(null, view, android.databinding.testapp.R.layout.multi_res_layout);
  /hardware/intel/img/hwcomposer/merrifield/common/planes/
DisplayPlane.cpp 168 BufferMapper *mapper; local
203 mapper = mapBuffer(buffer);
204 if (!mapper) {
210 VTRACE("got mapper in saved data buffers and update source Crop");
211 mapper = mDataBuffers.valueAt(index);
214 // always update source crop to mapper
215 mapper->setCrop(mSrcCrop.x, mSrcCrop.y, mSrcCrop.w, mSrcCrop.h);
217 mapper->setIsCompression(isCompression);
219 // unlock buffer after getting mapper
223 ret = setDataBuffer(*mapper);
241 BufferMapper *mapper = bm->map(*buffer); local
296 BufferMapper* mapper; local
315 BufferMapper* mapper; local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
orc_jit_memory_mapper.cc 34 std::unique_ptr<llvm::SectionMemoryManager::MemoryMapper> mapper) {
36 mapper_instance = mapper.release();
  /external/ltp/testscripts/
ltpdmmapper.sh 3 # valid devices need to be passed for Device Mapper to work correctly
22 Note: In order to run this test, you must turn on "device mapper"
25 files (libdevmapper and dmsetup). They are in the device-mapper
65 echo "Starting Device Mapper Tests..."
67 echo "0 10240 linear " $part1 "0" > ltp-dev-mapper-table1
68 echo "0 100000 linear " $part1 "0" > ltp-dev-mapper-table2
69 echo "0 100000 linear " $part2 "0" > ltp-dev-mapper-table3
70 echo "0 200000 striped 2 16 " $part1 "0" $part2 "0" > ltp-dev-mapper-table4
74 dmsetup create dm-test-1 ltp-dev-mapper-table1
75 dmsetup create dm-test-2 ltp-dev-mapper-table
    [all...]
  /frameworks/native/services/inputflinger/tests/
InputReader_test.cpp 1135 FakeInputMapper* mapper = new FakeInputMapper(device, sources); local
1174 FakeInputMapper* mapper = new FakeInputMapper(device, AINPUT_SOURCE_KEYBOARD); local
1210 FakeInputMapper* mapper = NULL; local
1237 FakeInputMapper* mapper = NULL; local
1264 FakeInputMapper* mapper = NULL; local
1291 FakeInputMapper* mapper = NULL; local
1335 FakeInputMapper* mapper = NULL; local
1671 SwitchInputMapper* mapper = new SwitchInputMapper(mDevice); local
1678 SwitchInputMapper* mapper = new SwitchInputMapper(mDevice); local
1689 SwitchInputMapper* mapper = new SwitchInputMapper(mDevice); local
1734 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1747 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1855 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1900 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1923 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
2000 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
2012 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
2024 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
2045 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
2153 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2161 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2169 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2200 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2219 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2312 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2336 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2370 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2418 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2436 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2487 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2775 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2797 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
3138 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3147 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3158 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3168 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3178 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3207 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3236 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3252 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3303 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3425 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3499 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3598 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3689 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3713 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3775 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3820 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3844 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
4088 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
4224 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
4297 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
4517 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
4794 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
4970 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5141 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5191 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5229 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5282 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5316 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5351 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5595 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5746 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5818 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5890 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5915 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/planes/
DisplayPlane.cpp 184 BufferMapper *mapper; local
219 mapper = mapBuffer(buffer);
223 if (!mapper || mapper->getFormat() == HAL_PIXEL_FORMAT_YV12) {
229 VLOGTRACE("got mapper in saved data buffers and update source Crop");
230 mapper = mDataBuffers.valueAt(index);
233 // always update source crop to mapper
234 mapper->setCrop(mSrcCrop.x, mSrcCrop.y, mSrcCrop.w, mSrcCrop.h);
236 mapper->setIsCompression(isCompression);
238 // unlock buffer after getting mapper
260 BufferMapper *mapper = bm->map(*buffer); local
311 BufferMapper* mapper; local
330 BufferMapper* mapper; local
    [all...]

Completed in 314 milliseconds

1 2 3 4 5 6 7 8 91011>>