commit | e9579648feae69087bbd2ecda8a300073855262f | [log] [tgz] |
---|---|---|
author | Chris Wailes <chriswailes@google.com> | Wed May 29 18:25:19 2024 -0700 |
committer | Chris Wailes <chriswailes@google.com> | Wed May 29 18:25:19 2024 -0700 |
tree | 559300a2f67c14cda381567c16c9654eeacff209 | |
parent | 27ccc62f7615c25546429ec517f4d11e68c6dbef [diff] |
Update source for Rust 1.78.0 Error: unnecessary use of `get(&INSTANCE_HASH_KEY).is_none()` --> packages/modules/Virtualization/pvmfw/src/dice.rs:270:28 | 270 | assert!(config_map.get(&INSTANCE_HASH_KEY).is_none()); | -----------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | | | help: replace it with: `!config_map.contains_key(&INSTANCE_HASH_KEY)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check Test: m libpvmfw.dice.test Bug: 333887339 Change-Id: Ie1b6f6c9e6526a0dcac7feacc74fef973ada6d48
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: