Home
last modified time | relevance | path

Searched refs:update (Results 1 – 25 of 313) sorted by relevance

12345678910>>...13

/system/tools/aidl/tests/
Dgolden_test.sh24 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/
Dupdate-all-google-makefiles.sh5 $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/
DREADME.md13 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/
DREADME.android8 - 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/
Dpartition_cow_creator.cpp160 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()
Dpartition_cow_creator_test.cpp148 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/
Dcombine_maps.py36 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/
Dnfa_dm_main.cc219 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/
Dsnapshot.proto61 // 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/
DCallStack.cpp34 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()
DCallStack_test.cpp27 cs.update(); in CurrentCaller()
57 cs.update(0, tid); in TEST()
/system/core/fs_mgr/libfs_avb/
Dsha.h34 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/
Doperation.rs476 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/
Daes.rs123 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/
DREADME.md38 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
DOWNERS2 # Please update this list if you find better candidates.
/system/security/ondevice-signing/
Dodsign.rc15 # 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/
DIMemory.hal24 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/
Dlib.rs317 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/
Dupdate-makefiles.sh3 source $ANDROID_BUILD_TOP/system/tools/hidl/update-makefiles-helper.sh
/system/libhidl/
Dupdate-makefiles.sh11 source $ANDROID_BUILD_TOP/system/tools/hidl/update-makefiles-helper.sh
/system/extras/simpleperf/scripts/test/
Ddo_test.py320 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/
Dupdate_engine_common.te2 # 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/
Dattributes6 # 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/
DREADME.md26 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>

12345678910>>...13