commit | c0b3da5f673834eec77118bf98cde0e66e393085 | [log] [tgz] |
---|---|---|
author | Charisee <chiw@google.com> | Tue Apr 02 04:47:29 2024 +0000 |
committer | Charisee Chiw <chiw@google.com> | Tue Apr 02 04:49:44 2024 +0000 |
tree | 74750cd70f0a4530a74a31b33c28d9f8aff7917a | |
parent | 5739a93c29a287b4b6d734eea4be3b97209a2462 [diff] |
Update needed for Rust v1.77.1 error: file opened with `create`, but `truncate` behavior not defined --> packages/modules/Virtualization/authfs/tests/common/src/open_then_run.rs:120:18 | 120 | .create(true) | ^^^^^^^^^^^^- help: add: `.truncate(true)` | = help: if you intend to overwrite an existing file entirely, call `.truncate(true)` = help: if you instead know that you may want to keep some parts of the old file, call `.truncate(false)` = help: alternatively, use `.append(true)` to append to the file instead of overwriting it = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_open_options = note: `-D clippy::suspicious-open-options` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::suspicious_open_options)]` Bug: 330185853 ./test_compiler.py --prebuilt-path dist/rust-dev.tar.xz --target aosp_cf_x86_64_phone --image Test: m rust Change-Id: Ia36fc8087f59ee15a3a481e1ce0f7eb6225a6e30
Android Virtualization Framework (AVF) provides secure and private execution environments for executing code. AVF is ideal for security-oriented use cases that require stronger isolation assurances over those offered by Android’s app sandbox.
Visit our public doc site to learn more about what AVF is, what it is for, and how it is structured. This repository contains source code for userspace components of AVF.
If you want a quick start, see the getting started guideline and follow the steps there.
For in-depth explanations about individual topics and components, visit the following links.
AVF components:
AVF APIs:
How-Tos: