Home
last modified time | relevance | path

Searched full:description (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/system/usb_info_tools/typec_connector_class_helper/src/
Dusb_pd_utils.rs22 pub description: &'static str, field
26 /// Returns the "description: field_value" string for a VDO field.
29 [self.description, &format!(": 0x{:x}", field_val)].concat() in decode_vdo()
80 VdoField { index: 0, mask: 0x0000ffff, description: "USB Vendor ID" },
81 VdoField { index: 16, mask: 0x03ff0000, description: "Reserved" },
82 VdoField { index: 26, mask: 0x04000000, description: "Modal Operation Supported" },
83 VdoField { index: 27, mask: 0x38000000, description: "Product Type" },
84 VdoField { index: 30, mask: 0x40000000, description: "USB Capable as a USB Device" },
85 VdoField { index: 31, mask: 0x80000000, description: "USB Capable as a USB Host" },
89 &[VdoField { index: 0, mask: 0xffffffff, description: "XID" }];
[all …]
/system/chre/
Dchre_flags.aconfig12 description: "Enable the reliable message APIs"
21 description: "Abort the HAL process if no context hub info found. For debug purpose only."
28 description: "Reconnect host endpoints of ContextHubService after Context Hub HAL restarts."
35 description: "Enable duplicate detection for reliable messages in the Context Hub Service"
42 description: "Enable retries for reliable messages in the Context Hub Service"
49 description: "Enables test mode behaviors in the Context Hub Service for reliable messages"
56description: "A flag guarding the fix of how the Context Hub HAL stores the reliable message recor…
66 description: "Fixes API check errors in Context Hub classes"
73 description: "Flag guarding refactor of ContextHub HAL to be transport agnostic"
83 description: "Removes the implementation of the deprecated old ContextHub APIs"
[all …]
/system/server_configurable_flags/aconfigd/
Dnew_aconfig_storage.aconfig7 description: "This flag controls if aconfig storage daemon is turned on"
15 description: "Support immediate local overrides."
22 description: "Support ability to clear local overrides immediately."
32 description: "enable full rust implementation aconfigd"
41 description: "When enabled, launch aconfigd from config infra module."
49 description: "Fix bluetooth module java flag value inconsistency"
/system/security/keystore2/aconfig/
Dflags.aconfig7 description: "This flag controls changing journalmode to wal"
15description: "This flag disables legacy keystore put and makes it so that command returns an error"
23 description: "This flag disables legacy keystore get and makes it so that get returns an error"
31description: "Include support for importing keys that were previously software-emulated into KeyMi…
39 description: "Use state database column to track superseded blobentry rows"
47 description: "Support attestation of modules"
/system/media/camera/docs/
Dmetadata_template.mako24 % if tag.description and tag.description.strip():
25 <tag id="${tag.id}">${tag.description | x}</tag>
27 <tag id="${tag.id}"><!-- TODO: fill the tag description --></tag>
47 % if section.description is not None:
48 <description>${section.description}</description>
195 % if prop.description is not None:
196 <description>${prop.description | x}</description>
Dmetadata_definitions.xml229 <description>
232 </description>
303 <description>A color transform matrix to use to transform
305 </description>
328 <description>Gains applying to Bayer raw color channels for
329 white-balance.</description>
377 <description>
379 </description>
414 <description>
417 </description>
[all …]
DCameraMetadataKeys.mako33 description = ""
34 if entry.description:
35 description = dedent(entry.description) + "\n\n"
42 concatenated_info = description + details + extra_detail
44 ## Glue description and details together before javadoc-izing. Otherwise @see in middle of javadoc.
Dmetadata_model.py244 def insert_tag(self, tag, description=""): argument
250 description: A string description for a tag.
261 self._tags.append(Tag(tag, self, description))
600 description: The description of the tag, the contents of the <tag> element.
604 def __init__(self, name, parent, description=""): argument
607 self._description = description
618 def description(self): member in Tag
686 description: A string description of the section, or None.
692 def __init__(self, name, parent, description=None, kinds=[]): argument
695 self._description = description
[all …]
/system/teeui/libteeui/prebuilt/localization/
DConfirmationUITranslations-test.cpp65 …ASSERT_STR(lookup(TranslationId::DESCRIPTION), "Review the details on this screen carefully. Only … in main()
77 …ASSERT_STR(lookup(TranslationId::DESCRIPTION), "Review the details on this screen carefully. Only … in main()
89 …ASSERT_STR(lookup(TranslationId::DESCRIPTION), "Review the details on this screen carefully. Only … in main()
101 …ASSERT_STR(lookup(TranslationId::DESCRIPTION), "Gaan die besonderhede op hierdie skerm versigtig n… in main()
113 …ASSERT_STR(lookup(TranslationId::DESCRIPTION), "በዚህ ማያ ገጽ ላይ ዝርዝሮችን በጥንቃቄ ይገምግሙ። መረጃው ትክክል ከሆነ ብቻ … in main()
125 …ASSERT_STR(lookup(TranslationId::DESCRIPTION), "يمكنك مراجعة التفاصيل على هذه الشاشة بعناية. يجب ع… in main()
137 …ASSERT_STR(lookup(TranslationId::DESCRIPTION), "يمكنك مراجعة التفاصيل على هذه الشاشة بعناية. يجب ع… in main()
149 …ASSERT_STR(lookup(TranslationId::DESCRIPTION), "يمكنك مراجعة التفاصيل على هذه الشاشة بعناية. يجب ع… in main()
161 …ASSERT_STR(lookup(TranslationId::DESCRIPTION), "يمكنك مراجعة التفاصيل على هذه الشاشة بعناية. يجب ع… in main()
173 …ASSERT_STR(lookup(TranslationId::DESCRIPTION), "يمكنك مراجعة التفاصيل على هذه الشاشة بعناية. يجب ع… in main()
[all …]
/system/libufdt/tests/
Drun_tests.sh20 # Usage: run_test_case <filename> <description>
28 # description: a description message to be displayed in the terminal
31 local description="$2"
33 alert "${description}"
/system/core/libkeyutils/
Dkeyutils.cpp37 key_serial_t add_key(const char* type, const char* description, const void* payload, in add_key() argument
39 return syscall(__NR_add_key, type, description, payload, payload_length, ring_id); in add_key()
50 long keyctl_search(key_serial_t ring_id, const char* type, const char* description, in keyctl_search() argument
52 return syscall(__NR_keyctl, KEYCTL_SEARCH, ring_id, type, description, dest_ring_id); in keyctl_search()
/system/apex/apexd/
Dapexd.aconfig7 description: "This flag controls if allowing installation of brand-new APEX"
15 description: "This flag controls if allowing mounting APEXes before the data partition"
/system/extras/simpleperf/
Devent_type.h40 EventType(const std::string& name, uint32_t type, uint64_t config, const std::string& description, in EventType()
45 description(description), in EventType()
67 std::string description; member
/system/libvintf/include/vintf/
DMatrixInstance.h65 // Return a human-readable description of the interface.
71 // Return a human-readable description of the instance.
75 std::string description(Version replaceVersion) const;
/system/core/fastboot/
Dfastboot_test.cpp206 static void ParseNetworkSerialTest(const std::string& description, const std::string& serial, in ParseNetworkSerialTest() argument
212 ASSERT_RESULT_OK(parsed) << description; in ParseNetworkSerialTest()
215 EXPECT_EQ(network_serial.address, expected_address) << description; in ParseNetworkSerialTest()
216 EXPECT_EQ(network_serial.protocol, expected_protocol) << description; in ParseNetworkSerialTest()
217 EXPECT_EQ(network_serial.port, expected_port) << description; in ParseNetworkSerialTest()
220 static void ParseNetworkSerialNegativeTest(const std::string& description, in ParseNetworkSerialNegativeTest() argument
225 EXPECT_FALSE(parsed.ok()) << description; in ParseNetworkSerialNegativeTest()
226 EXPECT_EQ(parsed.error().code(), expected_error) << description; in ParseNetworkSerialNegativeTest()
/system/core/mini_keyctl/
Dmini_keyctl_utils.cpp42 // cases, this function looks up a keyring's ID by parsing /proc/keys. The keyring description may
44 // word in the keyring description is used for searching.
67 // The key description may contain space. in GetKeyringId()
/system/security/provisioner/
Drkp_factory_extraction_lib.cpp127 << "'. Description: " << status.getDescription() << "." << std::endl; in getCsrV1()
138 << "'. Description: " << status.getDescription() << "." << std::endl; in getCsrV1()
155 << "'. Description: " << status.getDescription() << "." << std::endl; in selfTestGetCsrV1()
171 << "'. Description: " << status.getDescription() << "." << std::endl; in selfTestGetCsrV1()
218 << "'. Description: " << status.getDescription() << "." << std::endl; in getCsrV3()
225 << "'. Description: " << status.getDescription() << "." << std::endl; in getCsrV3()
249 << "'. Description: " << status.getDescription() << "." << std::endl; in getCsr()
/system/logging/liblog/
Devent.logtags14 # Optionally, after the tag names can be put a description for the value(s)
15 # of the tag. Description are in the format
/system/unwinding/libunwindstack/tools/
Dstrip.py20 DESCRIPTION = "This tool reduces ELF size using stripping and compression" variable
63 parser = argparse.ArgumentParser(description=DESCRIPTION)
/system/keymaster/km_openssl/
Dtriple_des_operation.cpp68 static TripleDesEvpCipherDescription description; variable
70 return description; in GetCipherDescription()
Daes_operation.cpp93 static AesEvpCipherDescription description; variable
95 return description; in GetCipherDescription()
/system/logging/logd/
Devent.logtags14 # Optionally, after the tag names can be put a description for the value(s)
15 # of the tag. Description are in the format
/system/keymaster/include/keymaster/km_openssl/
Dattestation_utils.h55 * authorization lists are used for the key description.
92 * @param sw_enforced contains the software-enforced elements of the key description.
94 * @param hw_enforced contains the hardware-enforced elements of the key description.
/system/core/libkeyutils/include/
Dkeyutils.h40 key_serial_t add_key(const char* type, const char* description, const void* payload,
47 long keyctl_search(key_serial_t ring_id, const char* type, const char* description,
/system/security/keystore2/rkpd_client/src/
Dlib.rs132 fn onError(&self, description: &str) -> binder::Result<()> { in onError()
133 log::error!("IGetRegistrationCallback failed: '{description}'"); in onError()
136 .context(source_location_msg!("GetRegistrationCallback failed: {:?}", description)), in onError()
192 fn onError(&self, error: GetKeyErrorCode, description: &str) -> binder::Result<()> { in onError()
193 log::error!("IGetKeyCallback failed: {description}"); in onError()
197 description in onError()

12345678910>>...15