/system/tools/aidl/tests/ |
D | golden_test.sh | 24 local update=0 27 update=0 29 update) 30 update=1 64 if [ "$update" = 1 ]; then 76 if [ "$update" = 1 ]; then 91 if [ "$update" = 1 ]; then
|
/system/tools/hidl/ |
D | update-all-google-makefiles.sh | 5 $ANDROID_BUILD_TOP/system/libhidl/update-makefiles.sh 6 $ANDROID_BUILD_TOP/hardware/interfaces/update-makefiles.sh 7 $ANDROID_BUILD_TOP/frameworks/hardware/interfaces/update-makefiles.sh 8 $ANDROID_BUILD_TOP/system/hardware/interfaces/update-makefiles.sh 10 $ANDROID_BUILD_TOP/system/tools/hidl/test/vendor/update-makefile.sh
|
/system/update_engine/ |
D | README.md | 13 an update. Hence, reducing the likelihood of corrupting a device into a 19 reboot if an update was performed where the reboot duration is about 10 21 * The user does not need (although they can) to request for an update. The 22 update checks happen periodically in the background. 23 * If the update fails to apply, the user is not affected. The user will 25 apply the update again at a later time. 26 * If the update applies correctly but fails to boot, the system will rollback 28 * The user does not need to reserve enough space for the update. The system 36 In A/B update capable systems, each partition, such as the kernel or root (or 39 which copy has the higher priority at boot time) and when a new update is [all …]
|
/system/timezone/ |
D | README.android | 8 - Code related to the Android time zone update APEX file that can be used 9 to update time zone rules on Android devices. 15 - Contains files that provide inputs to the time zone rules update process. 23 - Contains some derived files from the time zone rules update process and 25 by ICU - see also update-tzdata.py 28 - Contains tools and scripts related to testing time zone update code. See 33 Data file update tools 37 - A helper script run before update-tzdata.py. 40 update-tzdata.py script. See download-iana-files.py --help for more. 42 update-tzdata.py [all …]
|
/system/core/fs_mgr/libsnapshot/ |
D | partition_cow_creator.cpp | 160 if (update == nullptr || !update->has_estimate_cow_size()) { in GetCowSize() 167 auto size = update->estimate_cow_size() + 2_MiB; in GetCowSize() 186 if (update == nullptr) return sc.cow_size_bytes(); in GetCowSize() 188 for (const auto& iop : update->operations()) { in GetCowSize() 218 if (update && update->has_estimate_cow_size()) { in Run() 219 ret.snapshot_status.set_estimated_cow_size(update->estimate_cow_size()); in Run()
|
D | partition_cow_creator_test.cpp | 148 PartitionUpdate update; in TEST_F() local 149 *update.mutable_operations() = RepeatedInstallOperationPtr(iopv.begin(), iopv.end()); in TEST_F() 156 .update = &update}; in TEST_F() 223 .update = nullptr}; in TEST_F() 244 PartitionUpdate update; in TEST_F() local 245 update.set_estimate_cow_size(256_KiB); in TEST_F() 253 .update = &update}; in TEST_F() 271 PartitionUpdate update; in TEST_F() local 279 .update = nullptr}; in TEST_F()
|
/system/sepolicy/tests/ |
D | combine_maps.py | 36 bottom.types.update(top.types) 37 bottom.typeattributes.update(top.typeattributes) 54 bottom.typeattributesets[bottom_ta].update(top_type_set)
|
/system/nfc/src/nfa/dm/ |
D | nfa_dm_main.cc | 219 bool update; in nfa_dm_check_set_config() local 235 update = false; in nfa_dm_check_set_config() 367 update = true; in nfa_dm_check_set_config() 377 update = true; in nfa_dm_check_set_config() 379 update = true; in nfa_dm_check_set_config() 384 update = true; in nfa_dm_check_set_config() 389 update = true; in nfa_dm_check_set_config() 394 update = true; in nfa_dm_check_set_config() 399 if (update) { in nfa_dm_check_set_config()
|
/system/core/fs_mgr/libsnapshot/android/snapshot/ |
D | snapshot.proto | 61 // device that needs to be snapshotted during the update. 89 // the update and before the merge allows us to infer the progress of the 95 // before the update and before the merge allows us to infer the progress of 121 // No update or merge is in progress. 124 // An update is applying; snapshots may already exist. 127 // An update is pending, but has not been successfully booted yet. 143 // The update was implicitly cancelled, either by a rollback or a flash 183 // an update. 213 // Status of the update after the merge attempts. 220 // Total size of all the COW images before the update. [all …]
|
/system/core/libutils/ |
D | CallStack.cpp | 34 this->update(ignoreDepth+1); in CallStack() 41 void CallStack::update(int32_t ignoreDepth, pid_t tid) { in update() function in android::CallStack 96 stack->update(ignoreDepth + 1); in getCurrentInternal()
|
D | CallStack_test.cpp | 27 cs.update(); in CurrentCaller() 57 cs.update(0, tid); in TEST()
|
/system/core/fs_mgr/libfs_avb/ |
D | sha.h | 34 void update(const uint8_t* data, size_t data_size) { in update() function 54 void update(const uint8_t* data, size_t data_size) { in update() function
|
/system/keymint/ta/src/ |
D | operation.rs | 476 CryptoOperation::Aes(op) => op.update(data), in op_update() 477 CryptoOperation::AesGcm(op) => op.update(data), in op_update() 478 CryptoOperation::Des(op) => op.update(data), in op_update() 480 op.update(data)?; in op_update() 484 op.update(data)?; in op_update() 488 op.update(data)?; in op_update() 492 op.update(data)?; in op_update() 496 op.update(data)?; in op_update() 541 let mut result = if let Some(data) = data { op.update(data)? } else { Vec::new() }; in op_finish() 546 let mut result = if let Some(data) = data { op.update(data)? } else { Vec::new() }; in op_finish() [all …]
|
/system/keymint/boringssl/src/ |
D | aes.rs | 123 fn update(&mut self, data: &[u8]) -> Result<Vec<u8>, Error> { in update() method 127 .update(data, &mut output) in update() 154 fn update(&mut self, data: &[u8]) -> Result<Vec<u8>, Error> { in update() method 155 self.inner.update(data) in update() 195 fn update(&mut self, data: &[u8]) -> Result<Vec<u8>, Error> { in update() method 217 .update(&self.pending_input_tail[..cipherable_from_pending], &mut output) in update() 226 .update(&data[..cipherable_from_data], &mut output[offset..]) in update()
|
/system/tools/xsdc/ |
D | README.md | 38 Then run "make {xsd_config module_name} .docs-update-current-api" or "make 39 update-api" to update all the xsd_config modules. 76 After adding “Deprecated” annotation, we need to update the api or schema just 80 file and the api in last_current.txt, and update it. 83 If there are any changes, we update last_current.txt and last_removed.txt before
|
D | OWNERS | 2 # Please update this list if you find better candidates.
|
/system/security/ondevice-signing/ |
D | odsign.rc | 15 # ensures that if odsign crashes during a module update, apexd will detect 16 # those crashes and roll back the update.
|
/system/libhidl/transport/memory/1.0/ |
D | IMemory.hal | 24 update(); 52 * Must commit all previous update's and updateAll's. 58 * at any point in or outside of the update/commit process.
|
/system/keymint/tests/src/ |
D | lib.rs | 317 op.update(test.data).unwrap(); in test_hmac() 347 op.update(&data[..len]).unwrap(); in test_aes_cmac() 418 let mut got_ct = op.update(&msg).unwrap(); in test_aes_gcm() 431 let mut got_pt = op.update(&got_ct).unwrap(); in test_aes_gcm() 446 let mut got_pt = op.update(&got_ct[..got_ct.len() - 4]).unwrap(); in test_aes_gcm() 463 let _corrupt_pt = op.update(&corrupt_ct).unwrap(); in test_aes_gcm() 496 let mut got_ct = op.update(&msg).unwrap(); in test_des() 503 let mut got_pt = op.update(&got_ct).unwrap(); in test_des()
|
/system/hardware/interfaces/ |
D | update-makefiles.sh | 3 source $ANDROID_BUILD_TOP/system/tools/hidl/update-makefiles-helper.sh
|
/system/libhidl/ |
D | update-makefiles.sh | 11 source $ANDROID_BUILD_TOP/system/tools/hidl/update-makefiles-helper.sh
|
/system/extras/simpleperf/scripts/test/ |
D | do_test.py | 320 def update(self, test_proc: TestProcess): member in ProgressBar 331 bar.update(add) 332 self.total_bar.update(add) 371 def update(self, test_proc: TestProcess): member in TestSummary 481 self.progress_bar.update(test_proc) 482 self.test_summary.update(test_proc) 491 self.progress_bar.update(test_proc) 492 self.test_summary.update(test_proc)
|
/system/sepolicy/prebuilts/api/29.0/public/ |
D | update_engine_common.te | 2 # background daemon and the recovery tool to sideload an update. 24 # the update to an older version (channel change) or incompatible version 43 # install update.zip from cache
|
/system/sepolicy/microdroid/system/public/ |
D | attributes | 6 # On change, update CHECK_FC_ASSERT_ATTRS 14 # On change, update CHECK_FC_ASSERT_ATTRS 23 # On change, update CHECK_FC_ASSERT_ATTRS 76 # On change, update CHECK_PC_ASSERT_ATTRS
|
/system/extras/simpleperf/ |
D | README.md | 26 update script from within the `system/extras/simpleperf` directory: 28 $ ./scripts/update.py --build 1234567 52 In prebuilts/simpleperf, run `update.py`: 54 $ ./update.py --build <bid>
|