/hardware/qcom/sdm845/data/ipacfg-mgr/ipacm/src/ |
D | IPACM_Xml.cpp | 85 return (char*)child_ptr->content; in IPACM_read_content_element() 156 char* content; in ipacm_cfg_xml_parse_tree() local 203 content = IPACM_read_content_element(xml_node); in ipacm_cfg_xml_parse_tree() 204 if (content) in ipacm_cfg_xml_parse_tree() 206 str_size = strlen(content); in ipacm_cfg_xml_parse_tree() 208 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree() 224 content = IPACM_read_content_element(xml_node); in ipacm_cfg_xml_parse_tree() 225 if (content) in ipacm_cfg_xml_parse_tree() 227 str_size = strlen(content); in ipacm_cfg_xml_parse_tree() 229 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree() [all …]
|
/hardware/qcom/sm8150/data/ipacfg-mgr/ipacm/src/ |
D | IPACM_Xml.cpp | 85 return (char*)child_ptr->content; in IPACM_read_content_element() 156 char* content; in ipacm_cfg_xml_parse_tree() local 203 content = IPACM_read_content_element(xml_node); in ipacm_cfg_xml_parse_tree() 204 if (content) in ipacm_cfg_xml_parse_tree() 206 str_size = strlen(content); in ipacm_cfg_xml_parse_tree() 208 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree() 224 content = IPACM_read_content_element(xml_node); in ipacm_cfg_xml_parse_tree() 225 if (content) in ipacm_cfg_xml_parse_tree() 227 str_size = strlen(content); in ipacm_cfg_xml_parse_tree() 229 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree() [all …]
|
/hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/ |
D | IPACM_Xml.cpp | 85 return (char*)child_ptr->content; in IPACM_read_content_element() 156 char* content; in ipacm_cfg_xml_parse_tree() local 203 content = IPACM_read_content_element(xml_node); in ipacm_cfg_xml_parse_tree() 204 if (content) in ipacm_cfg_xml_parse_tree() 206 str_size = strlen(content); in ipacm_cfg_xml_parse_tree() 208 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree() 224 content = IPACM_read_content_element(xml_node); in ipacm_cfg_xml_parse_tree() 225 if (content) in ipacm_cfg_xml_parse_tree() 227 str_size = strlen(content); in ipacm_cfg_xml_parse_tree() 229 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree() [all …]
|
/hardware/google/pixel/misc_writer/ |
D | misc_writer.cpp | 52 std::string content; in PerformAction() local 57 content = (action_ == MiscWriterActions::kSetDarkThemeFlag) in PerformAction() 64 content = (action_ == MiscWriterActions::kSetSotaFlag) ? kSotaFlag in PerformAction() 73 !WriteMiscPartitionVendorSpace(content.data(), content.size(), offset, &err)) { in PerformAction() 74 LOG(ERROR) << "Failed to write " << content << " at offset " << offset << " : " << err; in PerformAction()
|
D | misc_writer_test.cpp | 59 std::string content(expected.size(), 0); in CheckMiscPartitionVendorSpaceContent() local 60 ASSERT_TRUE(android::base::ReadFullyAtOffset(fd, content.data(), content.size(), in CheckMiscPartitionVendorSpaceContent() 62 ASSERT_EQ(expected, content); in CheckMiscPartitionVendorSpaceContent()
|
/hardware/google/pixel/perfstatsd/include/ |
D | statstype.h | 47 void append(std::chrono::system_clock::time_point &time, std::string &content) { in append() argument 50 data.setData(content); in append() 53 void append(std::string &content) { in append() argument 55 append(now, content); in append()
|
/hardware/ti/am57x/libhwcomposer/ |
D | hwc.cpp | 420 …nt hwc_prepare_for_display(omap_hwc_device_t* hwc_dev, int disp, hwc_display_contents_1_t* content) in hwc_prepare_for_display() argument 428 for (size_t i = 0; i < content->numHwLayers - 1; i++) { in hwc_prepare_for_display() 429 hwc_layer_1_t* layer = &content->hwLayers[i]; in hwc_prepare_for_display() 436 …adjust_drm_plane_to_layer(&content->hwLayers[content->numHwLayers - 1], &display->planeProps[disp]… in hwc_prepare_for_display() 472 …ic int hwc_set_for_display(omap_hwc_device_t* hwc_dev, int disp, hwc_display_contents_1_t* content) in hwc_set_for_display() argument 486 for (size_t i = 0; i < content->numHwLayers; i++) { in hwc_set_for_display() 487 hwc_layer_1_t* layer = &content->hwLayers[i]; in hwc_set_for_display() 490 content->retireFenceFd = -1; in hwc_set_for_display() 499 for (size_t i = 0; i < content->numHwLayers; i++) { in hwc_set_for_display() 500 hwc_layer_1_t* layer = &content->hwLayers[i]; in hwc_set_for_display()
|
/hardware/google/pixel/perfstatsd/ |
D | perfstatsd.cpp | 54 std::string content = data.getData(); in getHistory() local 62 ret->append(content + "\n"); in getHistory()
|
/hardware/interfaces/identity/aidl/default/ |
D | WritableIdentityCredential.cpp | 275 ndk::ScopedAStatus WritableIdentityCredential::addEntryValue(const vector<uint8_t>& content, in addEntryValue() argument 277 size_t contentSize = content.size(); in addEntryValue() 290 entryBytes_.insert(entryBytes_.end(), content.begin(), content.end()); in addEntryValue() 306 support::encryptAes128Gcm(storageKey_, nonce.value(), content, entryAdditionalData_); in addEntryValue()
|
D | IdentityCredential.cpp | 713 optional<vector<uint8_t>> content = in retrieveEntryValue() local 715 if (!content) { in retrieveEntryValue() 720 size_t chunkSize = content.value().size(); in retrieveEntryValue() 739 entryValue_.insert(entryValue_.end(), content.value().begin(), content.value().end()); in retrieveEntryValue() 751 *outContent = content.value(); in retrieveEntryValue()
|
D | WritableIdentityCredential.h | 61 ndk::ScopedAStatus addEntryValue(const vector<uint8_t>& content,
|
/hardware/interfaces/radio/1.0/vts/functional/ |
D | radio_hidl_hal_stk.cpp | 30 std::string content = ""; in TEST_P() local 32 radio->sendEnvelope(serial, content); in TEST_P()
|
/hardware/interfaces/identity/aidl/aidl_api/android.hardware.identity/1/android/hardware/identity/ |
D | IWritableIdentityCredential.aidl | 25 byte[] addEntryValue(in byte[] content); in addEntryValue() argument
|
/hardware/interfaces/identity/aidl/android/hardware/identity/ |
D | IWritableIdentityCredential.aidl | 243 byte[] addEntryValue(in byte[] content); in addEntryValue() argument
|
/hardware/interfaces/identity/aidl/aidl_api/android.hardware.identity/2/android/hardware/identity/ |
D | IWritableIdentityCredential.aidl | 25 byte[] addEntryValue(in byte[] content); in addEntryValue() argument
|
/hardware/interfaces/identity/aidl/aidl_api/android.hardware.identity/current/android/hardware/identity/ |
D | IWritableIdentityCredential.aidl | 25 byte[] addEntryValue(in byte[] content); in addEntryValue() argument
|
/hardware/interfaces/neuralnetworks/1.3/ |
D | IBuffer.hal | 26 * Retrieves the content of this buffer to a shared memory region. 42 * Sets the content of this buffer from a shared memory region.
|
/hardware/interfaces/dumpstate/1.1/ |
D | types.hal | 20 * Constants that define the type of bug report being taken to restrict content appropriately. 61 * The content, if implemented, must be a binary protobuf message written to the first file
|
/hardware/interfaces/neuralnetworks/1.2/ |
D | IPreparedModel.hal | 50 * If the launch is successful, the caller must not change the content of 54 * must not change the content of any of the data objects corresponding to 103 * The caller must not change the content of any data object referenced by 106 * returns. executeSynchronously must not change the content of any of the 163 * change the content of any data object referenced by 168 * change the content of any of the data objects
|
/hardware/interfaces/audio/core/all-versions/vts/functional/4.0/ |
D | AudioPrimaryHidlHalTest.cpp | 220 for (auto content : contentRange) { in TEST_P() local 222 const SourceMetadata metadata = {{{usage, content, volume}}}; in TEST_P() 224 << "usage=" << toString(usage) << ", content=" << toString(content) in TEST_P()
|
/hardware/interfaces/drm/1.2/vts/functional/ |
D | drm_hal_test.cpp | 213 DrmHalVTSVendorModule_V1::ContentConfiguration content = getContent(KeyType::OFFLINE); in TEST_P() local 214 hidl_vec<uint8_t> keySetId = loadKeys(sessionId, content, KeyType::OFFLINE); in TEST_P() 217 hidl_vec<uint8_t> keyRequest = getKeyRequest(keySetId, content, KeyType::RELEASE); in TEST_P() 224 vendorModule->handleKeyRequest(keyRequest, content.serverUrl); in TEST_P()
|
/hardware/interfaces/drm/1.1/ |
D | IDrmPlugin.hal | 34 * may be used by a codec to decrypt protected video content. 67 * Server to obtain the keys required to decrypt the content. 82 * It could contain, for example, the content ID, key ID or 83 * other data obtained from the content metadata that is 86 * @param mimeType identifies the mime type of the content 210 * HAL module. The format and content of ssRelease must be defined by the
|
D | ICryptoFactory.hal | 24 * which are used by a codec to decrypt protected video content.
|
/hardware/interfaces/drm/1.2/ |
D | IDrmPlugin.hal | 30 * content. 35 * The keys in an offline license allow protected content to be 104 * Server to obtain the keys required to decrypt the content. 118 * contain, for example, the content ID, key ID or other data obtained 119 * from the content metadata that is required to generate the key 121 * @param mimeType identifies the mime type of the content
|
/hardware/interfaces/identity/aidl/vts/ |
D | VtsHalIdentityEndToEndTest.cpp | 408 vector<uint8_t> content; in TEST_P() local 412 content.insert(content.end(), chunk.begin(), chunk.end()); in TEST_P() 414 EXPECT_EQ(content, entry.valueCbor); in TEST_P()
|