Lines Matching refs:app
3 This is a rewrite of Trusty's [Hello World App](https://android.googlesource.com/trusty/app/sample/…
4 …e original `app` and `test-app` TAs written in C, but is structured differently. It's recommended …
11 … original TA as well, if you want to see the rust TA communicate with the original C `test-app` TA.
14 You should have a `trusty/user/app/sample/rust-hello-world` directory under your root.
18 …_world_lib` in its manifest), and the app(named `rust_hello_world_app`). There is only one subdire…
24 |-- |-- app
37 …- `lib.rs` - This file contains the functionality of the original `app`. It sets up the event lo…
38 …pps to connect onto. In addition, it contains the unit tests that can be run to emulate `test-app`.
40 - `manifest.json` - This file specifies the configuration options for the library app.
42 …- `rules.mk` - This is the makefile for the library app. In order to run our unit tests in Rust,…
48 …t-hello-world/app` - The app directory contains a separated manifest and makefile for the app TA. …
50 …- `main.rs` - This simply contains the `main` function that runs on app startup, which calls int…
51 - `manifest.json` - This manifest specifices the configuration options for the app itself.
52 - `rules.mk` - The makefile for the app.
72 2. You can actually use the original `test-app` in C to exercise the Rust TA.
90 This approach uses the library TA solely. If you were curious about exercising the app TA, then you…
92 …ve done so, don't include the original C `app` in `TRUSTY_BUILTIN_USER_TASKS`. We want to include …
97 trusty/user/app/sample/rust-hello-world/app \
106 …This will use the unit test in the original C `test-app`, which sets up a connection to our rust a…