Home
last modified time | relevance | path

Searched refs:Table (Results 1 – 25 of 121) sorted by relevance

12345

/aosp12/frameworks/base/core/tests/coretests/src/com/android/internal/app/procstats/
H A DSparseMappingTableTest.java45 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); in testParcelingEmpty()
60 final SparseMappingTable.Table table1 = new SparseMappingTable.Table(data1); in testParcelingEmpty()
73 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); in testParceling()
94 final SparseMappingTable.Table table1 = new SparseMappingTable.Table(data1); in testParceling()
114 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); in testParcelingWithReset()
141 final SparseMappingTable.Table table1 = new SparseMappingTable.Table(data1); in testParcelingWithReset()
166 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); in testResetDataOnlyFails()
192 final SparseMappingTable.Table table = new SparseMappingTable.Table(data); in testInvalidKey()
/aosp12/frameworks/base/cmds/incident_helper/src/parsers/
H A DSystemPropertiesParser.cpp51 Table sysPropTable(SystemPropertiesProto::_FIELD_NAMES, in Parse()
56 Table aacDrcTable(SystemPropertiesProto::AacDrc::_FIELD_NAMES, in Parse()
62 Table aaudioTable(SystemPropertiesProto::Aaudio::_FIELD_NAMES, in Parse()
68 Table cameraTable(SystemPropertiesProto::Camera::_FIELD_NAMES, in Parse()
80 Table initSvcTable(SystemPropertiesProto::InitSvc::_FIELD_NAMES, in Parse()
88 Table logTable(SystemPropertiesProto::Log::_FIELD_NAMES, in Parse()
94 Table persistTable(SystemPropertiesProto::Persist::_FIELD_NAMES, in Parse()
106 Table roTable(SystemPropertiesProto::Ro::_FIELD_NAMES, in Parse()
111 Table bootTable(SystemPropertiesProto::Ro::Boot::_FIELD_NAMES, in Parse()
173 Table sysTable(SystemPropertiesProto::Sys::_FIELD_NAMES, in Parse()
[all …]
/aosp12/system/bt/gd/dumpsys/
H A Dfilter.cc51 virtual bool FilterField(const reflection::Field* field, flatbuffers::Table* table) { in FilterField()
63 virtual void FilterObject(const reflection::Object* object, flatbuffers::Table* table){}; in FilterObject()
73 virtual void FilterTable(const reflection::Schema* schema, flatbuffers::Table* table){}; in FilterTable()
90 bool FilterField(const reflection::Field* field, flatbuffers::Table* table) override;
91 void FilterObject(const reflection::Object* object, flatbuffers::Table* table) override;
92 void FilterTable(const reflection::Schema* schema, flatbuffers::Table* table) override;
95 bool UserPrivacyFilter::FilterField(const reflection::Field* field, flatbuffers::Table* table) { in FilterField()
123 void UserPrivacyFilter::FilterObject(const reflection::Object* object, flatbuffers::Table* table) { in FilterObject()
135 void UserPrivacyFilter::FilterTable(const reflection::Schema* schema, flatbuffers::Table* table) { in FilterTable()
160 flatbuffers::Table* sub_table = table->GetPointer<flatbuffers::Table*>(it->offset()); in FilterTable()
[all …]
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
H A DShadowSecureSettings.java23 import com.google.common.collect.Table;
34 private static final Map<ContentResolver, Table<Integer, String, Object>> sUserDataMap =
40 final Table<Integer, String, Object> userTable = getUserTable(resolver); in putStringForUser()
53 final Table<Integer, String, Object> userTable = getUserTable(resolver); in getStringForUser()
62 final Table<Integer, String, Object> userTable = getUserTable(resolver); in putIntForUser()
72 final Table<Integer, String, Object> userTable = getUserTable(resolver); in getIntForUser()
82 final Table<Integer, String, Object> userTable = getUserTable(resolver); in putLongForUser()
92 final Table<Integer, String, Object> userTable = getUserTable(resolver); in getLongForUser()
102 final Table<Integer, String, Object> userTable = getUserTable(resolver); in putFloatForUser()
112 final Table<Integer, String, Object> userTable = getUserTable(resolver); in getFloatForUser()
[all …]
/aosp12/system/bt/gd/dumpsys/internal/
H A Dfilter_internal.h44 void ScrubFromTable(flatbuffers::Table* table, flatbuffers::voffset_t field_offset);
115 bool FilterTypeBool(const reflection::Field& field, flatbuffers::Table* table, PrivacyLevel privacy…
116 bool FilterTypeInteger(const reflection::Field& field, flatbuffers::Table* table, PrivacyLevel priv…
117 bool FilterTypeFloat(const reflection::Field& field, flatbuffers::Table* table, PrivacyLevel privac…
118 bool FilterTypeString(const reflection::Field& field, flatbuffers::Table* table, PrivacyLevel priva…
119 bool FilterTypeStruct(const reflection::Field& field, flatbuffers::Table* table, PrivacyLevel priva…
H A Dfilter_internal_test.cc39 flatbuffers::Table* GetMutableTable() const { in GetMutableTable()
128 flatbuffers::Table* table = GetMutableTable(); in TEST_F()
143 flatbuffers::Table* table = GetMutableTable(); in TEST_F()
159 flatbuffers::Table* table = GetMutableTable(); in TEST_F()
174 flatbuffers::Table* table = GetMutableTable(); in TEST_F()
189 flatbuffers::Table* table = GetMutableTable(); in TEST_F()
204 flatbuffers::Table* table = GetMutableTable(); in TEST_F()
219 flatbuffers::Table* table = GetMutableTable(); in TEST_F()
234 flatbuffers::Table* table = GetMutableTable(); in TEST_F()
249 flatbuffers::Table* table = GetMutableTable(); in TEST_F()
[all …]
H A Dfilter_internal.cc35 void internal::ScrubFromTable(flatbuffers::Table* table, flatbuffers::voffset_t field_offset) { in ScrubFromTable()
108 bool internal::FilterTypeBool(const reflection::Field& field, flatbuffers::Table* table, PrivacyLev… in FilterTypeBool()
116 const reflection::Field& field, flatbuffers::Table* table, PrivacyLevel privacy_level) { in FilterTypeInteger()
154 bool internal::FilterTypeFloat(const reflection::Field& field, flatbuffers::Table* table, PrivacyLe… in FilterTypeFloat()
189 bool internal::FilterTypeString(const reflection::Field& field, flatbuffers::Table* table, PrivacyL… in FilterTypeString()
232 bool internal::FilterTypeStruct(const reflection::Field& field, flatbuffers::Table* table, PrivacyL… in FilterTypeStruct()
/aosp12/frameworks/native/cmds/lshal/
H A DListCommand.h137 void forEachTable(const std::function<void(Table &)> &f);
138 void forEachTable(const std::function<void(const Table &)> &f) const;
139 Table* tableForType(HalType type);
140 const Table* tableForType(HalType type) const;
160 Table mServicesTable{};
161 Table mPassthroughRefTable{};
162 Table mImplementationsTable{};
163 Table mManifestHalsTable{};
164 Table mLazyHalsTable{};
/aosp12/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DTypeConverter.h37 const DeviceCategoryConverter::Table DeviceCategoryConverter::mTable[];
39 const MixTypeConverter::Table MixTypeConverter::mTable[];
41 const RouteFlagTypeConverter::Table RouteFlagTypeConverter::mTable[];
43 const RuleTypeConverter::Table RuleTypeConverter::mTable[];
/aosp12/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DTypeConverter.cpp27 const DeviceCategoryConverter::Table DeviceCategoryConverter::mTable[] = {
37 const MixTypeConverter::Table MixTypeConverter::mTable[] = {
45 const RouteFlagTypeConverter::Table RouteFlagTypeConverter::mTable[] = {
54 const RuleTypeConverter::Table RuleTypeConverter::mTable[] = {
/aosp12/system/chre/apps/power_test/common/include/generated/
H A Dchre_power_test_generated.h335 struct TimerMessage FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
356 typedef TimerMessage Table; typedef
389 struct WifiScanMessage FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
425 typedef WifiScanMessage Table; typedef
499 typedef GnssLocationMessage Table; typedef
558 typedef CellQueryMessage Table; typedef
615 typedef AudioRequestMessage Table; typedef
679 typedef SensorRequestMessage Table; typedef
739 typedef BreakItMessage Table; typedef
783 typedef NanoappResponseMessage Table; typedef
[all …]
/aosp12/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DLVM_Mixer_TimeConstant.cpp66 LVM_FLOAT Table[] = { in LVM_Mixer_TimeConstant() local
104 Diff = (Table[Shift] - Table[Shift + 1]); in LVM_Mixer_TimeConstant()
106 ProductFloat = Table[Shift + 1] + Diff; in LVM_Mixer_TimeConstant()
/aosp12/system/chre/platform/shared/include/chre/platform/shared/generated/
H A Dhost_messages_generated.h405 typedef NanoappMessage Table;
485 typedef HubInfoRequest Table;
590 typedef HubInfoResponse Table;
776 typedef NanoappListEntry Table;
1302 typedef LogMessage Table;
1355 typedef TimeSyncMessage Table;
1394 typedef DebugDumpRequest Table;
1433 typedef DebugDumpData Table;
1534 typedef TimeSyncRequest Table;
1714 typedef LogMessageV2 Table;
[all …]
/aosp12/frameworks/base/cmds/incident_helper/src/
H A Dih_util.h136 class Table
140 Table(const char* names[], const uint64_t ids[], const int count);
141 ~Table();
166 explicit Message(Table* table);
196 Table* mTable;
H A Dih_util.cpp275 Table::Table(const char* names[], const uint64_t ids[], const int count) in Table() function in Table
286 Table::~Table() in ~Table()
291 Table::addEnumTypeMap(const char* field, const char* enumNames[], const int enumValues[], const int… in addEnumTypeMap()
306 Table::addEnumNameToValue(const char* enumName, const int enumValue) in addEnumNameToValue()
312 Table::insertField(ProtoOutputStream* proto, const std::string& name, const std::string& value) in insertField()
387 Message::Message(Table* table) in Message()
/aosp12/art/runtime/
H A Dintern_table.cc310 void InternTable::Table::Remove(ObjPtr<mirror::String> s) { in Remove()
321 ObjPtr<mirror::String> InternTable::Table::Find(ObjPtr<mirror::String> s) { in Find()
332 ObjPtr<mirror::String> InternTable::Table::Find(const Utf8String& string) { in Find()
343 void InternTable::Table::AddNewTable() { in AddNewTable()
347 void InternTable::Table::Insert(ObjPtr<mirror::String> s) { in Insert()
354 void InternTable::Table::VisitRoots(RootVisitor* visitor) { in VisitRoots()
364 void InternTable::Table::SweepWeaks(IsMarkedVisitor* visitor) { in SweepWeaks()
370 void InternTable::Table::SweepWeaks(UnorderedSet* set, IsMarkedVisitor* visitor) { in SweepWeaks()
384 size_t InternTable::Table::Size() const { in Size()
406 InternTable::Table::Table() { in Table() function in art::InternTable::Table
H A Dintern_table-inl.h108 inline void InternTable::Table::AddInternStrings(UnorderedSet&& intern_strings, in AddInternStrings()
129 auto visit_tables = [&](std::vector<Table::InternalTable>& tables) in VisitInterns()
131 for (Table::InternalTable& table : tables) { in VisitInterns()
150 auto visit_tables = [&](const std::vector<Table::InternalTable>& tables) in CountInterns()
152 for (const Table::InternalTable& table : tables) { in CountInterns()
H A Dreference_table.h59 TrackingAllocator<GcRoot<mirror::Object>, kAllocatorTagReferenceTable>> Table; typedef
60 static void Dump(std::ostream& os, Table& entries)
66 Table entries_;
/aosp12/frameworks/compile/mclinker/include/mcld/LD/
H A DNamePool.h33 typedef HashTable<ResolveInfo, hash::StringHash<hash::DJB> > Table; typedef
34 typedef Table::iterator syminfo_iterator;
35 typedef Table::const_iterator const_syminfo_iterator;
123 Table m_Table;
/aosp12/system/chre/apps/wifi_offload/include/chre/apps/wifi_offload/generated/
H A Dflatbuffers_types_generated.h42 struct Ssid FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
59 typedef Ssid Table; typedef
116 typedef PreferredNetwork Table; typedef
195 typedef ScanResult Table; typedef
290 typedef ScanResultMessage Table; typedef
354 typedef ScanParams Table; typedef
427 typedef ScanFilter Table; typedef
492 typedef ScanConfig Table; typedef
549 typedef ScanRecord Table; typedef
606 typedef RpcLogRecord Table; typedef
[all …]
/aosp12/system/bt/gd/dumpsys/internal/test_data/
H A Dstruct_generated.h16 struct TestSubTable FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
28 typedef TestSubTable Table; typedef
52 struct TestTableStruct FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
65 typedef TestTableStruct Table; typedef
/aosp12/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/table/packed/read/
H A DBaseTypedPackedTable.java20 import com.android.timezone.location.storage.table.reader.Table;
31 abstract class BaseTypedPackedTable<E extends Table.TableEntry<E>> implements Table<E> {
/aosp12/system/vold/model/
H A DDisk.cpp83 enum class Table { enum
350 Table table = Table::kUnknown; in readPartitions()
360 table = Table::kMbr; in readPartitions()
362 table = Table::kGpt; in readPartitions()
378 if (table == Table::kMbr) { in readPartitions()
395 } else if (table == Table::kGpt) { in readPartitions()
411 if (table == Table::kUnknown || !foundParts) { in readPartitions()
/aosp12/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/table/reader/
H A DTable.java25 public interface Table<E extends Table.TableEntry> { interface
H A DIntValueTable.java23 public interface IntValueTable extends Table<IntValueTable.TableEntry> {
34 interface TableEntry extends Table.TableEntry<TableEntry> {

12345