Searched refs:map (Results 251 - 259 of 259) sorted by relevance

<<11

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifInterface.java1040 ByteBuffer buf = file.getChannel().map(MapMode.READ_WRITE, 0, exifSize);
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java824 // for each user id, a map of <package name -> components within that package>
878 ArrayMap<String, ArrayList<String>> map = mUidMap.get(userId);
879 if (map == null) {
880 map = new ArrayMap<String, ArrayList<String>>();
881 mUidMap.put(userId, map);
883 return map;
6731 // Check all shared libraries and map to their actual file path.
7543 ArrayMap<String, PackageParser.Package> map = mOverlays.get(pkg.mOverlayTarget);
7544 map.put(pkg.packageName, pkg);
15364 * Collect information of applications on external media, map the
[all...]
/frameworks/native/services/inputflinger/
H A DInputReader.cpp119 const int32_t map[][4], size_t mapSize) {
122 if (value == map[i][0]) {
123 return map[i][orientation];
4529 // Walk through the the active pointers and map device coordinates onto
118 rotateValueUsingRotationMap(int32_t value, int32_t orientation, const int32_t map[][4], size_t mapSize) argument
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp991 std::map<int,int> pidToPriorityMap;
1263 // Update UID map - this is used in the torch status changed callbacks, so must be done
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp962 // create LayerShader to map SaveLayer content into subsequent draw
1610 mapper.map(u1, v1, u2, v2);
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp210 std::map<unsigned, AttributeSet> MAttributeGroups;
234 /// map contains info about where to find deferred function body in the
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp153 // This map links the invoke instruction with the eh.exception and eh.selector
177 // This map stores the slots where the exception object and selector value are
453 std::map<unsigned, AttributeSet> MAttributeGroups;
477 /// map contains info about where to find deferred function body in the
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp51 #include <map>
1041 // maintain output's symbol and index map
1788 // 4. create PT_LOAD for sections in address map except for text, data,
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java3201 checkTime(startTime, "startProcess: removing from pids map");
3206 checkTime(startTime, "startProcess: done removing from pids map");
3375 checkTime(startTime, "startProcess: starting to update pids map");
3385 checkTime(startTime, "startProcess: done updating pids map");
5040 HashMap<String, Object> map = new HashMap<String, Object>();
5042 msg.obj = map;
5044 map.put("app", app);
5046 map.put("activity", activity);

Completed in 459 milliseconds

<<11