Searched defs:Entry (Results 1 - 25 of 50) sorted by relevance

12

/frameworks/base/libs/hwui/
H A DLayerUpdateQueue.h36 struct Entry { struct in class:android::uirenderer::LayerUpdateQueue
37 Entry(RenderNode* renderNode, const Rect& damage) function in struct:android::uirenderer::LayerUpdateQueue::Entry
46 const std::vector<Entry>& entries() const { return mEntries; }
49 std::vector<Entry> mEntries;
/frameworks/compile/mclinker/include/mcld/Target/
H A DGOT.h34 class Entry : public TargetFragment { class in class:mcld::GOT
39 Entry(uint64_t pValue, SectionData* pParent) function in class:mcld::GOT::Entry
42 virtual ~Entry() {}
H A DPLT.h22 * \brief PLTEntryDefaultBase provides the default interface for PLT Entry
51 class Entry : public EntryBase { class in class:mcld::PLT
56 explicit Entry(SectionData& pParent) : EntryBase(pParent) {} function in class:mcld::PLT::Entry
58 virtual ~Entry() {}
H A DELFDynamic.h47 class Entry {}; class in namespace:mcld::elf_dynamic
50 class Entry<32, true> : public EntryIF { class in namespace:mcld::elf_dynamic
58 inline Entry();
60 inline ~Entry();
62 Entry* clone() const { return new Entry(); }
81 class Entry<64, true> : public EntryIF { class in namespace:mcld::elf_dynamic
89 inline Entry();
91 inline ~Entry();
93 Entry* clon
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DKernelWakelockStats.java23 public class KernelWakelockStats extends HashMap<String, KernelWakelockStats.Entry> {
24 public static class Entry { class in class:KernelWakelockStats
29 Entry(int count, long totalTime, int version) { method in class:KernelWakelockStats.Entry
/frameworks/base/libs/services/include/android/os/
H A DDropBoxManager.h53 // Create a new Entry with byte array contents. Makes a copy of the data.
56 // Create a new Entry from a file. The file will be opened in this process
61 // Create a new Entry from an already opened file. Takes ownership of the
65 class Entry : public virtual RefBase, public Parcelable { class in class:android::os::DropBoxManager
67 Entry();
68 virtual ~Entry();
79 Entry(const String16& tag, int32_t flags);
80 Entry(const String16& tag, int32_t flags, int fd);
93 Status getNextEntry(const String16& tag, long msec, Entry* entry);
100 Status add(const Entry
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DLaunchTimeTracker.java30 private final SparseArray<Entry> mWindowingModeLaunchTime = new SparseArray<>();
33 Entry entry = mWindowingModeLaunchTime.get(r.getWindowingMode());
35 entry = new Entry();
42 final Entry entry = mWindowingModeLaunchTime.get(windowingMode);
49 Entry getEntry(int windowingMode) {
53 static class Entry { class in class:LaunchTimeTracker
H A DPendingRemoteAnimationRegistry.java34 private final ArrayMap<String, Entry> mEntries = new ArrayMap<>();
47 mEntries.put(packageName, new Entry(packageName, adapter));
56 final Entry entry = mEntries.get(callingPackage);
69 private class Entry { class in class:PendingRemoteAnimationRegistry
73 Entry(String packageName, RemoteAnimationAdapter adapter) { method in class:PendingRemoteAnimationRegistry.Entry
78 final Entry entry = mEntries.get(packageName);
/frameworks/base/services/robotests/src/com/android/server/testing/shadows/
H A DShadowEventLog.java30 private final static LinkedHashSet<Entry> ENTRIES = new LinkedHashSet<>();
34 ENTRIES.add(new Entry(tag, Arrays.asList(values)));
40 return ENTRIES.contains(new Entry(tag, Arrays.asList(values)));
48 public static class Entry { class in class:ShadowEventLog
52 public Entry(int tag, List<Object> values) { method in class:ShadowEventLog.Entry
61 Entry entry = (Entry) o;
/frameworks/native/include/binder/
H A DPermissionCache.h44 struct Entry { struct in class:android::PermissionCache
48 inline bool operator < (const Entry& e) const {
57 SortedVector< Entry > mCache;
/frameworks/native/libs/binder/include/binder/
H A DPermissionCache.h44 struct Entry { struct in class:android::PermissionCache
48 inline bool operator < (const Entry& e) const {
57 SortedVector< Entry > mCache;
/frameworks/base/libs/services/src/os/
H A DDropBoxManager.cpp34 DropBoxManager::Entry::Entry() function in class:android::os::DropBoxManager::Entry
44 DropBoxManager::Entry::Entry(const String16& tag, int32_t flags) function in class:android::os::DropBoxManager::Entry
53 DropBoxManager::Entry::Entry(const String16& tag, int32_t flags, int fd) function in class:android::os::DropBoxManager::Entry
62 DropBoxManager::Entry::~Entry()
67 DropBoxManager::Entry::writeToParcel(Parcel* out) const
105 DropBoxManager::Entry
[all...]
/frameworks/base/libs/common_time/
H A Dutils.h63 class Entry { class in class:android::LogRing
72 Entry* mRingBuffer;
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java37 public List<Entry> parse(InputStream in) throws XmlPullParserException, IOException {
49 private List<Entry> readFeed(XmlPullParser parser) throws XmlPullParserException, IOException {
50 List<Entry> entries = new ArrayList<Entry>();
70 public static class Entry { class in class:StackOverflowXmlParser
75 private Entry(String title, String summary, String link) { method in class:StackOverflowXmlParser.Entry
85 private Entry readEntry(XmlPullParser parser) throws XmlPullParserException, IOException {
105 return new Entry(title, summary, link);
/frameworks/base/services/core/java/com/android/server/
H A DAttributeCache.java51 private final SparseArray<ArrayMap<int[], Entry>> mMap = new SparseArray<>();
58 public final static class Entry { class in class:AttributeCache
62 public Entry(Context c, TypedArray ta) { method in class:AttributeCache.Entry
93 final ArrayMap<int[], Entry> map = pkg.mMap.valueAt(i);
119 public Entry get(String packageName, int resId, int[] styleable, int userId) {
122 ArrayMap<int[], Entry> map = null;
123 Entry ent = null;
153 ent = new Entry(pkg.context,
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/storage/
H A DRecoverySessionStorage.java35 private final SparseArray<ArrayList<Entry>> mSessionsByUid = new SparseArray<>();
47 public Entry get(int uid, String sessionId) {
48 ArrayList<Entry> userEntries = mSessionsByUid.get(uid);
52 for (Entry entry : userEntries) {
68 public void add(int uid, Entry entry) {
93 ArrayList<Entry> entries = mSessionsByUid.get(uid);
97 for (Entry entry : entries) {
112 ArrayList<Entry> entries = mSessionsByUid.valueAt(i);
127 ArrayList<Entry> entries = mSessionsByUid.valueAt(i);
128 for (Entry entr
139 public static class Entry implements Destroyable { class in class:RecoverySessionStorage
148 public Entry(String sessionId, byte[] lskfHash, byte[] keyClaimant, byte[] vaultParams) { method in class:RecoverySessionStorage.Entry
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplaySettings.java50 private final HashMap<String, Entry> mEntries = new HashMap<String, Entry>();
52 public static class Entry { class in class:DisplaySettings
59 public Entry(String _name) { method in class:DisplaySettings.Entry
73 Entry entry;
97 Entry entry = mEntries.get(uniqueId);
99 entry = new Entry(uniqueId);
184 Entry entry = new Entry(name);
209 for (Entry entr
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashBase.h35 entry_type* Entry; member in class:mcld::HashBucket
/frameworks/native/services/sensorservice/
H A DSensorList.h77 struct Entry { struct in class:android::SensorServiceUtil::SensorList
81 Entry(SensorInterface* si_, bool debug_, bool virtual_) : function in struct:android::SensorServiceUtil::SensorList::Entry
88 // Iterate through Entry in sensor list and perform operation f on each Entry.
91 // bool f(const Entry &);
103 std::map<int, Entry> mHandleMap;
110 forEachEntry([&f] (const Entry& e) -> bool { return f(e.si->getSensor());});
/frameworks/base/libs/hwui/renderstate/
H A DOffscreenBufferPool.h125 struct Entry { struct in class:android::uirenderer::OffscreenBufferPool
126 Entry() {} function in struct:android::uirenderer::OffscreenBufferPool::Entry
128 Entry(const uint32_t layerWidth, const uint32_t layerHeight, bool wideColorGamut) function in struct:android::uirenderer::OffscreenBufferPool::Entry
133 explicit Entry(OffscreenBuffer* layer) function in struct:android::uirenderer::OffscreenBufferPool::Entry
139 static int compare(const Entry& lhs, const Entry& rhs);
141 bool operator==(const Entry& other) const { return compare(*this, other) == 0; }
143 bool operator!=(const Entry& other) const { return compare(*this, other) != 0; }
145 bool operator<(const Entry& other) const { return Entry
[all...]
/frameworks/base/tools/aapt2/
H A DStringPool.h72 class Entry;
92 explicit Ref(Entry* entry);
94 Entry* entry_;
122 class Entry { class in class:aapt::StringPool
188 inline const std::vector<std::unique_ptr<Entry>>& strings() const {
216 std::vector<std::unique_ptr<Entry>> strings_;
218 std::unordered_multimap<android::StringPiece, Entry*> indexed_strings_;
/frameworks/compile/mclinker/lib/LD/
H A DEhFrameHdr.cpp27 typedef std::pair<SizeTraits<32>::Address, SizeTraits<32>::Address> Entry; typedef in namespace:mcld::bit32
29 bool EntryCompare(const Entry& pX, const Entry& pY) {
76 typedef std::vector<bit32::Entry> SearchTableType;
/frameworks/av/include/media/nblog/
H A DNBLog.h137 // Entry starting in the given pointer
174 // Entry's format string
220 struct Entry { struct in class:android::NBLog
221 Entry(Event event, const void *data, size_t length) function in struct:android::NBLog::Entry
223 /*virtual*/ ~Entry() { }
225 // used during writing to format Entry information as follows:
286 audio_utils_fifo_index mRear; // index one byte past the end of most recent Entry
360 // writes a single Entry to the FIFO
363 void log(const Entry *entry, bool trusted = false);
/frameworks/av/media/libnblog/include/media/nblog/
H A DNBLog.h137 // Entry starting in the given pointer
174 // Entry's format string
220 struct Entry { struct in class:android::NBLog
221 Entry(Event event, const void *data, size_t length) function in struct:android::NBLog::Entry
223 /*virtual*/ ~Entry() { }
225 // used during writing to format Entry information as follows:
286 audio_utils_fifo_index mRear; // index one byte past the end of most recent Entry
360 // writes a single Entry to the FIFO
363 void log(const Entry *entry, bool trusted = false);
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java50 /** Flag value: Entry's content was deleted to save space. */
92 public static class Entry implements Parcelable, Closeable { class in class:DropBoxManager
100 /** Create a new empty Entry with no contents. */
101 public Entry(String tag, long millis) { method in class:DropBoxManager.Entry
111 /** Create a new Entry with plain text contents. */
112 public Entry(String tag, long millis, String text) { method in class:DropBoxManager.Entry
124 * Create a new Entry with byte array contents.
127 public Entry(String tag, long millis, byte[] data, int flags) { method in class:DropBoxManager.Entry
141 * Create a new Entry with streaming data contents.
144 public Entry(Strin method in class:DropBoxManager.Entry
161 public Entry(String tag, long millis, File data, int flags) throws IOException { method in class:DropBoxManager.Entry
[all...]

Completed in 942 milliseconds

12