Home
last modified time | relevance | path

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

123456

/system/core/liblog/
Dpmsg_reader.c288 struct names { in __android_log_pmsg_file_read() struct
294 } * names; in __android_log_pmsg_file_read() local
407 names = node_to_item(node, struct names, node); in __android_log_pmsg_file_read()
408 if (!strcmp(names->name, msg + sizeof(prio)) && in __android_log_pmsg_file_read()
409 (names->id == transp.logMsg.entry.lid) && (names->prio == *msg)) { in __android_log_pmsg_file_read()
420 names = calloc(1, sizeof(*names) + len); in __android_log_pmsg_file_read()
421 if (!names) { in __android_log_pmsg_file_read()
425 strcpy(names->name, msg + sizeof(prio)); in __android_log_pmsg_file_read()
426 names->id = transp.logMsg.entry.lid; in __android_log_pmsg_file_read()
427 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/cpio/
Dmkbootfs.c175 char** names = malloc(size * sizeof(char*)); in _archive_dir() local
176 if (names == NULL) { in _archive_dir()
190 names = realloc(names, size * sizeof(char*)); in _archive_dir()
191 if (names == NULL) { in _archive_dir()
197 names[entries] = strdup(de->d_name); in _archive_dir()
198 if (names[entries] == NULL) { in _archive_dir()
206 qsort(names, entries, sizeof(char*), compare); in _archive_dir()
209 t = strlen(names[i]); in _archive_dir()
211 memcpy(in + ilen + 1, names[i], t + 1); in _archive_dir()
215 memcpy(out + olen + 1, names[i], t + 1); in _archive_dir()
[all …]
/system/update_engine/
Dpylintrc27 # Add files or directories to the blacklist. 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/tools/hidl/
DScope.cpp57 std::vector<std::string> names = fqName.names(); in lookupType() local
58 CHECK_GT(names.size(), 0u); in lookupType()
59 auto it = mTypeIndexByName.find(names[0]); in lookupType()
66 if (names.size() == 1) { in lookupType()
75 names.erase(names.begin()); in lookupType()
76 FQName innerName(names); in lookupType()
/system/extras/perfprofd/quipper/base/
Dlogging.cc49 const int&, const int&, const char* names);
51 const unsigned long&, const unsigned long&, const char* names);
53 const unsigned long&, const unsigned int&, const char* names);
55 const unsigned int&, const unsigned long&, const char* names);
Dlogging.h251 std::string* MakeCheckOpString(const t1& v1, const t2& v2, const char* names) { in MakeCheckOpString() argument
253 ss << names << " (" << v1 << " vs. " << v2 << ")"; in MakeCheckOpString()
263 const int&, const int&, const char* names);
266 const unsigned long&, const unsigned long&, const char* names);
269 const unsigned long&, const unsigned int&, const char* names);
272 const unsigned int&, const unsigned long&, const char* names);
285 const char* names) { \
287 else return MakeCheckOpString(v1, v2, names); \
289 inline std::string* Check##name##Impl(int v1, int v2, const char* names) { \
291 else return MakeCheckOpString(v1, v2, names); \
/system/extras/simpleperf/
Dcmd_list.cpp116 std::vector<std::string> names; in Run() local
119 names.push_back(item.first); in Run()
124 names.push_back(arg); in Run()
134 for (auto& name : names) { in Run()
Dcommand.cpp67 std::vector<std::string> names; in GetAllCommandNames() local
69 names.push_back(pair.first); in GetAllCommandNames()
71 return names; in GetAllCommandNames()
/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/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)
Dstoraged_uid_monitor.cpp65 std::vector<std::string> names; in get_uid_names() local
66 binder::Status status = package_mgr->getNamesForUids(uids, &names); in get_uid_names()
74 if (!names[i].empty()) { in get_uid_names()
75 *uid_names[i] = names[i]; in get_uid_names()
/system/core/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/sepolicy/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/tools/aidl/tests/
Daidl_test_client_primitives.cpp163 vector<String16> names = { in ConfirmReverseBinderLists() local
174 status = s->GetOtherTestService(names[i], &got); in ConfirmReverseBinderLists()
212 if (ret != names[i]) { in ConfirmReverseBinderLists()
229 if (ret != names[2 - i]) { in ConfirmReverseBinderLists()
/system/core/bootstat/
Dboot_event_record_store_test.cpp170 std::vector<std::string> names; in TEST_F() local
173 names.push_back(i->first); in TEST_F()
177 EXPECT_THAT(names, UnorderedElementsAreArray(EXPECTED_NAMES)); in TEST_F()
/system/libvintf/
DHalManifest.cpp69 std::set<std::string> names{}; in getHalNames() local
71 names.insert(hal.first); in getHalNames()
73 return names; in getHalNames()
77 std::set<std::string> names{}; in getHalNamesAndVersions() local
80 names.insert(hal.name + "@" + to_string(version)); in getHalNamesAndVersions()
83 return names; in getHalNamesAndVersions()
/system/sepolicy/private/
Dfile.te1 # Compatibility with type names used in vanilla Android 4.3 and 4.4.
/system/sepolicy/prebuilts/api/26.0/private/
Dfile.te1 # Compatibility with type names used in vanilla Android 4.3 and 4.4.
/system/tools/hidl/utils/include/hidl-util/
DFQName.h37 FQName(const std::vector<std::string> &names);
84 std::vector<std::string> names() const;
/system/libhidl/transport/manager/1.0/
DIServiceManager.hal59 * Each interface must have its own namespace for instance names. If you
95 * @return fqInstanceNames List of fully-qualified instance names.
104 * @return instanceNames List of instance names running the particular service.
121 * sent out for all names.
/system/core/logcat/
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/media/camera/docs/
Dmetadata_validate.py77 def find_parent_by_name(element, names): argument
98 matching_parents = [i.name for i in element.parents if i.name in names]
/system/tools/hidl/utils/
DFQName.cpp94 FQName::FQName(const std::vector<std::string> &names) in FQName() argument
97 setTo(StringHelper::JoinStrings(names, ".")); in FQName()
233 std::vector<std::string> FQName::names() const { in names() function in android::FQName
310 CHECK(names().size() == 1) << "Must be a top level type"; in getInterfaceName()

123456