Home
last modified time | relevance | path

Searched refs:tag (Results 151 – 175 of 339) sorted by relevance

12345678910>>...14

/system/bt/stack/include/
Dbtm_api.h973 void BTM_LogHistory(const std::string& tag, const RawAddress& addr,
975 void BTM_LogHistory(const std::string& tag, const RawAddress& addr,
977 void BTM_LogHistory(const std::string& tag, const tBLE_BD_ADDR& addr,
979 void BTM_LogHistory(const std::string& tag, const tBLE_BD_ADDR& addr,
/system/tools/xsdc/src/com/android/xsdc/tag/
DXsdSimpleType.java17 package com.android.xsdc.tag;
DXsdType.java17 package com.android.xsdc.tag;
DXsdEnumeration.java17 package com.android.xsdc.tag;
DXsdSimpleContent.java17 package com.android.xsdc.tag;
/system/bt/linux_include/log/
Dlog.h28 inline int android_errorWriteWithInfoLog(int tag, const char* subTag, in android_errorWriteWithInfoLog() argument
/system/bt/gd/grpc/
Dgrpc_module.cc91 void* tag; in RunGrpcLoop() local
94 if (!completion_queue_->Next(&tag, &ok)) { in RunGrpcLoop()
/system/netd/server/
Dmain.cpp85 int tagSocketCallback(int sockFd, uint32_t tag, uid_t uid, pid_t) { in tagSocketCallback() argument
87 if (tag == TAG_SYSTEM_DNS) uid = AID_DNS; in tagSocketCallback()
88 return gCtls->trafficCtrl.tagSocket(sockFd, tag, uid, geteuid()); in tagSocketCallback()
DTrafficController.cpp308 int TrafficController::tagSocket(int sockFd, uint32_t tag, uid_t uid, uid_t callingUid) { in tagSocket() argument
316 UidTagValue newKey = {.uid = (uint32_t)uid, .tag = tag}; in tagSocket()
418 int TrafficController::deleteTagData(uint32_t tag, uid_t uid, uid_t callingUid) { in deleteTagData() argument
424 const auto deleteMatchedCookieEntries = [uid, tag](const uint64_t& key, in deleteTagData()
427 if (value.uid == uid && (value.tag == tag || tag == 0)) { in deleteTagData()
441 const auto deleteMatchedUidTagEntries = [uid, tag](const StatsKey& key, in deleteTagData()
443 if (key.uid == uid && (key.tag == tag || tag == 0)) { in deleteTagData()
449 ALOGE("Failed to delete data(uid=%u, tag=%u): %s\n", key.uid, key.tag, in deleteTagData()
458 if (tag != 0) return 0; in deleteTagData()
462 ALOGE("Failed to delete counterSet data(uid=%u, tag=%u): %s\n", uid, tag, in deleteTagData()
[all …]
/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/unions/
DEnumUnion.rs50 let tag: i32 = parcel.read()?; in deserialize_option() localVariable
51 match tag { in deserialize_option()
DUnionInUnion.rs50 let tag: i32 = parcel.read()?; in deserialize_option() localVariable
51 match tag { in deserialize_option()
/system/security/keystore2/src/
Dsuper_key.rs163 pub fn aes_gcm_decrypt(&self, data: &[u8], iv: &[u8], tag: &[u8]) -> Result<ZVec> { in aes_gcm_decrypt()
165 aes_gcm_decrypt(data, iv, tag, &self.key) in aes_gcm_decrypt()
184 let (mut ciphertext, nonce, mut tag) = aes_gcm_encrypt(&to_encrypt.key, key)?; in new()
185 ciphertext.append(&mut tag); in new()
459 (Some(iv), Some(tag)) => key in unwrap_key_with_key()
460 .aes_gcm_decrypt(blob, iv, tag) in unwrap_key_with_key()
462 (iv, tag) => Err(Error::Rc(ResponseCode::VALUE_CORRUPTED)).context(format!( in unwrap_key_with_key()
468 tag.is_some(), in unwrap_key_with_key()
624 (Some(&EncryptedBy::Password), Some(salt), Some(iv), Some(tag)) => { in extract_super_key_from_key_entry()
630 aes_gcm_decrypt(blob, iv, tag, &key).context( in extract_super_key_from_key_entry()
[all …]
/system/sepolicy/build/soong/
Dpolicy.go201 func (c *policyConf) OutputFiles(tag string) (android.Paths, error) {
202 if tag == "" {
205 return nil, fmt.Errorf("Unknown tag %q", tag)
356 func (c *policyCil) OutputFiles(tag string) (android.Paths, error) {
357 if tag == "" {
360 return nil, fmt.Errorf("Unknown tag %q", tag)
Dversioned_policy.go180 func (m *versionedPolicy) OutputFiles(tag string) (android.Paths, error) {
181 if tag == "" {
184 return nil, fmt.Errorf("Unknown tag %q", tag)
Dbuild_files.go79 func (b *buildFiles) OutputFiles(tag string) (android.Paths, error) {
80 if paths, ok := b.srcs[tag]; ok {
84 …return nil, fmt.Errorf("unknown tag %q. Supported tags are: %q", tag, strings.Join(android.SortedS…
/system/nfc/src/fuzzers/
DREADME.md16 NFC tag Read/Write code -- vulnerabilities found here are possibly reachable by
17 an attacker countrolled NFC tag or tag emulator.
20 NFC tag emulation code -- vulnerabilities found here are possibly reachable by
21 an attacker controlled NFC tag reader.
/system/keymaster/android_keymaster/
Dremote_provisioning_utils.cpp143 auto tag = macedKeyItem->asArray()->get(kCoseMac0Tag)->asBstr(); in validateAndExtractPubkeys() local
144 if (!protectedParms || !unprotectedParms || !payload || !tag) { in validateAndExtractPubkeys()
180 if (macTag->size() != tag->value().size() || in validateAndExtractPubkeys()
181 CRYPTO_memcmp(macTag->data(), tag->value().data(), macTag->size()) != 0) { in validateAndExtractPubkeys()
/system/linkerconfig/
DREADME.md80 The file is line-based and each line consists of `tag apex_namespace
83 - `tag` explains what `library_list` is.
87 - if `tag` is `jni`, `library_list` is the list of JNI libraries exposed
89 - if `tag` is `public`, `library_list` is the list of public libraries
/system/netd/libnetdutils/include/netdutils/
DLog.h112 Log(const std::string& tag) : Log(tag, MAX_ENTRIES) {} in Log() argument
113 Log(const std::string& tag, size_t maxEntries) : mTag(tag), mMaxEntries(maxEntries) {} in Log() argument
/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/unions/
DUnionInUnion.java158 private void _assertTag(int tag) { in _assertTag() argument
159 if (getTag() != tag) { in _assertTag()
160 …throw new IllegalStateException("bad access: " + _tagString(tag) + ", " + _tagString(getTag()) + "… in _assertTag()
/system/logging/liblog/
DREADME.protocol.md10 char tag[...];
34 int32_t tag;
72 single character priority, followed by a variable length null terminated string for the tag, and
Dlogprint.cpp97 static FilterInfo* filterinfo_new(const char* tag, android_LogPriority pri) { in filterinfo_new() argument
101 p_ret->mTag = strdup(tag); in filterinfo_new()
183 static android_LogPriority filterPriForTag(AndroidLogFormat* p_format, const char* tag) { in filterPriForTag() argument
187 if (0 == strcmp(tag, p_curFilter->mTag)) { in filterPriForTag()
203 int android_log_shouldPrintLine(AndroidLogFormat* p_format, const char* tag, in android_log_shouldPrintLine() argument
205 return pri >= filterPriForTag(p_format, tag); in android_log_shouldPrintLine()
572 entry->tag = msg + 1; in android_log_processLogBuffer()
1001 tagIndex = event_header->tag; in android_log_processBinaryLogBuffer()
1006 entry->tag = NULL; in android_log_processBinaryLogBuffer()
1009 entry->tag = android_lookupEventTag_len(map, &entry->tagLen, tagIndex); in android_log_processBinaryLogBuffer()
[all …]
/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/
DUnionWithFd.rs51 let tag: i32 = parcel.read()?; in deserialize_option() localVariable
52 match tag { in deserialize_option()
/system/core/libstats/push_compat/
Dstatsd_writer.h42 void (*noteDrop)(int error, int tag);
/system/keymaster/contexts/
Dpure_soft_keymaster_context.cpp145 switch (entry.tag) { in CreateKeyBlob()
414 KeymasterBlob tag; in UnwrapKey() local
416 error = parse_wrapped_key(wrapped_key_blob, &iv, &transit_key, &secure_key, &tag, in UnwrapKey()
508 if (!plaintext.Reinitialize(secure_key.key_material_size + tag.data_length)) { in UnwrapKey()
511 if (!encrypted_key.Reinitialize(secure_key.key_material_size + tag.data_length)) { in UnwrapKey()
517 if (!encrypted_key.write(tag.data, tag.data_length)) { in UnwrapKey()

12345678910>>...14