/system/core/liblog/ |
D | pmsg_reader.c | 277 struct names { in __android_log_pmsg_file_read() struct 283 } *names; in __android_log_pmsg_file_read() local 394 names = node_to_item(node, struct names, node); in __android_log_pmsg_file_read() 395 if (!strcmp(names->name, msg + sizeof(prio)) && in __android_log_pmsg_file_read() 396 (names->id == transp.logMsg.entry.lid) && in __android_log_pmsg_file_read() 397 (names->prio == *msg)) { in __android_log_pmsg_file_read() 408 names = calloc(1, sizeof(*names) + len); in __android_log_pmsg_file_read() 409 if (!names) { in __android_log_pmsg_file_read() 413 strcpy(names->name, msg + sizeof(prio)); in __android_log_pmsg_file_read() 414 names->id = transp.logMsg.entry.lid; in __android_log_pmsg_file_read() [all …]
|
D | event.logtags | 1 # 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/ |
D | mkbootfs.c | 173 char** names = malloc(size * sizeof(char*)); in _archive_dir() local 174 if (names == NULL) { in _archive_dir() 188 names = realloc(names, size * sizeof(char*)); in _archive_dir() 189 if (names == NULL) { in _archive_dir() 195 names[entries] = strdup(de->d_name); in _archive_dir() 196 if (names[entries] == NULL) { in _archive_dir() 204 qsort(names, entries, sizeof(char*), compare); in _archive_dir() 207 t = strlen(names[i]); in _archive_dir() 209 memcpy(in + ilen + 1, names[i], t + 1); in _archive_dir() 213 memcpy(out + olen + 1, names[i], t + 1); in _archive_dir() [all …]
|
/system/extras/simpleperf/ |
D | cmd_list.cpp | 70 std::vector<std::string> names; in Run() local 73 names.push_back(item.first); in Run() 78 names.push_back(arg); in Run() 88 for (auto& name : names) { in Run()
|
D | command.cpp | 65 std::vector<std::string> names; in GetAllCommandNames() local 67 names.push_back(pair.first); in GetAllCommandNames() 69 return names; in GetAllCommandNames()
|
/system/connectivity/shill/ |
D | scope_logger.cc | 106 vector<string> names(kScopeNames, kScopeNames + arraysize(kScopeNames)); in GetAllScopeNames() local 107 return base::JoinString(names, "+"); in GetAllScopeNames() 111 vector<string> names; in GetEnabledScopeNames() local 114 names.push_back(kScopeNames[i]); in GetEnabledScopeNames() 116 return base::JoinString(names, "+"); in GetEnabledScopeNames()
|
/system/extras/perfprofd/quipper/base/ |
D | logging.cc | 49 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);
|
D | logging.h | 251 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/core/logd/ |
D | event.logtags | 1 # 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/tools/aidl/tests/ |
D | aidl_test_client_primitives.cpp | 143 vector<String16> names = { in ConfirmReverseBinderLists() local 154 status = s->GetOtherTestService(names[i], &got); in ConfirmReverseBinderLists() 192 if (ret != names[i]) { in ConfirmReverseBinderLists() 209 if (ret != names[2 - i]) { in ConfirmReverseBinderLists()
|
/system/core/bootstat/ |
D | boot_event_record_store_test.cpp | 168 std::vector<std::string> names; in TEST_F() local 171 names.push_back(i->first); in TEST_F() 175 EXPECT_THAT(names, UnorderedElementsAreArray(EXPECTED_NAMES)); in TEST_F()
|
/system/connectivity/shill/dbus/ |
D | chromeos_service_dbus_adaptor.cc | 153 const vector<string>& names, in ClearProperties() argument 157 for (it = names.begin(); it != names.end(); ++it) { in ClearProperties()
|
D | chromeos_service_dbus_adaptor.h | 78 const std::vector<std::string>& names,
|
/system/core/logcat/ |
D | event.logtags | 1 # 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/ |
D | metadata_validate.py | 77 def find_parent_by_name(element, names): argument 98 matching_parents = [i.name for i in element.parents if i.name in names]
|
/system/connectivity/shill/mobile_operator_db/ |
D | serviceproviders_converter.py | 214 def _EnrichNode(self, node, country_code, primary, roaming_required, names, argument 235 for name, lang in names: 258 names = [(name_node.text, name_node.get(u'xml:lang')) for 265 names, 271 names = [] 275 names,
|
D | mobile_operator_db.proto | 87 // List of localized names for this provider.
|
/system/sepolicy/ |
D | mls_macros | 51 # Basic level names for system low and high
|
/system/bt/osi/src/protos/ |
D | bluetooth.proto | 150 // Initiator of the scan. Only the first three names will be stored. 189 // Initiator of the scan. Only the first three names will be stored.
|
/system/core/libmincrypt/ |
D | NOTICE | 10 * Neither the name of Google Inc. nor the names of its contributors may
|
/system/core/toolbox/ |
D | NOTICE | 56 3. Neither the name of the University nor the names of its contributors 85 3. Neither the name of the University nor the names of its contributors 117 3. Neither the name of the University nor the names of its contributors 146 3. Neither the name of the University nor the names of its contributors 178 3. Neither the name of the University nor the names of its contributors 207 3. Neither the name of the University nor the names of its contributors 236 3. Neither the name of the University nor the names of its contributors 268 3. Neither the name of the University nor the names of its contributors 300 3. Neither the name of the University nor the names of its contributors 332 3. Neither the name of the University nor the names of its contributors [all …]
|
/system/media/audio_route/ |
D | NOTICE | 10 * Neither the name of The Android Open Source Project nor the names of
|
/system/update_engine/scripts/ |
D | brillo_update_payload | 341 die "Invalid partition names found in the partition list."
|
/system/core/libutils/ |
D | README | 157 Resource overlay operates on symbolic resources names. Hence, to 210 There are no restrictions on overlay packages names, though the naming 237 All atoms (names in square brackets) are uint32_t integers. The
|
/system/core/adb/ |
D | transport.cpp | 805 auto names = android::base::Split(features_string, in StringToFeatureSet() local 807 return FeatureSet(names.begin(), names.end()); in StringToFeatureSet()
|