Home
last modified time | relevance | path

Searched refs:names (Results 1 – 25 of 184) sorted by relevance

12345678

/system/security/keystore2/src/vintf/
Dvintf.cpp23 static char** convert(const std::set<std::string>& names) { in convert() argument
24 char** ret = new char*[names.size()]; in convert()
26 for (const auto& name : names) { in convert()
34 const auto names = manifest->getHalNames(); in getHalNames() local
35 *len = names.size(); in getHalNames()
36 return convert(names); in getHalNames()
41 const auto names = manifest->getHalNamesAndVersions(); in getHalNamesAndVersions() local
42 *len = names.size(); in getHalNamesAndVersions()
43 return convert(names); in getHalNamesAndVersions()
50 const auto names = manifest->getHidlInstances(package, version, interfaceName); in getHidlInstances() local
[all …]
Dlib.rs116 let names = result.as_vec()?; in test() localVariable
117 assert_ne!(names.len(), 0); in test()
123 assert!(names_and_versions.len() >= names.len()); in test()
/system/logging/liblog/
Dpmsg_reader.cpp170 struct names { in __android_log_pmsg_file_read() struct
176 } * names; in __android_log_pmsg_file_read() local
283 names = node_to_item(node, struct names, node); in __android_log_pmsg_file_read()
284 if (!strcmp(names->name, msg + sizeof(prio)) && names->id == log_msg.entry.lid && in __android_log_pmsg_file_read()
285 names->prio == *msg) { in __android_log_pmsg_file_read()
296 names = static_cast<struct names*>(calloc(1, sizeof(*names) + len)); in __android_log_pmsg_file_read()
297 if (!names) { in __android_log_pmsg_file_read()
301 strcpy(names->name, msg + sizeof(prio)); in __android_log_pmsg_file_read()
302 names->id = static_cast<log_id_t>(log_msg.entry.lid); in __android_log_pmsg_file_read()
303 names->prio = *msg; in __android_log_pmsg_file_read()
[all …]
Devent.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
14 # Optionally, after the tag names can be put a description for the value(s)
/system/core/mkbootfs/
Dmkbootfs.c176 char** names = malloc(size * sizeof(char*)); in _archive_dir() local
177 if (names == NULL) { in _archive_dir()
191 names = realloc(names, size * sizeof(char*)); in _archive_dir()
192 if (names == NULL) { in _archive_dir()
198 names[entries] = strdup(de->d_name); in _archive_dir()
199 if (names[entries] == NULL) { in _archive_dir()
207 qsort(names, entries, sizeof(char*), compare); in _archive_dir()
210 t = strlen(names[i]); in _archive_dir()
212 memcpy(in + ilen + 1, names[i], t + 1); in _archive_dir()
216 memcpy(out + olen + 1, names[i], t + 1); in _archive_dir()
[all …]
/system/update_engine/
Dpylintrc27 # Add files or directories to the ignorelist. They should be base names, not
34 # List of plugins (as comma separated values of python modules names) to load,
45 # A comma-separated list of package or module names from where C extensions may
148 # List of module names for which member attributes should not be checked
151 # supports qualified module names, as well as Unix pattern matching.
154 # List of classes names for which member attributes should not be checked
156 # with qualified names.
198 # A regular expression matching names used for dummy variables (i.e. not used).
201 # List of additional names supposed to be defined in builtins. Remember that
262 # List of builtins function names that should not be used, separated by a comma
[all …]
/system/core/init/
Dreboot_test.cpp55 std::vector<std::string> names = GetServiceNames(); in RebootTest() local
56 if (!names.empty()) { in RebootTest()
57 ADD_FAILURE() << "Expected empty ServiceList but found: [" << Join(names, ',') << "]"; in RebootTest()
62 std::vector<std::string> names = GetServiceNames(); in ~RebootTest() local
63 for (const auto& name : names) { in ~RebootTest()
76 std::vector<std::string> names; in GetServiceNames() local
78 names.push_back(s->name()); in GetServiceNames()
80 return names; in GetServiceNames()
/system/apex/
Dpylintrc10 # Add files or directories to the blacklist. They should be base names, not
15 # regex matches against base names, not paths.
21 # List of plugins (as comma separated values of python modules names) to load,
32 # A comma-separated list of package or module names from where C extensions may
187 # Good variable names which should always be accepted, separated by a comma
188 good-names=main,_
190 # Bad variable names which should always be refused, separated by a comma
191 bad-names=
193 # Colon-delimited sets of names that determine each other's naming style when
204 # Regular expression matching correct function names
[all …]
/system/tools/mkbootimg/
Dpylintrc10 # Files or directories to be skipped. They should be base names, not paths.
14 # matches against base names, not paths.
20 # List of plugins (as comma separated values of python modules names) to load,
181 # Good variable names which should always be accepted, separated by a comma
182 good-names=main,_
184 # Bad variable names which should always be refused, separated by a comma
185 bad-names=
187 # Colon-delimited sets of names that determine each other's naming style when
198 # Regular expression matching correct function names
201 # Regular expression matching correct variable names
[all …]
/system/extras/libjsonpb/verify/
Dtest.proto21 // Note: this file explicitly uses names that does NOT follow the Protobuf Style
24 // - Follow the Protobuf Style Guide for field names / enum value names
25 // - If the JSON file is going to have field names that does not conform to the
28 // - If the JSON file is going to have enum value names that does not conform to
/system/extras/simpleperf/
Dthread_tree_test.cpp38 std::vector<std::string> names; in CheckMaps() local
49 if (names.size() < pair.second->get_end_addr()) { in CheckMaps()
50 names.resize(pair.second->get_end_addr()); in CheckMaps()
53 names[i] = pair.second->dso->Path(); in CheckMaps()
56 ASSERT_EQ(names, expected_names_); in CheckMaps()
Dcmd_list.cpp176 std::vector<std::string> names; in Run() local
179 names.push_back(item.first); in Run()
184 names.push_back(arg); in Run()
195 for (auto& name : names) { in Run()
/system/tools/hidl/
DScope.cpp77 std::vector<std::string> names = fqName.names(); in lookupType() local
78 CHECK_GT(names.size(), 0u); in lookupType()
79 auto it = mTypeIndexByName.find(names[0]); in lookupType()
86 if (names.size() == 1) { in lookupType()
95 names.erase(names.begin()); in lookupType()
97 CHECK(FQName::parse(StringHelper::JoinStrings(names, "."), &innerName)); in lookupType()
/system/bt/
DEventLogTags.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
14 # Optionally, after the tag names can be put a description for the value(s)
/system/logging/logd/
Devent.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
14 # Optionally, after the tag names can be put a description for the value(s)
/system/core/storaged/
DEventLogTags.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
14 # Optionally, after the tag names can be put a description for the value(s)
/system/extras/simpleperf/scripts/test/
Dapi_profiler_test.py50 names = os.listdir('simpleperf_data')
51 self.assertGreater(len(names), 0)
52 for name in names:
/system/sepolicy/prebuilts/api/28.0/public/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
4 # creates to the names the runtime expects in the data directory.
/system/sepolicy/prebuilts/api/26.0/public/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
4 # creates to the names the runtime expects in the data directory.
/system/sepolicy/prebuilts/api/27.0/public/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
4 # creates to the names the runtime expects in the data directory.
/system/memory/lmkd/
Devent.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
14 # Optionally, after the tag names can be put a description for the value(s)
/system/sepolicy/prebuilts/api/31.0/private/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
4 # creates to the names the runtime expects in the data directory.
/system/sepolicy/private/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
4 # creates to the names the runtime expects in the data directory.
/system/sepolicy/prebuilts/api/29.0/private/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
4 # creates to the names the runtime expects in the data directory.
/system/sepolicy/prebuilts/api/30.0/private/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
4 # creates to the names the runtime expects in the data directory.

12345678