├── .clang-format ├── .config └── cache-config.env ├── .github ├── CODEOWNERS ├── actions │ ├── build-debian-packages │ │ └── action.yaml │ ├── deploy-debian-packages │ │ └── action.yaml │ ├── deploy-docker-image │ │ └── action.yaml │ ├── mount-bazel-cache │ │ └── action.yaml │ ├── run-cvd-unit-tests │ │ └── action.yaml │ └── run-cw-sharded-e2e-test │ │ └── action.yaml └── workflows │ ├── documentation.yaml │ ├── postsubmit.yaml │ ├── presubmit.yaml │ ├── scheduled-cache-update.yaml │ ├── stable-channel.yaml │ ├── unstable-channel.yaml │ └── update-cache-and-deployment.yaml ├── .gitignore ├── .kokoro ├── continuous.cfg ├── presubmit.cfg └── presubmit.sh ├── BUILD.bazel ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── base ├── cvd │ ├── .bazelrc │ ├── .clang-tidy │ ├── .gitignore │ ├── BUILD.android_system_core.bazel │ ├── BUILD.android_system_extras.bazel │ ├── BUILD.android_tools_netsim.bazel │ ├── BUILD.avb.bazel │ ├── BUILD.bazel │ ├── BUILD.casimir.bazel │ ├── BUILD.crosvm.bazel │ ├── BUILD.dosfstools.bazel │ ├── BUILD.drm.bazel │ ├── BUILD.e2fsprogs.bazel │ ├── BUILD.egl_headers.bazel │ ├── BUILD.expat.bazel │ ├── BUILD.f2fs_tools.bazel │ ├── BUILD.fec_rs.bazel │ ├── BUILD.fruit.bazel │ ├── BUILD.libcbor.bazel │ ├── BUILD.libconfig.bazel │ ├── BUILD.libdrm.bazel │ ├── BUILD.libeigen.bazel │ ├── BUILD.libffi.bazel │ ├── BUILD.libnl.bazel │ ├── BUILD.libopenscreen.bazel │ ├── BUILD.libpffft.bazel │ ├── BUILD.libsrtp2.bazel │ ├── BUILD.libusb.bazel │ ├── BUILD.libvpx.bazel │ ├── BUILD.libwebm.bazel │ ├── BUILD.libwebrtc.bazel │ ├── BUILD.libwebsockets.bazel │ ├── BUILD.libyuv.bazel │ ├── BUILD.mako.bazel │ ├── BUILD.markupsafe.bazel │ ├── BUILD.mesa.bazel │ ├── BUILD.mkbootimg.bazel │ ├── BUILD.ms-tpm-20-ref.bazel │ ├── BUILD.mtools.bazel │ ├── BUILD.opengl_headers.bazel │ ├── BUILD.pyyaml.bazel │ ├── BUILD.selinux.bazel │ ├── BUILD.swiftshader.bazel │ ├── BUILD.vulkan_headers.bazel │ ├── BUILD.wmediumd.bazel │ ├── Doxyfile │ ├── MODULE.bazel │ ├── README.md │ ├── REPO.bazel │ ├── adb │ │ ├── BUILD.bazel │ │ ├── adb.cpp │ │ ├── adb.h │ │ ├── adb_auth.h │ │ ├── adb_io.cpp │ │ ├── adb_io.h │ │ ├── adb_listeners.cpp │ │ ├── adb_listeners.h │ │ ├── adb_mdns.cpp │ │ ├── adb_mdns.h │ │ ├── adb_trace.cpp │ │ ├── adb_trace.h │ │ ├── adb_unique_fd.cpp │ │ ├── adb_unique_fd.h │ │ ├── adb_utils.cpp │ │ ├── adb_utils.h │ │ ├── adb_wifi.h │ │ ├── apacket_reader.cpp │ │ ├── apacket_reader.h │ │ ├── client │ │ │ ├── adb_client.cpp │ │ │ ├── adb_client.h │ │ │ ├── adb_install.cpp │ │ │ ├── adb_install.h │ │ │ ├── adb_wifi.cpp │ │ │ ├── auth.cpp │ │ │ ├── bugreport.cpp │ │ │ ├── bugreport.h │ │ │ ├── commandline.cpp │ │ │ ├── commandline.h │ │ │ ├── console.cpp │ │ │ ├── detach.cpp │ │ │ ├── detach.h │ │ │ ├── discovered_services.cpp │ │ │ ├── discovered_services.h │ │ │ ├── file_sync_client.cpp │ │ │ ├── file_sync_client.h │ │ │ ├── host_services.h │ │ │ ├── incremental.cpp │ │ │ ├── incremental.h │ │ │ ├── incremental_server.cpp │ │ │ ├── incremental_server.h │ │ │ ├── incremental_utils.cpp │ │ │ ├── incremental_utils.h │ │ │ ├── line_printer.cpp │ │ │ ├── line_printer.h │ │ │ ├── main.cpp │ │ │ ├── mdns_tracker.cpp │ │ │ ├── mdns_tracker.h │ │ │ ├── mdns_utils.cpp │ │ │ ├── mdns_utils.h │ │ │ ├── openscreen │ │ │ │ ├── mdns_service_info.cpp │ │ │ │ ├── mdns_service_info.h │ │ │ │ └── platform │ │ │ │ │ ├── logging.cpp │ │ │ │ │ ├── task_runner.cpp │ │ │ │ │ ├── task_runner.h │ │ │ │ │ └── udp_socket.cpp │ │ │ ├── pairing │ │ │ │ ├── pairing_client.cpp │ │ │ │ └── pairing_client.h │ │ │ ├── transport_client.h │ │ │ ├── transport_emulator.cpp │ │ │ ├── transport_mdns.cpp │ │ │ ├── transport_usb.cpp │ │ │ ├── usb.h │ │ │ ├── usb_libusb.cpp │ │ │ ├── usb_libusb.h │ │ │ ├── usb_libusb_device.cpp │ │ │ ├── usb_libusb_device.h │ │ │ ├── usb_libusb_hotplug.cpp │ │ │ ├── usb_libusb_hotplug.h │ │ │ ├── usb_libusb_inhouse_hotplug.cpp │ │ │ ├── usb_libusb_inhouse_hotplug.h │ │ │ └── usb_linux.cpp │ │ ├── compression_utils.h │ │ ├── crypto │ │ │ ├── include │ │ │ │ └── adb │ │ │ │ │ └── crypto │ │ │ │ │ ├── key.h │ │ │ │ │ ├── rsa_2048_key.h │ │ │ │ │ └── x509_generator.h │ │ │ ├── key.cpp │ │ │ ├── rsa_2048_key.cpp │ │ │ └── x509_generator.cpp │ │ ├── diagnose_usb │ │ │ ├── diagnose_usb.cpp │ │ │ └── include │ │ │ │ └── diagnose_usb.h │ │ ├── fdevent │ │ │ ├── fdevent.cpp │ │ │ ├── fdevent.h │ │ │ ├── fdevent_epoll.cpp │ │ │ └── fdevent_epoll.h │ │ ├── file_sync_protocol.h │ │ ├── incfs │ │ │ └── util │ │ │ │ └── map_ptr.h │ │ ├── libcrypto_utils │ │ │ ├── android_pubkey.cpp │ │ │ └── include │ │ │ │ └── crypto_utils │ │ │ │ └── android_pubkey.h │ │ ├── pairing_auth │ │ │ ├── aes_128_gcm.cpp │ │ │ ├── include │ │ │ │ └── adb │ │ │ │ │ └── pairing │ │ │ │ │ ├── aes_128_gcm.h │ │ │ │ │ └── pairing_auth.h │ │ │ └── pairing_auth.cpp │ │ ├── pairing_connection │ │ │ ├── include │ │ │ │ └── adb │ │ │ │ │ └── pairing │ │ │ │ │ └── pairing_connection.h │ │ │ └── pairing_connection.cpp │ │ ├── proto │ │ │ ├── adb_host.proto │ │ │ ├── adb_known_hosts.proto │ │ │ ├── app_processes.proto │ │ │ ├── key_type.proto │ │ │ └── pairing.proto │ │ ├── services.cpp │ │ ├── services.h │ │ ├── shell_protocol.h │ │ ├── shell_service_protocol.cpp │ │ ├── socket.h │ │ ├── socket_spec.cpp │ │ ├── socket_spec.h │ │ ├── sockets.cpp │ │ ├── sysdeps.h │ │ ├── sysdeps │ │ │ ├── chrono.h │ │ │ ├── env.cpp │ │ │ ├── env.h │ │ │ ├── errno.cpp │ │ │ ├── errno.h │ │ │ ├── network.h │ │ │ ├── posix │ │ │ │ └── network.cpp │ │ │ ├── stat.h │ │ │ └── uio.h │ │ ├── sysdeps_unix.cpp │ │ ├── tls │ │ │ ├── adb_ca_list.cpp │ │ │ ├── include │ │ │ │ └── adb │ │ │ │ │ └── tls │ │ │ │ │ ├── adb_ca_list.h │ │ │ │ │ └── tls_connection.h │ │ │ └── tls_connection.cpp │ │ ├── transport.cpp │ │ ├── transport.h │ │ ├── transport_fd.cpp │ │ ├── types.cpp │ │ ├── types.h │ │ └── version │ │ │ ├── build │ │ │ └── version.h │ │ │ └── platform_tools_version.h │ ├── allocd │ │ ├── BUILD.bazel │ │ ├── alloc_utils.cpp │ │ └── alloc_utils.h │ ├── android │ │ ├── BUILD.bazel │ │ ├── android │ │ │ └── log.h │ │ └── log │ │ │ └── log.h │ ├── build_external │ │ ├── BUILD.bazel │ │ ├── crosvm │ │ │ ├── BUILD.bazel │ │ │ ├── PATCH.minijail-sys_build_rs.patch │ │ │ ├── PATCH.minijail-sys_common_mk.patch │ │ │ ├── PATCH.proto_build_tools.patch │ │ │ └── crosvm.config.toml │ │ ├── cxxbridge │ │ │ └── BUILD.bazel │ │ ├── dosfstools │ │ │ ├── BUILD.bazel │ │ │ ├── PATCH.vasprintf.patch │ │ │ └── src │ │ │ │ └── version.h │ │ ├── e2fsprogs │ │ │ ├── BUILD.bazel │ │ │ ├── lib │ │ │ │ ├── blkid │ │ │ │ │ ├── blkid.h │ │ │ │ │ └── blkid_types.h │ │ │ │ ├── config.h │ │ │ │ ├── ext2fs │ │ │ │ │ ├── crc32c_table.h │ │ │ │ │ ├── ext2_err.c │ │ │ │ │ ├── ext2_err.h │ │ │ │ │ └── ext2_types.h │ │ │ │ ├── support │ │ │ │ │ ├── prof_err.c │ │ │ │ │ └── prof_err.h │ │ │ │ └── uuid │ │ │ │ │ ├── uuid.h │ │ │ │ │ └── uuid_types.h │ │ │ └── misc │ │ │ │ └── default_profile.c │ │ ├── expat │ │ │ ├── BUILD.bazel │ │ │ └── expat_config.h │ │ ├── gfxstream │ │ │ ├── BUILD.bazel │ │ │ └── PATCH.gfxstream.build_variables.patch │ │ ├── grpcio-sys │ │ │ ├── BUILD.bazel │ │ │ ├── gpr_assert.h │ │ │ └── log_stub.c │ │ ├── libcbor │ │ │ ├── BUILD.bazel │ │ │ └── cbor │ │ │ │ ├── cbor_export.h │ │ │ │ └── configuration.h │ │ ├── libopenscreen │ │ │ ├── BUILD.bazel │ │ │ └── PATCH.bazelignore.patch │ │ ├── libsrtp2_config │ │ │ ├── BUILD.bazel │ │ │ └── crypto │ │ │ │ └── include │ │ │ │ └── config.h │ │ ├── libvpx │ │ │ ├── BUILD.bazel │ │ │ ├── PATCH.libvpx_config.patch │ │ │ ├── genconfigs.sh │ │ │ └── lint_config.sh │ │ ├── libwebrtc │ │ │ ├── BUILD.bazel │ │ │ ├── PATCH.third_party_libyuv.patch │ │ │ ├── third_party │ │ │ │ ├── crc32c │ │ │ │ │ └── src │ │ │ │ │ │ └── include │ │ │ │ │ │ └── crc32c │ │ │ │ │ │ └── crc32c.h │ │ │ │ ├── libaom │ │ │ │ │ └── source │ │ │ │ │ │ └── libaom │ │ │ │ │ │ └── aom │ │ │ │ │ │ ├── aom_codec.h │ │ │ │ │ │ ├── aom_decoder.h │ │ │ │ │ │ ├── aom_encoder.h │ │ │ │ │ │ ├── aomcx.h │ │ │ │ │ │ └── aomdx.h │ │ │ │ ├── libevent │ │ │ │ │ └── event.h │ │ │ │ ├── libsrtp │ │ │ │ │ ├── crypto │ │ │ │ │ │ └── include │ │ │ │ │ │ │ ├── auth.h │ │ │ │ │ │ │ └── crypto_types.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── srtp.h │ │ │ │ │ │ └── srtp_priv.h │ │ │ │ ├── opus │ │ │ │ │ └── src │ │ │ │ │ │ └── include │ │ │ │ │ │ ├── opus.h │ │ │ │ │ │ └── opus_multistream.h │ │ │ │ ├── pffft │ │ │ │ │ └── src │ │ │ │ │ │ └── pffft.h │ │ │ │ └── rnnoise │ │ │ │ │ └── src │ │ │ │ │ ├── rnn_activations.h │ │ │ │ │ ├── rnn_vad_weights.cc │ │ │ │ │ └── rnn_vad_weights.h │ │ │ └── webrtc │ │ │ │ ├── experiments │ │ │ │ └── registered_field_trials.h │ │ │ │ └── modules │ │ │ │ └── audio_processing │ │ │ │ └── debug.pb.h │ │ ├── libwebsockets │ │ │ ├── BUILD.bazel │ │ │ └── include │ │ │ │ ├── lws_config.h │ │ │ │ └── lws_config_private.h │ │ ├── ms-tpm-20-ref │ │ │ ├── 0001-Turn-off-ALG_CAMELLIA.patch │ │ │ ├── 0002-Use-the-BoringSSL-bignum_st-structure.patch │ │ │ ├── 0003-Don-t-use-EC_POINTs_mul.patch │ │ │ └── BUILD.bazel │ │ ├── mtools │ │ │ ├── BUILD.bazel │ │ │ └── config.h │ │ ├── netsim │ │ │ ├── 0001-Drop-pica-from-daemon-Cargo.toml.patch │ │ │ ├── 0002-Fix-build-with-tungstenite-0.26.0.patch │ │ │ ├── 0003-Pin-cxx.patch │ │ │ ├── BUILD.bazel │ │ │ ├── collect_files_in_dir.bzl │ │ │ ├── copy_openssl_headers.py │ │ │ ├── copy_openssl_libraries.py │ │ │ ├── openssl_sys.bzl │ │ │ └── pdl_rust.bzl │ │ ├── rootcanal │ │ │ ├── 0001-Use-our-local_repository.patch │ │ │ ├── 0002-Use-pdlc-from-pdl-compiler-crate.patch │ │ │ ├── 0003-Make-rootcanal_proto-public.patch │ │ │ ├── 0004-Add-link_layer_packets_rs.patch │ │ │ ├── 0005-Define-librootcanal_ffi.so-and-librootcanal-librarie.patch │ │ │ └── BUILD.bazel │ │ ├── sandboxed_api │ │ │ ├── BUILD.bazel │ │ │ └── PATCH.sandboxed_api.util.visibility.patch │ │ └── wayland │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.wayland.bazel │ │ │ ├── PATCH.wayland.wayland_config.patch │ │ │ ├── config.h │ │ │ └── wayland-version.h │ ├── build_variables.bzl │ ├── clientanalytics.proto │ ├── cuttlefish │ │ ├── bazel │ │ │ ├── BUILD.bazel │ │ │ ├── local.bzl │ │ │ └── rules.bzl │ │ ├── common │ │ │ ├── frontend │ │ │ │ └── socket_vsock_proxy │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── client.cpp │ │ │ │ │ ├── client.h │ │ │ │ │ ├── server.cpp │ │ │ │ │ ├── server.h │ │ │ │ │ └── socket_vsock_proxy.cpp │ │ │ └── libs │ │ │ │ ├── concurrency │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── multiplexer.h │ │ │ │ ├── semaphore.h │ │ │ │ └── thread_safe_queue.h │ │ │ │ ├── confui │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── confui.h │ │ │ │ ├── packet.cpp │ │ │ │ ├── packet.h │ │ │ │ ├── packet_types.cpp │ │ │ │ ├── packet_types.h │ │ │ │ ├── protocol.cpp │ │ │ │ ├── protocol.h │ │ │ │ ├── protocol_types.cpp │ │ │ │ ├── protocol_types.h │ │ │ │ └── utils.h │ │ │ │ ├── fs │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── epoll.cpp │ │ │ │ ├── epoll.h │ │ │ │ ├── shared_buf.cc │ │ │ │ ├── shared_buf.h │ │ │ │ ├── shared_fd.cpp │ │ │ │ ├── shared_fd.h │ │ │ │ ├── shared_fd_stream.cpp │ │ │ │ ├── shared_fd_stream.h │ │ │ │ ├── shared_fd_test.cpp │ │ │ │ ├── shared_select.h │ │ │ │ └── vm_sockets.h │ │ │ │ ├── key_equals_value │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── key_equals_value.cc │ │ │ │ ├── key_equals_value.h │ │ │ │ └── key_equals_value_test.cc │ │ │ │ ├── posix │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── strerror.cc │ │ │ │ ├── strerror.h │ │ │ │ ├── symlink.cc │ │ │ │ └── symlink.h │ │ │ │ ├── security │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── confui_sign.cpp │ │ │ │ ├── confui_sign.h │ │ │ │ └── oemlock.h │ │ │ │ ├── sensors │ │ │ │ ├── BUILD.bazel │ │ │ │ └── sensors.h │ │ │ │ ├── transport │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── channel.cpp │ │ │ │ ├── channel.h │ │ │ │ ├── channel_sharedfd.cpp │ │ │ │ └── channel_sharedfd.h │ │ │ │ └── utils │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── archive.cpp │ │ │ │ ├── archive.h │ │ │ │ ├── base64.cpp │ │ │ │ ├── base64.h │ │ │ │ ├── base64_test.cpp │ │ │ │ ├── cf_endian.h │ │ │ │ ├── container.cpp │ │ │ │ ├── container.h │ │ │ │ ├── contains.h │ │ │ │ ├── device_type.cpp │ │ │ │ ├── device_type.h │ │ │ │ ├── disk_usage.cpp │ │ │ │ ├── disk_usage.h │ │ │ │ ├── environment.cpp │ │ │ │ ├── environment.h │ │ │ │ ├── files.cpp │ │ │ │ ├── files.h │ │ │ │ ├── files_test.cpp │ │ │ │ ├── files_test_helper.cpp │ │ │ │ ├── files_test_helper.h │ │ │ │ ├── flag_parser.cpp │ │ │ │ ├── flag_parser.h │ │ │ │ ├── flag_parser_test.cpp │ │ │ │ ├── flags_validator.cpp │ │ │ │ ├── flags_validator.h │ │ │ │ ├── host_info.cpp │ │ │ │ ├── host_info.h │ │ │ │ ├── in_sandbox.cpp │ │ │ │ ├── in_sandbox.h │ │ │ │ ├── inotify.cpp │ │ │ │ ├── inotify.h │ │ │ │ ├── json.cpp │ │ │ │ ├── json.h │ │ │ │ ├── known_paths.cpp │ │ │ │ ├── known_paths.h │ │ │ │ ├── network.cpp │ │ │ │ ├── network.h │ │ │ │ ├── network_test.cpp │ │ │ │ ├── proc_file_utils.cpp │ │ │ │ ├── proc_file_utils.h │ │ │ │ ├── proc_file_utils_test.cpp │ │ │ │ ├── proto.h │ │ │ │ ├── random.cpp │ │ │ │ ├── random.h │ │ │ │ ├── result.cpp │ │ │ │ ├── result.h │ │ │ │ ├── result_matchers.h │ │ │ │ ├── result_test.cpp │ │ │ │ ├── shared_fd_flag.cpp │ │ │ │ ├── shared_fd_flag.h │ │ │ │ ├── signals.cpp │ │ │ │ ├── signals.h │ │ │ │ ├── size_utils.h │ │ │ │ ├── socket2socket_proxy.cpp │ │ │ │ ├── socket2socket_proxy.h │ │ │ │ ├── subprocess.cpp │ │ │ │ ├── subprocess.h │ │ │ │ ├── subprocess_managed_stdio.cc │ │ │ │ ├── subprocess_managed_stdio.h │ │ │ │ ├── tee_logging.cpp │ │ │ │ ├── tee_logging.h │ │ │ │ ├── type_name.h │ │ │ │ ├── unix_sockets.cpp │ │ │ │ ├── unix_sockets.h │ │ │ │ ├── unix_sockets_test.cpp │ │ │ │ ├── users.cpp │ │ │ │ ├── users.h │ │ │ │ ├── uuid.cpp │ │ │ │ ├── uuid.h │ │ │ │ ├── vsock_connection.cpp │ │ │ │ ├── vsock_connection.h │ │ │ │ ├── wait_for_file.cc │ │ │ │ ├── wait_for_file.h │ │ │ │ ├── wait_for_unix_socket.cpp │ │ │ │ └── wait_for_unix_socket.h │ │ ├── host │ │ │ ├── commands │ │ │ │ ├── append_squashfs_overlay │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src │ │ │ │ │ │ └── main.rs │ │ │ │ ├── assemble_cvd │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── README.md │ │ │ │ │ ├── alloc.cc │ │ │ │ │ ├── alloc.h │ │ │ │ │ ├── assemble_cvd.cc │ │ │ │ │ ├── assemble_cvd_flags.cpp │ │ │ │ │ ├── assemble_cvd_flags.h │ │ │ │ │ ├── boot_config.cc │ │ │ │ │ ├── boot_config.h │ │ │ │ │ ├── boot_image_utils.cc │ │ │ │ │ ├── boot_image_utils.h │ │ │ │ │ ├── bootconfig_args.cpp │ │ │ │ │ ├── bootconfig_args.h │ │ │ │ │ ├── clean.cc │ │ │ │ │ ├── clean.h │ │ │ │ │ ├── create_dynamic_disk_files.cc │ │ │ │ │ ├── create_dynamic_disk_files.h │ │ │ │ │ ├── disk │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── access_kregistry.cc │ │ │ │ │ │ ├── access_kregistry.h │ │ │ │ │ │ ├── android_composite_disk_config.cc │ │ │ │ │ │ ├── android_composite_disk_config.h │ │ │ │ │ │ ├── android_efi_loader_composite_disk.cc │ │ │ │ │ │ ├── android_efi_loader_composite_disk.h │ │ │ │ │ │ ├── ap_composite_disk.cc │ │ │ │ │ │ ├── ap_composite_disk.h │ │ │ │ │ │ ├── bootloader_present.cc │ │ │ │ │ │ ├── bootloader_present.h │ │ │ │ │ │ ├── chromeos_composite_disk.cc │ │ │ │ │ │ ├── chromeos_composite_disk.h │ │ │ │ │ │ ├── chromeos_state.cc │ │ │ │ │ │ ├── chromeos_state.h │ │ │ │ │ │ ├── factory_reset_protected.cc │ │ │ │ │ │ ├── factory_reset_protected.h │ │ │ │ │ │ ├── fuchsia_composite_disk.cc │ │ │ │ │ │ ├── fuchsia_composite_disk.h │ │ │ │ │ │ ├── gem5_image_unpacker.cpp │ │ │ │ │ │ ├── gem5_image_unpacker.h │ │ │ │ │ │ ├── generate_persistent_bootconfig.cpp │ │ │ │ │ │ ├── generate_persistent_bootconfig.h │ │ │ │ │ │ ├── generate_persistent_vbmeta.cpp │ │ │ │ │ │ ├── generate_persistent_vbmeta.h │ │ │ │ │ │ ├── hwcomposer_pmem.cc │ │ │ │ │ │ ├── hwcomposer_pmem.h │ │ │ │ │ │ ├── initialize_instance_composite_disk.cc │ │ │ │ │ │ ├── initialize_instance_composite_disk.h │ │ │ │ │ │ ├── kernel_ramdisk_repacker.cpp │ │ │ │ │ │ ├── kernel_ramdisk_repacker.h │ │ │ │ │ │ ├── linux_composite_disk.cc │ │ │ │ │ │ ├── linux_composite_disk.h │ │ │ │ │ │ ├── metadata_image.cc │ │ │ │ │ │ ├── metadata_image.h │ │ │ │ │ │ ├── misc_image.cc │ │ │ │ │ │ ├── misc_image.h │ │ │ │ │ │ ├── os_composite_disk.cc │ │ │ │ │ │ ├── os_composite_disk.h │ │ │ │ │ │ ├── pflash.cc │ │ │ │ │ │ ├── pflash.h │ │ │ │ │ │ ├── pstore.cc │ │ │ │ │ │ ├── pstore.h │ │ │ │ │ │ ├── sd_card.cc │ │ │ │ │ │ ├── sd_card.h │ │ │ │ │ │ ├── vbmeta_enforce_minimum_size.cc │ │ │ │ │ │ └── vbmeta_enforce_minimum_size.h │ │ │ │ │ ├── disk_builder.cpp │ │ │ │ │ ├── disk_builder.h │ │ │ │ │ ├── disk_image_flags_vectorization.cc │ │ │ │ │ ├── disk_image_flags_vectorization.h │ │ │ │ │ ├── display.cpp │ │ │ │ │ ├── display.h │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── disk.dot │ │ │ │ │ │ ├── disk.png │ │ │ │ │ │ └── disk.svg │ │ │ │ │ ├── flag_feature.cpp │ │ │ │ │ ├── flag_feature.h │ │ │ │ │ ├── flags.cc │ │ │ │ │ ├── flags.h │ │ │ │ │ ├── flags │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── android_efi_loader.cc │ │ │ │ │ │ ├── android_efi_loader.h │ │ │ │ │ │ ├── blank_data_image_mb.cc │ │ │ │ │ │ ├── blank_data_image_mb.h │ │ │ │ │ │ ├── boot_image.cc │ │ │ │ │ │ ├── boot_image.h │ │ │ │ │ │ ├── bootloader.cc │ │ │ │ │ │ ├── bootloader.h │ │ │ │ │ │ ├── cpus.cc │ │ │ │ │ │ ├── cpus.h │ │ │ │ │ │ ├── daemon.cc │ │ │ │ │ │ ├── daemon.h │ │ │ │ │ │ ├── display_proto.cc │ │ │ │ │ │ ├── display_proto.h │ │ │ │ │ │ ├── flag_base.cc │ │ │ │ │ │ ├── flag_base.h │ │ │ │ │ │ ├── from_gflags.cc │ │ │ │ │ │ ├── from_gflags.h │ │ │ │ │ │ ├── initramfs_path.cc │ │ │ │ │ │ ├── initramfs_path.h │ │ │ │ │ │ ├── kernel_path.cc │ │ │ │ │ │ ├── kernel_path.h │ │ │ │ │ │ ├── mcu_config_path.cc │ │ │ │ │ │ ├── mcu_config_path.h │ │ │ │ │ │ ├── super_image.cc │ │ │ │ │ │ ├── super_image.h │ │ │ │ │ │ ├── system_image_dir.cc │ │ │ │ │ │ ├── system_image_dir.h │ │ │ │ │ │ ├── use_cvdalloc.cc │ │ │ │ │ │ ├── use_cvdalloc.h │ │ │ │ │ │ ├── vendor_boot_image.cc │ │ │ │ │ │ ├── vendor_boot_image.h │ │ │ │ │ │ ├── vm_manager.cc │ │ │ │ │ │ └── vm_manager.h │ │ │ │ │ ├── flags_defaults.h │ │ │ │ │ ├── graphics_flags.cc │ │ │ │ │ ├── graphics_flags.h │ │ │ │ │ ├── guest_config.cc │ │ │ │ │ ├── guest_config.h │ │ │ │ │ ├── kernel_module_parser.cc │ │ │ │ │ ├── kernel_module_parser.h │ │ │ │ │ ├── misc_info.cc │ │ │ │ │ ├── misc_info.h │ │ │ │ │ ├── network_flags.cpp │ │ │ │ │ ├── network_flags.h │ │ │ │ │ ├── proto │ │ │ │ │ │ ├── guest_config.proto │ │ │ │ │ │ └── launch_cvd.proto │ │ │ │ │ ├── resolve_instance_files.cc │ │ │ │ │ ├── resolve_instance_files.h │ │ │ │ │ ├── super_image_mixer.cc │ │ │ │ │ ├── super_image_mixer.h │ │ │ │ │ ├── touchpad.cpp │ │ │ │ │ ├── touchpad.h │ │ │ │ │ ├── unittest │ │ │ │ │ │ ├── main_test.cc │ │ │ │ │ │ └── utils_tests.cpp │ │ │ │ │ ├── vendor_dlkm_utils.cc │ │ │ │ │ └── vendor_dlkm_utils.h │ │ │ │ ├── casimir_control_server │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── casimir_control.proto │ │ │ │ │ ├── casimir_controller.cpp │ │ │ │ │ ├── casimir_controller.h │ │ │ │ │ ├── crc.cpp │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── hex.cpp │ │ │ │ │ ├── hex.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── packet_runtime.h │ │ │ │ │ └── rf_packets.h │ │ │ │ ├── console_forwarder │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── linkage.dot │ │ │ │ │ │ ├── linkage.png │ │ │ │ │ │ └── linkage.svg │ │ │ │ │ └── main.cpp │ │ │ │ ├── control_env_proxy_server │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── control_env_proxy.proto │ │ │ │ │ └── main.cpp │ │ │ │ ├── cvd │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cache │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── cache.cpp │ │ │ │ │ │ └── cache.h │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── command_request.cpp │ │ │ │ │ │ ├── command_request.h │ │ │ │ │ │ ├── command_sequence.cpp │ │ │ │ │ │ ├── command_sequence.h │ │ │ │ │ │ ├── commands │ │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ │ ├── bugreport.cpp │ │ │ │ │ │ │ ├── bugreport.h │ │ │ │ │ │ │ ├── cache.cpp │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── clear.cpp │ │ │ │ │ │ │ ├── clear.h │ │ │ │ │ │ │ ├── cmd_list.cpp │ │ │ │ │ │ │ ├── cmd_list.h │ │ │ │ │ │ │ ├── command_handler.cpp │ │ │ │ │ │ │ ├── command_handler.h │ │ │ │ │ │ │ ├── create.cpp │ │ │ │ │ │ │ ├── create.h │ │ │ │ │ │ │ ├── display.cpp │ │ │ │ │ │ │ ├── display.h │ │ │ │ │ │ │ ├── env.cpp │ │ │ │ │ │ │ ├── env.h │ │ │ │ │ │ │ ├── fetch.cpp │ │ │ │ │ │ │ ├── fetch.h │ │ │ │ │ │ │ ├── fleet.cpp │ │ │ │ │ │ │ ├── fleet.h │ │ │ │ │ │ │ ├── help.cpp │ │ │ │ │ │ │ ├── help.h │ │ │ │ │ │ │ ├── host_tool_target.cpp │ │ │ │ │ │ │ ├── host_tool_target.h │ │ │ │ │ │ │ ├── lint.cpp │ │ │ │ │ │ │ ├── lint.h │ │ │ │ │ │ │ ├── load_configs.cpp │ │ │ │ │ │ │ ├── load_configs.h │ │ │ │ │ │ │ ├── login.cpp │ │ │ │ │ │ │ ├── login.h │ │ │ │ │ │ │ ├── noop.cpp │ │ │ │ │ │ │ ├── noop.h │ │ │ │ │ │ │ ├── power_btn.cpp │ │ │ │ │ │ │ ├── power_btn.h │ │ │ │ │ │ │ ├── powerwash.cpp │ │ │ │ │ │ │ ├── powerwash.h │ │ │ │ │ │ │ ├── remove.cpp │ │ │ │ │ │ │ ├── remove.h │ │ │ │ │ │ │ ├── reset.cpp │ │ │ │ │ │ │ ├── reset.h │ │ │ │ │ │ │ ├── restart.cpp │ │ │ │ │ │ │ ├── restart.h │ │ │ │ │ │ │ ├── screen_recording.cpp │ │ │ │ │ │ │ ├── screen_recording.h │ │ │ │ │ │ │ ├── snapshot.cpp │ │ │ │ │ │ │ ├── snapshot.h │ │ │ │ │ │ │ ├── start.cpp │ │ │ │ │ │ │ ├── start.h │ │ │ │ │ │ │ ├── status.cpp │ │ │ │ │ │ │ ├── status.h │ │ │ │ │ │ │ ├── stop.cpp │ │ │ │ │ │ │ ├── stop.h │ │ │ │ │ │ │ ├── version.cpp │ │ │ │ │ │ │ └── version.h │ │ │ │ │ │ ├── frontline_parser.cpp │ │ │ │ │ │ ├── frontline_parser.h │ │ │ │ │ │ ├── frontline_parser_test.cpp │ │ │ │ │ │ ├── interruptible_terminal.cpp │ │ │ │ │ │ ├── interruptible_terminal.h │ │ │ │ │ │ ├── parser │ │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── cf_configs_common.cpp │ │ │ │ │ │ │ ├── cf_configs_common.h │ │ │ │ │ │ │ ├── cf_configs_instances.cpp │ │ │ │ │ │ │ ├── cf_configs_instances.h │ │ │ │ │ │ │ ├── cf_flags_validator.cpp │ │ │ │ │ │ │ ├── cf_flags_validator.h │ │ │ │ │ │ │ ├── cf_metrics_configs.cpp │ │ │ │ │ │ │ ├── cf_metrics_configs.h │ │ │ │ │ │ │ ├── configs_inheritance_test.cc │ │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ │ ├── adb.dot │ │ │ │ │ │ │ │ ├── adb.png │ │ │ │ │ │ │ │ ├── adb.svg │ │ │ │ │ │ │ │ ├── audio.dot │ │ │ │ │ │ │ │ ├── audio.png │ │ │ │ │ │ │ │ ├── audio.svg │ │ │ │ │ │ │ │ ├── camera.dot │ │ │ │ │ │ │ │ ├── camera.png │ │ │ │ │ │ │ │ ├── camera.svg │ │ │ │ │ │ │ │ ├── connectivity.dot │ │ │ │ │ │ │ │ ├── connectivity.png │ │ │ │ │ │ │ │ ├── connectivity.svg │ │ │ │ │ │ │ │ ├── disk.dot │ │ │ │ │ │ │ │ ├── disk.png │ │ │ │ │ │ │ │ ├── disk.svg │ │ │ │ │ │ │ │ ├── graphics.dot │ │ │ │ │ │ │ │ ├── graphics.png │ │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ │ ├── linkage.dot │ │ │ │ │ │ │ │ ├── linkage.png │ │ │ │ │ │ │ │ ├── linkage.svg │ │ │ │ │ │ │ │ ├── location.dot │ │ │ │ │ │ │ │ ├── location.png │ │ │ │ │ │ │ │ ├── location.svg │ │ │ │ │ │ │ │ ├── streaming.dot │ │ │ │ │ │ │ │ ├── streaming.png │ │ │ │ │ │ │ │ ├── streaming.svg │ │ │ │ │ │ │ │ ├── vehicle.dot │ │ │ │ │ │ │ │ ├── vehicle.png │ │ │ │ │ │ │ │ ├── vehicle.svg │ │ │ │ │ │ │ │ ├── vm.dot │ │ │ │ │ │ │ │ ├── vm.png │ │ │ │ │ │ │ │ └── vm.svg │ │ │ │ │ │ │ ├── fetch_config_parser.cpp │ │ │ │ │ │ │ ├── fetch_config_parser.h │ │ │ │ │ │ │ ├── flags_parser_test.cc │ │ │ │ │ │ │ ├── golang │ │ │ │ │ │ │ │ ├── go.mod │ │ │ │ │ │ │ │ ├── go.sum │ │ │ │ │ │ │ │ └── load_config.pb.go │ │ │ │ │ │ │ ├── instance │ │ │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ │ │ ├── boot_configs_test.cc │ │ │ │ │ │ │ │ ├── cf_boot_configs.cpp │ │ │ │ │ │ │ │ ├── cf_boot_configs.h │ │ │ │ │ │ │ │ ├── cf_connectivity_configs.cpp │ │ │ │ │ │ │ │ ├── cf_connectivity_configs.h │ │ │ │ │ │ │ │ ├── cf_disk_configs.cpp │ │ │ │ │ │ │ │ ├── cf_disk_configs.h │ │ │ │ │ │ │ │ ├── cf_graphics_configs.cpp │ │ │ │ │ │ │ │ ├── cf_graphics_configs.h │ │ │ │ │ │ │ │ ├── cf_security_configs.cpp │ │ │ │ │ │ │ │ ├── cf_security_configs.h │ │ │ │ │ │ │ │ ├── cf_streaming_configs.cpp │ │ │ │ │ │ │ │ ├── cf_streaming_configs.h │ │ │ │ │ │ │ │ ├── cf_vm_configs.cpp │ │ │ │ │ │ │ │ ├── cf_vm_configs.h │ │ │ │ │ │ │ │ ├── disk_configs_test.cc │ │ │ │ │ │ │ │ ├── graphics_configs_test.cc │ │ │ │ │ │ │ │ └── vm_configs_test.cc │ │ │ │ │ │ │ ├── launch_cvd_parser.cpp │ │ │ │ │ │ │ ├── launch_cvd_parser.h │ │ │ │ │ │ │ ├── launch_cvd_templates.cpp │ │ │ │ │ │ │ ├── launch_cvd_templates.h │ │ │ │ │ │ │ ├── load_config.proto │ │ │ │ │ │ │ ├── load_configs_parser.cpp │ │ │ │ │ │ │ ├── load_configs_parser.h │ │ │ │ │ │ │ ├── metrics_configs_test.cc │ │ │ │ │ │ │ ├── selector_parser.cpp │ │ │ │ │ │ │ ├── selector_parser.h │ │ │ │ │ │ │ ├── test_common.cc │ │ │ │ │ │ │ └── test_common.h │ │ │ │ │ │ ├── request_context.cpp │ │ │ │ │ │ ├── request_context.h │ │ │ │ │ │ ├── selector │ │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ │ ├── arguments_separator.cpp │ │ │ │ │ │ │ ├── arguments_separator.h │ │ │ │ │ │ │ ├── creation_analyzer.cpp │ │ │ │ │ │ │ ├── creation_analyzer.h │ │ │ │ │ │ │ ├── creation_analyzer_helper.cpp │ │ │ │ │ │ │ ├── creation_analyzer_helper.h │ │ │ │ │ │ │ ├── creation_analyzer_test.cpp │ │ │ │ │ │ │ ├── cvd_flags_test.cpp │ │ │ │ │ │ │ ├── host_tool_target_test.cpp │ │ │ │ │ │ │ ├── parser_ids_helper.cpp │ │ │ │ │ │ │ ├── parser_ids_helper.h │ │ │ │ │ │ │ ├── parser_ids_test.cpp │ │ │ │ │ │ │ ├── parser_names_helper.cpp │ │ │ │ │ │ │ ├── parser_names_helper.h │ │ │ │ │ │ │ ├── parser_names_test.cpp │ │ │ │ │ │ │ ├── selector.cpp │ │ │ │ │ │ │ ├── selector.h │ │ │ │ │ │ │ ├── selector_common_parser.cpp │ │ │ │ │ │ │ ├── selector_common_parser.h │ │ │ │ │ │ │ ├── selector_constants.h │ │ │ │ │ │ │ ├── selector_option_parser_utils.cpp │ │ │ │ │ │ │ ├── selector_option_parser_utils.h │ │ │ │ │ │ │ ├── start_selector_parser.cpp │ │ │ │ │ │ │ └── start_selector_parser.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── utils.cpp │ │ │ │ │ │ └── utils.h │ │ │ │ │ ├── cvd.cpp │ │ │ │ │ ├── cvd.h │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── all_handlers.dot │ │ │ │ │ │ ├── all_handlers.png │ │ │ │ │ │ ├── all_handlers.svg │ │ │ │ │ │ ├── load_config.dot │ │ │ │ │ │ ├── load_config.png │ │ │ │ │ │ └── load_config.svg │ │ │ │ │ ├── fetch │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── build_api_flags.cc │ │ │ │ │ │ ├── build_api_flags.h │ │ │ │ │ │ ├── build_strings.cc │ │ │ │ │ │ ├── build_strings.h │ │ │ │ │ │ ├── builds.h │ │ │ │ │ │ ├── credential_flags.cc │ │ │ │ │ │ ├── credential_flags.h │ │ │ │ │ │ ├── de_android_sparse.cc │ │ │ │ │ │ ├── de_android_sparse.h │ │ │ │ │ │ ├── download_flags.cc │ │ │ │ │ │ ├── download_flags.h │ │ │ │ │ │ ├── downloaders.cc │ │ │ │ │ │ ├── downloaders.h │ │ │ │ │ │ ├── downloaders_test.cpp │ │ │ │ │ │ ├── extract_image_contents.cc │ │ │ │ │ │ ├── extract_image_contents.h │ │ │ │ │ │ ├── fetch_context.cc │ │ │ │ │ │ ├── fetch_context.h │ │ │ │ │ │ ├── fetch_cvd.cc │ │ │ │ │ │ ├── fetch_cvd.h │ │ │ │ │ │ ├── fetch_cvd_parser.cc │ │ │ │ │ │ ├── fetch_cvd_parser.h │ │ │ │ │ │ ├── fetch_cvd_parser_test.cpp │ │ │ │ │ │ ├── fetch_tracer.cpp │ │ │ │ │ │ ├── fetch_tracer.h │ │ │ │ │ │ ├── get_optional.h │ │ │ │ │ │ ├── host_package.cc │ │ │ │ │ │ ├── host_package.h │ │ │ │ │ │ ├── host_pkg_migration.proto │ │ │ │ │ │ ├── host_tools_target.cc │ │ │ │ │ │ ├── host_tools_target.h │ │ │ │ │ │ ├── substitute.cc │ │ │ │ │ │ ├── substitute.h │ │ │ │ │ │ ├── target_directories.cc │ │ │ │ │ │ ├── target_directories.h │ │ │ │ │ │ ├── vector_flags.cc │ │ │ │ │ │ └── vector_flags.h │ │ │ │ │ ├── instances │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── config_path.cpp │ │ │ │ │ │ ├── config_path.h │ │ │ │ │ │ ├── cvd_persistent_data.proto │ │ │ │ │ │ ├── data_viewer.cpp │ │ │ │ │ │ ├── data_viewer.h │ │ │ │ │ │ ├── device_name.cpp │ │ │ │ │ │ ├── device_name.h │ │ │ │ │ │ ├── group_record_test.cpp │ │ │ │ │ │ ├── instance_database.cpp │ │ │ │ │ │ ├── instance_database.h │ │ │ │ │ │ ├── instance_database_helper.cpp │ │ │ │ │ │ ├── instance_database_helper.h │ │ │ │ │ │ ├── instance_database_test.cpp │ │ │ │ │ │ ├── instance_database_types.cpp │ │ │ │ │ │ ├── instance_database_types.h │ │ │ │ │ │ ├── instance_group_record.cpp │ │ │ │ │ │ ├── instance_group_record.h │ │ │ │ │ │ ├── instance_manager.cpp │ │ │ │ │ │ ├── instance_manager.h │ │ │ │ │ │ ├── instance_record.cpp │ │ │ │ │ │ ├── instance_record.h │ │ │ │ │ │ ├── instance_record_test.cpp │ │ │ │ │ │ ├── lock │ │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ │ ├── instance_lock.cpp │ │ │ │ │ │ │ ├── instance_lock.h │ │ │ │ │ │ │ ├── lock_file.cpp │ │ │ │ │ │ │ └── lock_file.h │ │ │ │ │ │ ├── operator_client.cpp │ │ │ │ │ │ ├── operator_client.h │ │ │ │ │ │ ├── run_cvd_proc_collector.cpp │ │ │ │ │ │ ├── run_cvd_proc_collector.h │ │ │ │ │ │ ├── status_fetcher.cpp │ │ │ │ │ │ ├── status_fetcher.h │ │ │ │ │ │ ├── stop.cpp │ │ │ │ │ │ └── stop.h │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ └── is_enabled.h │ │ │ │ │ ├── unittests │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── autogen_ids_test.cpp │ │ │ │ │ │ │ ├── basic_test.cpp │ │ │ │ │ │ │ ├── clear_test.cpp │ │ │ │ │ │ │ ├── cmd_runner.cpp │ │ │ │ │ │ │ ├── cmd_runner.h │ │ │ │ │ │ │ ├── collect_flags_test.cpp │ │ │ │ │ │ │ ├── help_test.cpp │ │ │ │ │ │ │ ├── instance_ids_test.cpp │ │ │ │ │ │ │ ├── snapshot_test.cpp │ │ │ │ │ │ │ ├── snapshot_test_helper.cpp │ │ │ │ │ │ │ ├── utils.cpp │ │ │ │ │ │ │ └── utils.h │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── common.cpp │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── flags_collector.cpp │ │ │ │ │ │ ├── flags_collector.h │ │ │ │ │ │ ├── interrupt_listener.cpp │ │ │ │ │ │ ├── interrupt_listener.h │ │ │ │ │ │ ├── subprocess_waiter.cpp │ │ │ │ │ │ └── subprocess_waiter.h │ │ │ │ │ └── version │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── version.cpp │ │ │ │ │ │ └── version.h │ │ │ │ ├── cvd_env │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── main.cc │ │ │ │ ├── cvd_import_locations │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── main.cc │ │ │ │ │ └── unittest │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── gpx_parser_test.cc │ │ │ │ │ │ └── kml_parser_test.cc │ │ │ │ ├── cvd_send_id_disclosure │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── cellular_identifier_disclosure_command_builder.cc │ │ │ │ │ ├── cellular_identifier_disclosure_command_builder.h │ │ │ │ │ ├── main.cc │ │ │ │ │ └── unittest │ │ │ │ │ │ └── cellular_identifier_disclosure_command_builder_test.cc │ │ │ │ ├── cvd_send_sms │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── pdu_format_builder.cc │ │ │ │ │ ├── pdu_format_builder.h │ │ │ │ │ ├── sms_sender.cc │ │ │ │ │ ├── sms_sender.h │ │ │ │ │ └── unittest │ │ │ │ │ │ ├── pdu_format_builder_test.cc │ │ │ │ │ │ └── sms_sender_test.cc │ │ │ │ ├── cvd_update_location │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── main.cc │ │ │ │ ├── cvd_update_security_algorithm │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── unittest │ │ │ │ │ │ └── update_security_algorithm_command_builder_test.cc │ │ │ │ │ ├── update_security_algorithm_command_builder.cc │ │ │ │ │ └── update_security_algorithm_command_builder.h │ │ │ │ ├── cvdalloc │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── cvdalloc.cpp │ │ │ │ │ ├── cvdalloc.h │ │ │ │ │ ├── interface.cpp │ │ │ │ │ ├── interface.h │ │ │ │ │ ├── privilege.cpp │ │ │ │ │ ├── privilege.h │ │ │ │ │ ├── sem.cpp │ │ │ │ │ └── sem.h │ │ │ │ ├── defaults │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── defaults.cpp │ │ │ │ ├── display │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── main.cpp │ │ │ │ ├── echo_server │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── echo.proto │ │ │ │ │ └── main.cpp │ │ │ │ ├── extract_ikconfig │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── extract-ikconfig.sh │ │ │ │ ├── extract_vmlinux │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── extract-vmlinux.sh │ │ │ │ ├── gnss_grpc_proxy │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── linkage.dot │ │ │ │ │ │ ├── linkage.png │ │ │ │ │ │ └── linkage.svg │ │ │ │ │ ├── gnss_grpc_proxy.cpp │ │ │ │ │ └── gnss_grpc_proxy.proto │ │ │ │ ├── health │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── health.cpp │ │ │ │ ├── host_bugreport │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── main.cc │ │ │ │ ├── kernel_log_monitor │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── kernel_log_server.cc │ │ │ │ │ ├── kernel_log_server.h │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── utils.cc │ │ │ │ │ └── utils.h │ │ │ │ ├── log_tee │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── log_tee.cpp │ │ │ │ ├── logcat_receiver │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── main.cpp │ │ │ │ ├── metrics │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── clearcut_log_parser.sh │ │ │ │ │ ├── clearcut_protos.cc │ │ │ │ │ ├── clearcut_protos.h │ │ │ │ │ ├── events.cc │ │ │ │ │ ├── events.h │ │ │ │ │ ├── host_receiver.cc │ │ │ │ │ ├── host_receiver.h │ │ │ │ │ ├── metrics.cc │ │ │ │ │ ├── send.cc │ │ │ │ │ ├── send.h │ │ │ │ │ ├── utils.cc │ │ │ │ │ ├── utils.h │ │ │ │ │ └── utils_tests.cpp │ │ │ │ ├── metrics_launcher │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── metrics_launcher.cpp │ │ │ │ ├── mkenvimage_slim │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── mkenvimage_slim.cc │ │ │ │ ├── modem_simulator │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── call_service.cpp │ │ │ │ │ ├── call_service.h │ │ │ │ │ ├── cf_device_config.cpp │ │ │ │ │ ├── channel_monitor.cpp │ │ │ │ │ ├── channel_monitor.h │ │ │ │ │ ├── client.cc │ │ │ │ │ ├── client.h │ │ │ │ │ ├── command_parser.cpp │ │ │ │ │ ├── command_parser.h │ │ │ │ │ ├── data_service.cpp │ │ │ │ │ ├── data_service.h │ │ │ │ │ ├── device_config.h │ │ │ │ │ ├── etc │ │ │ │ │ │ └── files │ │ │ │ │ │ │ ├── iccprofile_for_sim0.xml │ │ │ │ │ │ │ ├── iccprofile_for_sim0_for_CtsCarrierApiTestCases.xml │ │ │ │ │ │ │ └── numeric_operator.xml │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── misc_service.cpp │ │ │ │ │ ├── misc_service.h │ │ │ │ │ ├── modem_service.cpp │ │ │ │ │ ├── modem_service.h │ │ │ │ │ ├── modem_simulator.cpp │ │ │ │ │ ├── modem_simulator.h │ │ │ │ │ ├── modem_technology.h │ │ │ │ │ ├── network_service.cpp │ │ │ │ │ ├── network_service.h │ │ │ │ │ ├── network_service_constants.h │ │ │ │ │ ├── nvram_config.cpp │ │ │ │ │ ├── nvram_config.h │ │ │ │ │ ├── pdu_parser.cpp │ │ │ │ │ ├── pdu_parser.h │ │ │ │ │ ├── sim_service.cpp │ │ │ │ │ ├── sim_service.h │ │ │ │ │ ├── sms_service.cpp │ │ │ │ │ ├── sms_service.h │ │ │ │ │ ├── stk_service.cpp │ │ │ │ │ ├── stk_service.h │ │ │ │ │ ├── sup_service.cpp │ │ │ │ │ ├── sup_service.h │ │ │ │ │ ├── thread_looper.cpp │ │ │ │ │ ├── thread_looper.h │ │ │ │ │ ├── unittest │ │ │ │ │ │ ├── command_parser_test.cpp │ │ │ │ │ │ ├── iccfile.h │ │ │ │ │ │ ├── pdu_parser_test.cpp │ │ │ │ │ │ └── service_test.cpp │ │ │ │ │ └── virtual_modem_simulator.h │ │ │ │ ├── openwrt_control_server │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── openwrt_control.proto │ │ │ │ ├── powerbtn_cvd │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── powerbtn_cvd.cc │ │ │ │ ├── powerwash_cvd │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── powerwash_cvd.cc │ │ │ │ ├── process_restarter │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── parser.cc │ │ │ │ │ └── parser.h │ │ │ │ ├── process_sandboxer │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── credentialed_unix_server.cpp │ │ │ │ │ ├── credentialed_unix_server.h │ │ │ │ │ ├── logs.cpp │ │ │ │ │ ├── logs.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── pidfd.cpp │ │ │ │ │ ├── pidfd.h │ │ │ │ │ ├── policies.cpp │ │ │ │ │ ├── policies.h │ │ │ │ │ ├── policies │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── adb_connector.cpp │ │ │ │ │ │ ├── assemble_cvd.cpp │ │ │ │ │ │ ├── avbtool.cpp │ │ │ │ │ │ ├── baseline.cpp │ │ │ │ │ │ ├── casimir.cpp │ │ │ │ │ │ ├── casimir_control_server.cpp │ │ │ │ │ │ ├── cf_vhost_user_input.cpp │ │ │ │ │ │ ├── control_env_proxy_server.cpp │ │ │ │ │ │ ├── cvd_internal_start.cpp │ │ │ │ │ │ ├── echo_server.cpp │ │ │ │ │ │ ├── gnss_grpc_proxy.cpp │ │ │ │ │ │ ├── kernel_log_monitor.cpp │ │ │ │ │ │ ├── log_tee.cpp │ │ │ │ │ │ ├── logcat_receiver.cpp │ │ │ │ │ │ ├── metrics.cpp │ │ │ │ │ │ ├── mkenvimage_slim.cpp │ │ │ │ │ │ ├── modem_simulator.cpp │ │ │ │ │ │ ├── netsimd.cpp │ │ │ │ │ │ ├── newfs_msdos.cpp │ │ │ │ │ │ ├── no_policy.cpp │ │ │ │ │ │ ├── openwrt_control_server.cpp │ │ │ │ │ │ ├── operator_proxy.cpp │ │ │ │ │ │ ├── process_restarter.cpp │ │ │ │ │ │ ├── run_cvd.cpp │ │ │ │ │ │ ├── screen_recording_server.cpp │ │ │ │ │ │ ├── secure_env.cpp │ │ │ │ │ │ ├── simg2img.cpp │ │ │ │ │ │ ├── socket_vsock_proxy.cpp │ │ │ │ │ │ ├── tcp_connector.cpp │ │ │ │ │ │ ├── tombstone_receiver.cpp │ │ │ │ │ │ ├── vhost_device_vsock.cpp │ │ │ │ │ │ ├── webrtc.cpp │ │ │ │ │ │ ├── webrtc_operator.cpp │ │ │ │ │ │ ├── wmediumd.cpp │ │ │ │ │ │ └── wmediumd_gen_config.cpp │ │ │ │ │ ├── poll_callback.cpp │ │ │ │ │ ├── poll_callback.h │ │ │ │ │ ├── proxy_common.cpp │ │ │ │ │ ├── proxy_common.h │ │ │ │ │ ├── sandbox_manager.cpp │ │ │ │ │ ├── sandbox_manager.h │ │ │ │ │ ├── sandboxer_proxy.cpp │ │ │ │ │ ├── signal_fd.cpp │ │ │ │ │ └── signal_fd.h │ │ │ │ ├── record_cvd │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── record_cvd.cc │ │ │ │ ├── restart_cvd │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── restart_cvd.cc │ │ │ │ ├── run_cvd │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── README.md │ │ │ │ │ ├── boot_state_machine.cc │ │ │ │ │ ├── boot_state_machine.h │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── linkage.dot │ │ │ │ │ │ ├── linkage.png │ │ │ │ │ │ └── linkage.svg │ │ │ │ │ ├── launch │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── auto_cmd.h │ │ │ │ │ │ ├── automotive_proxy.cpp │ │ │ │ │ │ ├── automotive_proxy.h │ │ │ │ │ │ ├── bluetooth_connector.cpp │ │ │ │ │ │ ├── bluetooth_connector.h │ │ │ │ │ │ ├── casimir.cpp │ │ │ │ │ │ ├── casimir.h │ │ │ │ │ │ ├── casimir_control_server.cpp │ │ │ │ │ │ ├── casimir_control_server.h │ │ │ │ │ │ ├── console_forwarder.cpp │ │ │ │ │ │ ├── console_forwarder.h │ │ │ │ │ │ ├── control_env_proxy_server.cpp │ │ │ │ │ │ ├── control_env_proxy_server.h │ │ │ │ │ │ ├── cvdalloc.cpp │ │ │ │ │ │ ├── cvdalloc.h │ │ │ │ │ │ ├── echo_server.cpp │ │ │ │ │ │ ├── echo_server.h │ │ │ │ │ │ ├── enable_multitouch.cpp │ │ │ │ │ │ ├── enable_multitouch.h │ │ │ │ │ │ ├── gnss_grpc_proxy.cpp │ │ │ │ │ │ ├── gnss_grpc_proxy.h │ │ │ │ │ │ ├── grpc_socket_creator.cpp │ │ │ │ │ │ ├── grpc_socket_creator.h │ │ │ │ │ │ ├── input_connections_provider.h │ │ │ │ │ │ ├── kernel_log_monitor.cpp │ │ │ │ │ │ ├── kernel_log_monitor.h │ │ │ │ │ │ ├── log_tee_creator.cpp │ │ │ │ │ │ ├── log_tee_creator.h │ │ │ │ │ │ ├── logcat_receiver.cpp │ │ │ │ │ │ ├── logcat_receiver.h │ │ │ │ │ │ ├── mcu.cpp │ │ │ │ │ │ ├── mcu.h │ │ │ │ │ │ ├── metrics.cpp │ │ │ │ │ │ ├── metrics.h │ │ │ │ │ │ ├── modem.cpp │ │ │ │ │ │ ├── modem.h │ │ │ │ │ │ ├── netsim_server.cpp │ │ │ │ │ │ ├── netsim_server.h │ │ │ │ │ │ ├── nfc_connector.cpp │ │ │ │ │ │ ├── nfc_connector.h │ │ │ │ │ │ ├── open_wrt.cpp │ │ │ │ │ │ ├── open_wrt.h │ │ │ │ │ │ ├── openwrt_control_server.cpp │ │ │ │ │ │ ├── openwrt_control_server.h │ │ │ │ │ │ ├── pica.cpp │ │ │ │ │ │ ├── pica.h │ │ │ │ │ │ ├── root_canal.cpp │ │ │ │ │ │ ├── root_canal.h │ │ │ │ │ │ ├── screen_recording_server.cpp │ │ │ │ │ │ ├── screen_recording_server.h │ │ │ │ │ │ ├── secure_env.cpp │ │ │ │ │ │ ├── secure_env.h │ │ │ │ │ │ ├── sensors_simulator.cpp │ │ │ │ │ │ ├── sensors_simulator.h │ │ │ │ │ │ ├── sensors_socket_pair.cpp │ │ │ │ │ │ ├── sensors_socket_pair.h │ │ │ │ │ │ ├── snapshot_control_files.cpp │ │ │ │ │ │ ├── snapshot_control_files.h │ │ │ │ │ │ ├── streamer.cpp │ │ │ │ │ │ ├── streamer.h │ │ │ │ │ │ ├── ti50_emulator.cpp │ │ │ │ │ │ ├── ti50_emulator.h │ │ │ │ │ │ ├── tombstone_receiver.cpp │ │ │ │ │ │ ├── tombstone_receiver.h │ │ │ │ │ │ ├── uwb_connector.cpp │ │ │ │ │ │ ├── uwb_connector.h │ │ │ │ │ │ ├── vhal_proxy_server.cpp │ │ │ │ │ │ ├── vhal_proxy_server.h │ │ │ │ │ │ ├── vhost_device_vsock.cpp │ │ │ │ │ │ ├── vhost_device_vsock.h │ │ │ │ │ │ ├── vhost_input_devices.cpp │ │ │ │ │ │ ├── webrtc_controller.cpp │ │ │ │ │ │ ├── webrtc_controller.h │ │ │ │ │ │ ├── wmediumd_server.cpp │ │ │ │ │ │ └── wmediumd_server.h │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── reporting.cpp │ │ │ │ │ ├── reporting.h │ │ │ │ │ ├── server_loop.cpp │ │ │ │ │ ├── server_loop.h │ │ │ │ │ ├── server_loop_impl.cpp │ │ │ │ │ ├── server_loop_impl.h │ │ │ │ │ ├── server_loop_impl_snapshot.cpp │ │ │ │ │ ├── server_loop_impl_webrtc.cpp │ │ │ │ │ ├── validate.cpp │ │ │ │ │ └── validate.h │ │ │ │ ├── screen_recording_server │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── screen_recording.proto │ │ │ │ ├── secure_env │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composite_serialization.cpp │ │ │ │ │ ├── composite_serialization.h │ │ │ │ │ ├── confui_sign_server.cpp │ │ │ │ │ ├── confui_sign_server.h │ │ │ │ │ ├── device_tpm.cpp │ │ │ │ │ ├── device_tpm.h │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── linkage.dot │ │ │ │ │ │ ├── linkage.png │ │ │ │ │ │ └── linkage.svg │ │ │ │ │ ├── encrypted_serializable.cpp │ │ │ │ │ ├── encrypted_serializable.h │ │ │ │ │ ├── encrypted_serializable_test.cpp │ │ │ │ │ ├── gatekeeper_responder.cpp │ │ │ │ │ ├── gatekeeper_responder.h │ │ │ │ │ ├── gatekeeper_storage.h │ │ │ │ │ ├── hmac_serializable.cpp │ │ │ │ │ ├── hmac_serializable.h │ │ │ │ │ ├── in_process_tpm.cpp │ │ │ │ │ ├── in_process_tpm.h │ │ │ │ │ ├── json_serializable.cpp │ │ │ │ │ ├── json_serializable.h │ │ │ │ │ ├── keymaster_responder.cpp │ │ │ │ │ ├── keymaster_responder.h │ │ │ │ │ ├── oemlock │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── oemlock.cpp │ │ │ │ │ │ ├── oemlock.h │ │ │ │ │ │ ├── oemlock_responder.cpp │ │ │ │ │ │ └── oemlock_responder.h │ │ │ │ │ ├── primary_key_builder.cpp │ │ │ │ │ ├── primary_key_builder.h │ │ │ │ │ ├── proxy_keymaster_context.h │ │ │ │ │ ├── rust │ │ │ │ │ │ ├── clock.rs │ │ │ │ │ │ ├── ffi.rs │ │ │ │ │ │ ├── kmr_ta.h │ │ │ │ │ │ ├── lib.rs │ │ │ │ │ │ ├── sdd.rs │ │ │ │ │ │ ├── storage.proto │ │ │ │ │ │ ├── tests.rs │ │ │ │ │ │ └── tpm.rs │ │ │ │ │ ├── secure_env_not_windows_main.cpp │ │ │ │ │ ├── secure_env_only_oemlock.cpp │ │ │ │ │ ├── secure_env_windows_lib.cpp │ │ │ │ │ ├── secure_env_windows_lib.h │ │ │ │ │ ├── secure_env_windows_main.cpp │ │ │ │ │ ├── soft_gatekeeper.h │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── insecure_json_storage.cpp │ │ │ │ │ │ ├── insecure_json_storage.h │ │ │ │ │ │ ├── storage.cpp │ │ │ │ │ │ ├── storage.h │ │ │ │ │ │ ├── tpm_storage.cpp │ │ │ │ │ │ └── tpm_storage.h │ │ │ │ │ ├── suspend_resume_handler.cpp │ │ │ │ │ ├── suspend_resume_handler.h │ │ │ │ │ ├── test_tpm.cpp │ │ │ │ │ ├── test_tpm.h │ │ │ │ │ ├── tpm.h │ │ │ │ │ ├── tpm_attestation_record.cpp │ │ │ │ │ ├── tpm_attestation_record.h │ │ │ │ │ ├── tpm_auth.cpp │ │ │ │ │ ├── tpm_auth.h │ │ │ │ │ ├── tpm_commands.cpp │ │ │ │ │ ├── tpm_commands.h │ │ │ │ │ ├── tpm_encrypt_decrypt.cpp │ │ │ │ │ ├── tpm_encrypt_decrypt.h │ │ │ │ │ ├── tpm_ffi.cpp │ │ │ │ │ ├── tpm_ffi.h │ │ │ │ │ ├── tpm_gatekeeper.cpp │ │ │ │ │ ├── tpm_gatekeeper.h │ │ │ │ │ ├── tpm_hmac.cpp │ │ │ │ │ ├── tpm_hmac.h │ │ │ │ │ ├── tpm_key_blob_maker.cpp │ │ │ │ │ ├── tpm_key_blob_maker.h │ │ │ │ │ ├── tpm_keymaster_context.cpp │ │ │ │ │ ├── tpm_keymaster_context.h │ │ │ │ │ ├── tpm_keymaster_enforcement.cpp │ │ │ │ │ ├── tpm_keymaster_enforcement.h │ │ │ │ │ ├── tpm_random_source.cpp │ │ │ │ │ ├── tpm_random_source.h │ │ │ │ │ ├── tpm_remote_provisioning_context.cpp │ │ │ │ │ ├── tpm_remote_provisioning_context.h │ │ │ │ │ ├── tpm_resource_manager.cpp │ │ │ │ │ ├── tpm_resource_manager.h │ │ │ │ │ ├── tpm_serialize.cpp │ │ │ │ │ ├── tpm_serialize.h │ │ │ │ │ ├── worker_thread_loop_body.cpp │ │ │ │ │ └── worker_thread_loop_body.h │ │ │ │ ├── sensors_simulator │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── sensors_hal_proxy.cpp │ │ │ │ │ ├── sensors_hal_proxy.h │ │ │ │ │ ├── sensors_simulator.cpp │ │ │ │ │ └── sensors_simulator.h │ │ │ │ ├── snapshot_util_cvd │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── parse.cc │ │ │ │ │ ├── parse.h │ │ │ │ │ ├── snapshot_taker.cc │ │ │ │ │ └── snapshot_taker.h │ │ │ │ ├── start │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── README.md │ │ │ │ │ ├── filesystem_explorer.cc │ │ │ │ │ ├── filesystem_explorer.h │ │ │ │ │ ├── flag_forwarder.cc │ │ │ │ │ ├── flag_forwarder.h │ │ │ │ │ ├── linkage.dot │ │ │ │ │ ├── linkage.png │ │ │ │ │ ├── linkage.svg │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── override_bool_arg.cpp │ │ │ │ │ ├── override_bool_arg.h │ │ │ │ │ ├── start_flags.cpp │ │ │ │ │ ├── start_flags.h │ │ │ │ │ ├── validate_metrics_confirmation.cpp │ │ │ │ │ └── validate_metrics_confirmation.h │ │ │ │ ├── status │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── main.cc │ │ │ │ ├── stop │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── main.cc │ │ │ │ ├── tcp_connector │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── main.cpp │ │ │ │ ├── tombstone_receiver │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── main.cpp │ │ │ │ └── vhost_user_input │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ ├── device_specs │ │ │ │ │ ├── gamepad.json │ │ │ │ │ ├── keyboard.json │ │ │ │ │ ├── mouse.json │ │ │ │ │ ├── multi_touchpad_template.json │ │ │ │ │ ├── multi_touchscreen_template.json │ │ │ │ │ ├── rotary_wheel.json │ │ │ │ │ ├── single_touchpad_template.json │ │ │ │ │ ├── single_touchscreen_template.json │ │ │ │ │ └── switches.json │ │ │ │ │ └── src │ │ │ │ │ ├── buf_reader.rs │ │ │ │ │ ├── inherited_fd.rs │ │ │ │ │ ├── main.rs │ │ │ │ │ ├── vhu_input.rs │ │ │ │ │ └── vio_input.rs │ │ │ ├── cvd_test_configs │ │ │ │ ├── end_to_end_test │ │ │ │ │ ├── multi │ │ │ │ │ │ └── TC1.json │ │ │ │ │ └── single │ │ │ │ │ │ ├── TC_auto.json │ │ │ │ │ │ ├── TC_foldable.json │ │ │ │ │ │ ├── TC_go.json │ │ │ │ │ │ ├── TC_phone.json │ │ │ │ │ │ ├── TC_slim.json │ │ │ │ │ │ ├── TC_tablet.json │ │ │ │ │ │ ├── TC_tv.json │ │ │ │ │ │ └── TC_wear.json │ │ │ │ ├── local_tests │ │ │ │ │ ├── README.md │ │ │ │ │ ├── local_bootconfig.json │ │ │ │ │ ├── local_mixed_1.json │ │ │ │ │ ├── local_mixed_2.json │ │ │ │ │ ├── local_mixed_3_fetch_host.json │ │ │ │ │ ├── local_single.json │ │ │ │ │ ├── local_single_nohost.json │ │ │ │ │ └── local_vsock_isolation.json │ │ │ │ ├── main_phone-main_watch.json │ │ │ │ ├── main_phone.json │ │ │ │ ├── mvp_features │ │ │ │ │ ├── graphics │ │ │ │ │ │ └── displays │ │ │ │ │ │ │ ├── TC1.json │ │ │ │ │ │ │ ├── TC2.json │ │ │ │ │ │ │ └── TC3.json │ │ │ │ │ ├── security │ │ │ │ │ │ └── guest_enforce_security │ │ │ │ │ │ │ ├── TC1.json │ │ │ │ │ │ │ └── TC2.json │ │ │ │ │ └── vm │ │ │ │ │ │ ├── cpus │ │ │ │ │ │ ├── TC1.json │ │ │ │ │ │ └── TC2.json │ │ │ │ │ │ ├── custom_actions │ │ │ │ │ │ └── TC1.json │ │ │ │ │ │ ├── enable_sandbox │ │ │ │ │ │ ├── TC1.json │ │ │ │ │ │ ├── TC2.json │ │ │ │ │ │ └── TC3.json │ │ │ │ │ │ ├── memory_mb │ │ │ │ │ │ ├── TC1.json │ │ │ │ │ │ └── TC2.json │ │ │ │ │ │ ├── setupwizard_mode │ │ │ │ │ │ ├── TC1.json │ │ │ │ │ │ ├── TC2.json │ │ │ │ │ │ ├── TC3.json │ │ │ │ │ │ └── TC4.json │ │ │ │ │ │ └── vm_manager │ │ │ │ │ │ ├── TC1.json │ │ │ │ │ │ ├── TC2.json │ │ │ │ │ │ └── TC3.json │ │ │ │ ├── templates_inheritance │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── TC1.json │ │ │ │ │ │ └── TC2.json │ │ │ │ │ ├── multi │ │ │ │ │ │ ├── TC1.json │ │ │ │ │ │ └── TC2.json │ │ │ │ │ └── single │ │ │ │ │ │ ├── TC_auto.json │ │ │ │ │ │ ├── TC_foldable.json │ │ │ │ │ │ ├── TC_go.json │ │ │ │ │ │ ├── TC_phone.json │ │ │ │ │ │ ├── TC_slim.json │ │ │ │ │ │ ├── TC_tablet.json │ │ │ │ │ │ ├── TC_tv.json │ │ │ │ │ │ └── TC_wear.json │ │ │ │ ├── tm_phone-tm_watch-main_host_pkg.json │ │ │ │ └── validation_failures │ │ │ │ │ ├── field_name_error.json │ │ │ │ │ └── type_error.json │ │ │ ├── example_custom_actions │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── README.md │ │ │ │ ├── custom_action_config.json │ │ │ │ └── main.cpp │ │ │ ├── frontend │ │ │ │ ├── adb_connector │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── README.md │ │ │ │ │ ├── adb_connection_maintainer.cpp │ │ │ │ │ ├── adb_connection_maintainer.h │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── linkage.dot │ │ │ │ │ │ ├── linkage.png │ │ │ │ │ │ └── linkage.svg │ │ │ │ │ └── main.cpp │ │ │ │ ├── operator_proxy │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── main.cpp │ │ │ │ ├── webrtc │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── README.md │ │ │ │ │ ├── adb_handler.cpp │ │ │ │ │ ├── adb_handler.h │ │ │ │ │ ├── audio_handler.cpp │ │ │ │ │ ├── audio_handler.h │ │ │ │ │ ├── bluetooth_handler.cpp │ │ │ │ │ ├── bluetooth_handler.h │ │ │ │ │ ├── client_server.cpp │ │ │ │ │ ├── client_server.h │ │ │ │ │ ├── connection_observer.cpp │ │ │ │ │ ├── connection_observer.h │ │ │ │ │ ├── cvd_video_frame_buffer.cpp │ │ │ │ │ ├── cvd_video_frame_buffer.h │ │ │ │ │ ├── display_handler.cpp │ │ │ │ │ ├── display_handler.h │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── graphics.dot │ │ │ │ │ │ ├── graphics.png │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ ├── interface.dot │ │ │ │ │ │ ├── interface.png │ │ │ │ │ │ └── interface.svg │ │ │ │ │ ├── gpx_locations_handler.cpp │ │ │ │ │ ├── gpx_locations_handler.h │ │ │ │ │ ├── html_client │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── client.html │ │ │ │ │ │ ├── controls.css │ │ │ │ │ │ ├── custom.css │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── adb.js │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ ├── cf_webrtc.js │ │ │ │ │ │ │ ├── controls.js │ │ │ │ │ │ │ ├── gamepad.js │ │ │ │ │ │ │ ├── keyboard.js │ │ │ │ │ │ │ ├── location.js │ │ │ │ │ │ │ ├── mouse.js │ │ │ │ │ │ │ ├── rootcanal.js │ │ │ │ │ │ │ └── touch.js │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── kernel_log_events_handler.cpp │ │ │ │ │ ├── kernel_log_events_handler.h │ │ │ │ │ ├── kml_locations_handler.cpp │ │ │ │ │ ├── kml_locations_handler.h │ │ │ │ │ ├── libcommon │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── audio_device.cpp │ │ │ │ │ │ ├── audio_device.h │ │ │ │ │ │ ├── audio_source.h │ │ │ │ │ │ ├── connection_controller.cpp │ │ │ │ │ │ ├── connection_controller.h │ │ │ │ │ │ ├── peer_connection_utils.cpp │ │ │ │ │ │ ├── peer_connection_utils.h │ │ │ │ │ │ ├── peer_signaling_handler.h │ │ │ │ │ │ ├── utils.cpp │ │ │ │ │ │ ├── utils.h │ │ │ │ │ │ ├── vp8only_encoder_factory.cpp │ │ │ │ │ │ └── vp8only_encoder_factory.h │ │ │ │ │ ├── libdevice │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── audio_frame_buffer.h │ │ │ │ │ │ ├── audio_sink.h │ │ │ │ │ │ ├── audio_track_source_impl.cpp │ │ │ │ │ │ ├── audio_track_source_impl.h │ │ │ │ │ │ ├── camera_controller.h │ │ │ │ │ │ ├── camera_streamer.cpp │ │ │ │ │ │ ├── camera_streamer.h │ │ │ │ │ │ ├── client_handler.cpp │ │ │ │ │ │ ├── client_handler.h │ │ │ │ │ │ ├── connection_observer.h │ │ │ │ │ │ ├── data_channels.cpp │ │ │ │ │ │ ├── data_channels.h │ │ │ │ │ │ ├── gamepad.cpp │ │ │ │ │ │ ├── gamepad.h │ │ │ │ │ │ ├── keyboard.cpp │ │ │ │ │ │ ├── keyboard.h │ │ │ │ │ │ ├── lights_observer.cpp │ │ │ │ │ │ ├── lights_observer.h │ │ │ │ │ │ ├── local_recorder.cpp │ │ │ │ │ │ ├── local_recorder.h │ │ │ │ │ │ ├── recording_manager.cpp │ │ │ │ │ │ ├── recording_manager.h │ │ │ │ │ │ ├── server_connection.cpp │ │ │ │ │ │ ├── server_connection.h │ │ │ │ │ │ ├── streamer.cpp │ │ │ │ │ │ ├── streamer.h │ │ │ │ │ │ ├── video_sink.h │ │ │ │ │ │ ├── video_track_source_impl.cpp │ │ │ │ │ │ └── video_track_source_impl.h │ │ │ │ │ ├── location_handler.cpp │ │ │ │ │ ├── location_handler.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── screenshot_handler.cpp │ │ │ │ │ ├── screenshot_handler.h │ │ │ │ │ ├── sensors_handler.cpp │ │ │ │ │ ├── sensors_handler.h │ │ │ │ │ ├── webrtc_command_channel.cpp │ │ │ │ │ ├── webrtc_command_channel.h │ │ │ │ │ └── webrtc_commands.proto │ │ │ │ └── webrtc_operator │ │ │ │ │ └── constants │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── signaling_constants.h │ │ │ ├── graphics │ │ │ │ └── vulkan │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── vulkan_icd.json.tmpl │ │ │ ├── graphics_detector │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── egl.cpp │ │ │ │ ├── egl.h │ │ │ │ ├── egl_funcs.h │ │ │ │ ├── expected.h │ │ │ │ ├── gles.cpp │ │ │ │ ├── gles.h │ │ │ │ ├── gles_funcs.h │ │ │ │ ├── graphics_detector.cpp │ │ │ │ ├── graphics_detector.h │ │ │ │ ├── graphics_detector.proto │ │ │ │ ├── graphics_detector_gl.cpp │ │ │ │ ├── graphics_detector_gl.h │ │ │ │ ├── graphics_detector_vk.cpp │ │ │ │ ├── graphics_detector_vk.h │ │ │ │ ├── graphics_detector_vk_external_memory_host.cpp │ │ │ │ ├── graphics_detector_vk_external_memory_host.h │ │ │ │ ├── graphics_detector_vk_precision_qualifiers_on_yuv_samplers.cpp │ │ │ │ ├── graphics_detector_vk_precision_qualifiers_on_yuv_samplers.h │ │ │ │ ├── image.cpp │ │ │ │ ├── image.h │ │ │ │ ├── lib.cpp │ │ │ │ ├── lib.h │ │ │ │ ├── main.cpp │ │ │ │ ├── shaders │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── blit_texture.frag │ │ │ │ │ ├── blit_texture.frag.inl │ │ │ │ │ ├── blit_texture.frag.spv │ │ │ │ │ ├── blit_texture.vert │ │ │ │ │ ├── blit_texture.vert.inl │ │ │ │ │ ├── blit_texture.vert.spv │ │ │ │ │ ├── blit_texture_highp.frag │ │ │ │ │ ├── blit_texture_highp.frag.inl │ │ │ │ │ ├── blit_texture_highp.frag.spv │ │ │ │ │ ├── blit_texture_lowp.frag │ │ │ │ │ ├── blit_texture_lowp.frag.inl │ │ │ │ │ ├── blit_texture_lowp.frag.spv │ │ │ │ │ ├── blit_texture_mediump.frag │ │ │ │ │ ├── blit_texture_mediump.frag.inl │ │ │ │ │ ├── blit_texture_mediump.frag.spv │ │ │ │ │ ├── generate_shader_embed.cpp │ │ │ │ │ └── generate_shader_embeds.sh │ │ │ │ ├── subprocess.cpp │ │ │ │ ├── subprocess.h │ │ │ │ ├── vulkan.cpp │ │ │ │ └── vulkan.h │ │ │ └── libs │ │ │ │ ├── allocd │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── request.h │ │ │ │ ├── test │ │ │ │ │ └── client.cpp │ │ │ │ ├── utils.cpp │ │ │ │ └── utils.h │ │ │ │ ├── audio_connector │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── buffers.cpp │ │ │ │ ├── buffers.h │ │ │ │ ├── commands.cpp │ │ │ │ ├── commands.h │ │ │ │ ├── server.cpp │ │ │ │ ├── server.h │ │ │ │ └── shm_layout.h │ │ │ │ ├── avb │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── avb.cpp │ │ │ │ └── avb.h │ │ │ │ ├── command_util │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── runner │ │ │ │ │ ├── defs.cc │ │ │ │ │ ├── defs.h │ │ │ │ │ └── run_cvd.proto │ │ │ │ ├── snapshot_utils.cc │ │ │ │ ├── snapshot_utils.h │ │ │ │ ├── util.cc │ │ │ │ └── util.h │ │ │ │ ├── config │ │ │ │ ├── .clang-tidy │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── adb │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── adb.h │ │ │ │ │ ├── config.cpp │ │ │ │ │ ├── data.cpp │ │ │ │ │ ├── flags.cpp │ │ │ │ │ ├── launch.cpp │ │ │ │ │ ├── strings.cpp │ │ │ │ │ └── test.cpp │ │ │ │ ├── ap_boot_flow.h │ │ │ │ ├── boot_flow.h │ │ │ │ ├── config_constants.h │ │ │ │ ├── config_flag.cpp │ │ │ │ ├── config_flag.h │ │ │ │ ├── config_fragment.h │ │ │ │ ├── config_utils.cpp │ │ │ │ ├── config_utils.h │ │ │ │ ├── custom_actions.cpp │ │ │ │ ├── custom_actions.h │ │ │ │ ├── cuttlefish_config.cpp │ │ │ │ ├── cuttlefish_config.h │ │ │ │ ├── cuttlefish_config_environment.cpp │ │ │ │ ├── cuttlefish_config_instance.cpp │ │ │ │ ├── data_image.cpp │ │ │ │ ├── data_image.h │ │ │ │ ├── defaults │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── defaults.cc │ │ │ │ │ └── defaults.h │ │ │ │ ├── display.cpp │ │ │ │ ├── display.h │ │ │ │ ├── esp.cpp │ │ │ │ ├── esp.h │ │ │ │ ├── external_network_mode.cc │ │ │ │ ├── external_network_mode.h │ │ │ │ ├── fastboot │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── config.cpp │ │ │ │ │ ├── data.cpp │ │ │ │ │ ├── fastboot.h │ │ │ │ │ ├── flags.cpp │ │ │ │ │ └── launch.cpp │ │ │ │ ├── fetched_archive.cc │ │ │ │ ├── fetched_archive.h │ │ │ │ ├── fetcher_config.cpp │ │ │ │ ├── fetcher_config.h │ │ │ │ ├── file_source.cc │ │ │ │ ├── file_source.h │ │ │ │ ├── guest_hwui_renderer.cc │ │ │ │ ├── guest_hwui_renderer.h │ │ │ │ ├── guest_os.cc │ │ │ │ ├── guest_os.h │ │ │ │ ├── guest_renderer_preload.cc │ │ │ │ ├── guest_renderer_preload.h │ │ │ │ ├── host_tools_version.cpp │ │ │ │ ├── host_tools_version.h │ │ │ │ ├── instance_nums.cpp │ │ │ │ ├── instance_nums.h │ │ │ │ ├── kernel_args.cpp │ │ │ │ ├── kernel_args.h │ │ │ │ ├── known_paths.cpp │ │ │ │ ├── known_paths.h │ │ │ │ ├── logging.cpp │ │ │ │ ├── logging.h │ │ │ │ ├── openwrt_args.cpp │ │ │ │ ├── openwrt_args.h │ │ │ │ ├── secure_hals.cpp │ │ │ │ ├── secure_hals.h │ │ │ │ ├── touchpad.cpp │ │ │ │ ├── touchpad.h │ │ │ │ ├── vmm_mode.cc │ │ │ │ └── vmm_mode.h │ │ │ │ ├── confui │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Shield.ttf │ │ │ │ ├── confui_cbor.cc │ │ │ │ ├── confui_cbor.h │ │ │ │ ├── generate_font_cc.sh │ │ │ │ ├── host_mode_ctrl.h │ │ │ │ ├── host_renderer.cc │ │ │ │ ├── host_renderer.h │ │ │ │ ├── host_server.cc │ │ │ │ ├── host_server.h │ │ │ │ ├── host_utils.cc │ │ │ │ ├── host_utils.h │ │ │ │ ├── host_virtual_input.cc │ │ │ │ ├── host_virtual_input.h │ │ │ │ ├── layouts │ │ │ │ │ ├── fonts.h │ │ │ │ │ └── layout.h │ │ │ │ ├── secure_input.cc │ │ │ │ ├── secure_input.h │ │ │ │ ├── server_common.cc │ │ │ │ ├── server_common.h │ │ │ │ ├── session.cc │ │ │ │ ├── session.h │ │ │ │ ├── sign.cc │ │ │ │ ├── sign.h │ │ │ │ └── sign_utils.h │ │ │ │ ├── control_env │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── grpc_service_handler.cc │ │ │ │ └── grpc_service_handler.h │ │ │ │ ├── directories │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── xdg.cpp │ │ │ │ └── xdg.h │ │ │ │ ├── feature │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── command_source.h │ │ │ │ ├── feature.cpp │ │ │ │ ├── feature.h │ │ │ │ ├── inject.h │ │ │ │ └── kernel_log_pipe_provider.h │ │ │ │ ├── image_aggregator │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── cdisk_spec.proto │ │ │ │ ├── composite_disk.cc │ │ │ │ ├── composite_disk.h │ │ │ │ ├── disk_image.h │ │ │ │ ├── gpt.h │ │ │ │ ├── gpt_type_guid.cc │ │ │ │ ├── gpt_type_guid.h │ │ │ │ ├── image_aggregator.cc │ │ │ │ ├── image_aggregator.h │ │ │ │ ├── image_from_file.cc │ │ │ │ ├── image_from_file.h │ │ │ │ ├── mbr.cc │ │ │ │ ├── mbr.h │ │ │ │ ├── qcow2.cc │ │ │ │ ├── qcow2.h │ │ │ │ ├── raw.cc │ │ │ │ ├── raw.h │ │ │ │ ├── sparse_image.cc │ │ │ │ └── sparse_image.h │ │ │ │ ├── input_connector │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── event_buffer.cpp │ │ │ │ ├── event_buffer.h │ │ │ │ ├── input_connection.cpp │ │ │ │ ├── input_connection.h │ │ │ │ ├── input_connector.cpp │ │ │ │ ├── input_connector.h │ │ │ │ ├── input_devices.cpp │ │ │ │ └── input_devices.h │ │ │ │ ├── location │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── GnssClient.cpp │ │ │ │ ├── GnssClient.h │ │ │ │ ├── GpsFix.h │ │ │ │ ├── GpxParser.cpp │ │ │ │ ├── GpxParser.h │ │ │ │ ├── KmlParser.cpp │ │ │ │ ├── KmlParser.h │ │ │ │ ├── StringParse.cpp │ │ │ │ └── StringParse.h │ │ │ │ ├── metrics │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── event_type.cc │ │ │ │ ├── event_type.h │ │ │ │ ├── guest_metrics.cc │ │ │ │ ├── guest_metrics.h │ │ │ │ ├── metrics_configs.h │ │ │ │ ├── metrics_conversion.cc │ │ │ │ ├── metrics_conversion.h │ │ │ │ ├── metrics_defs.h │ │ │ │ ├── metrics_orchestration.cc │ │ │ │ ├── metrics_orchestration.h │ │ │ │ ├── metrics_receiver.cc │ │ │ │ ├── metrics_receiver.h │ │ │ │ ├── metrics_transmitter.cc │ │ │ │ ├── metrics_transmitter.h │ │ │ │ ├── metrics_writer.cc │ │ │ │ ├── metrics_writer.h │ │ │ │ ├── session_id.cc │ │ │ │ └── session_id.h │ │ │ │ ├── msg_queue │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── README.md │ │ │ │ ├── msg_queue.cc │ │ │ │ └── msg_queue.h │ │ │ │ ├── process_monitor │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── process_monitor.cc │ │ │ │ └── process_monitor.h │ │ │ │ ├── screen_connector │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── composition_manager.cpp │ │ │ │ ├── composition_manager.h │ │ │ │ ├── ring_buffer_manager.cpp │ │ │ │ ├── ring_buffer_manager.h │ │ │ │ ├── screen_connector.h │ │ │ │ ├── screen_connector_common.cc │ │ │ │ ├── screen_connector_common.h │ │ │ │ ├── screen_connector_ctrl.h │ │ │ │ ├── screen_connector_multiplexer.h │ │ │ │ ├── screen_connector_queue.h │ │ │ │ ├── video_frame_buffer.h │ │ │ │ ├── wayland_screen_connector.cpp │ │ │ │ └── wayland_screen_connector.h │ │ │ │ ├── screen_recording_controls │ │ │ │ ├── BUILD │ │ │ │ ├── screen_recording_controls.cc │ │ │ │ └── screen_recording_controls.h │ │ │ │ ├── version │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── build_version.h.in │ │ │ │ └── replace_with_stamp_values.sh │ │ │ │ ├── vhal_proxy_server │ │ │ │ ├── BUILD.bazel │ │ │ │ └── vhal_proxy_server_eth_addr.h │ │ │ │ ├── vm_manager │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── crosvm_builder.cpp │ │ │ │ ├── crosvm_builder.h │ │ │ │ ├── crosvm_cpu.cpp │ │ │ │ ├── crosvm_cpu.h │ │ │ │ ├── crosvm_display_controller.cpp │ │ │ │ ├── crosvm_display_controller.h │ │ │ │ ├── crosvm_manager.cpp │ │ │ │ ├── crosvm_manager.h │ │ │ │ ├── gem5_manager.cpp │ │ │ │ ├── gem5_manager.h │ │ │ │ ├── host_configuration.cpp │ │ │ │ ├── host_configuration.h │ │ │ │ ├── pci.cpp │ │ │ │ ├── pci.h │ │ │ │ ├── qemu_manager.cpp │ │ │ │ ├── qemu_manager.h │ │ │ │ ├── vhost_user.h │ │ │ │ ├── vhost_user_block.cpp │ │ │ │ ├── vm_manager.cpp │ │ │ │ └── vm_manager.h │ │ │ │ ├── wayland │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── wayland_compositor.cpp │ │ │ │ ├── wayland_compositor.h │ │ │ │ ├── wayland_dmabuf.cpp │ │ │ │ ├── wayland_dmabuf.h │ │ │ │ ├── wayland_seat.cpp │ │ │ │ ├── wayland_seat.h │ │ │ │ ├── wayland_server.cpp │ │ │ │ ├── wayland_server.h │ │ │ │ ├── wayland_server_callbacks.h │ │ │ │ ├── wayland_shell.cpp │ │ │ │ ├── wayland_shell.h │ │ │ │ ├── wayland_subcompositor.cpp │ │ │ │ ├── wayland_subcompositor.h │ │ │ │ ├── wayland_surface.cpp │ │ │ │ ├── wayland_surface.h │ │ │ │ ├── wayland_surfaces.cpp │ │ │ │ ├── wayland_surfaces.h │ │ │ │ ├── wayland_utils.h │ │ │ │ ├── wayland_virtio_gpu_metadata.cpp │ │ │ │ └── wayland_virtio_gpu_metadata.h │ │ │ │ ├── web │ │ │ │ ├── .clang-tidy │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── android_build.cc │ │ │ │ ├── android_build.h │ │ │ │ ├── android_build_api.cpp │ │ │ │ ├── android_build_api.h │ │ │ │ ├── android_build_string.cpp │ │ │ │ ├── android_build_string.h │ │ │ │ ├── android_build_string_tests.cpp │ │ │ │ ├── android_build_url.cpp │ │ │ │ ├── android_build_url.h │ │ │ │ ├── build_api.h │ │ │ │ ├── build_api_zip.cc │ │ │ │ ├── build_api_zip.h │ │ │ │ ├── caching_build_api.cpp │ │ │ │ ├── caching_build_api.h │ │ │ │ ├── cas │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── cas_downloader.cpp │ │ │ │ │ ├── cas_downloader.h │ │ │ │ │ ├── cas_downloader_test.cpp │ │ │ │ │ ├── cas_flags.cc │ │ │ │ │ ├── cas_flags.h │ │ │ │ │ └── cas_flags_test.cpp │ │ │ │ ├── chrome_os_build_string.cpp │ │ │ │ ├── chrome_os_build_string.h │ │ │ │ ├── credential_source.cc │ │ │ │ ├── credential_source.h │ │ │ │ ├── http_client │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── curl_global_init.cpp │ │ │ │ │ ├── curl_global_init.h │ │ │ │ │ ├── curl_http_client.cc │ │ │ │ │ ├── curl_http_client.h │ │ │ │ │ ├── fake_http_client.cc │ │ │ │ │ ├── fake_http_client.h │ │ │ │ │ ├── fake_http_client_test.cc │ │ │ │ │ ├── http_client.cc │ │ │ │ │ ├── http_client.h │ │ │ │ │ ├── http_file.cc │ │ │ │ │ ├── http_file.h │ │ │ │ │ ├── http_json.cc │ │ │ │ │ ├── http_json.h │ │ │ │ │ ├── http_string.cc │ │ │ │ │ ├── http_string.h │ │ │ │ │ ├── retrying_http_client.cc │ │ │ │ │ ├── retrying_http_client.h │ │ │ │ │ ├── scrub_secrets.cc │ │ │ │ │ ├── scrub_secrets.h │ │ │ │ │ ├── scrub_secrets_test.cc │ │ │ │ │ ├── url_escape.cc │ │ │ │ │ └── url_escape.h │ │ │ │ ├── luci_build_api.cpp │ │ │ │ ├── luci_build_api.h │ │ │ │ ├── oauth2_consent.cpp │ │ │ │ └── oauth2_consent.h │ │ │ │ └── zip │ │ │ │ ├── .clang-tidy │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── buffered_zip_source.cc │ │ │ │ ├── buffered_zip_source.h │ │ │ │ ├── buffered_zip_source_test.cc │ │ │ │ ├── cached_zip_source.cc │ │ │ │ ├── cached_zip_source.h │ │ │ │ ├── cached_zip_source_test.cc │ │ │ │ ├── disjoint_range_set.cc │ │ │ │ ├── disjoint_range_set.h │ │ │ │ ├── disjoint_range_set.proto │ │ │ │ ├── disjoint_range_set_test.cc │ │ │ │ ├── lazily_loaded_file.cc │ │ │ │ ├── lazily_loaded_file.h │ │ │ │ ├── libzip_cc │ │ │ │ ├── .clang-tidy │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── archive.cc │ │ │ │ ├── archive.h │ │ │ │ ├── error.cc │ │ │ │ ├── error.h │ │ │ │ ├── managed.h │ │ │ │ ├── readable_source.cc │ │ │ │ ├── readable_source.h │ │ │ │ ├── seekable_source.cc │ │ │ │ ├── seekable_source.h │ │ │ │ ├── source_callback.h │ │ │ │ ├── stat.h │ │ │ │ ├── writable_source.cc │ │ │ │ └── writable_source.h │ │ │ │ ├── remote_zip.cc │ │ │ │ ├── remote_zip.h │ │ │ │ ├── remote_zip_test.cc │ │ │ │ ├── serialize_disjoint_range_set.cc │ │ │ │ ├── serialize_disjoint_range_set.h │ │ │ │ ├── serialize_disjoint_range_set_test.cc │ │ │ │ ├── zip_builder.cc │ │ │ │ ├── zip_copy.cc │ │ │ │ ├── zip_copy.h │ │ │ │ ├── zip_copy_test.cc │ │ │ │ ├── zip_file.cc │ │ │ │ ├── zip_file.h │ │ │ │ ├── zip_string.cc │ │ │ │ └── zip_string.h │ │ └── package │ │ │ ├── BUILD.bazel │ │ │ └── rules.bzl │ ├── external_proto │ │ ├── BUILD.bazel │ │ ├── cf_flags.proto │ │ ├── cf_guest.proto │ │ ├── cf_host.proto │ │ ├── cf_log.proto │ │ ├── cf_metrics_event.proto │ │ ├── cf_metrics_event_v2.proto │ │ ├── clientanalytics.proto │ │ └── log_source_enum.proto │ ├── fastboot │ │ ├── BUILD.bazel │ │ ├── bootimg_utils.cpp │ │ ├── bootimg_utils.h │ │ ├── constants.h │ │ ├── diagnose_usb │ │ │ ├── diagnose_usb.cpp │ │ │ └── include │ │ │ │ └── diagnose_usb.h │ │ ├── fastboot.cpp │ │ ├── fastboot.h │ │ ├── fastboot_driver.cpp │ │ ├── fastboot_driver.h │ │ ├── fastboot_driver_interface.h │ │ ├── filesystem.cpp │ │ ├── filesystem.h │ │ ├── fs.cpp │ │ ├── fs.h │ │ ├── libstorage_literals │ │ │ └── storage_literals │ │ │ │ └── storage_literals.h │ │ ├── main.cpp │ │ ├── result.h │ │ ├── socket.cpp │ │ ├── socket.h │ │ ├── storage.cpp │ │ ├── storage.h │ │ ├── super_flash_helper.cpp │ │ ├── super_flash_helper.h │ │ ├── task.cpp │ │ ├── task.h │ │ ├── tcp.cpp │ │ ├── tcp.h │ │ ├── transport.h │ │ ├── udp.cpp │ │ ├── udp.h │ │ ├── usb.h │ │ ├── usb_linux.cpp │ │ ├── util.cpp │ │ ├── util.h │ │ ├── vendor_boot_img_utils.cpp │ │ ├── vendor_boot_img_utils.h │ │ └── version │ │ │ ├── build │ │ │ └── version.h │ │ │ └── platform_tools_version.h │ ├── fec │ │ ├── BUILD.bazel │ │ ├── libcrypto_utils │ │ │ └── include │ │ │ │ └── crypto_utils │ │ │ │ └── android_pubkey.h │ │ ├── libfec │ │ │ ├── avb_utils.cpp │ │ │ ├── avb_utils.h │ │ │ ├── avb_utils_stub.cpp │ │ │ ├── fec_open.cpp │ │ │ ├── fec_private.h │ │ │ ├── fec_process.cpp │ │ │ ├── fec_read.cpp │ │ │ ├── fec_verity.cpp │ │ │ └── include │ │ │ │ └── fec │ │ │ │ ├── ecc.h │ │ │ │ └── io.h │ │ ├── libutils │ │ │ └── include │ │ │ │ └── utils │ │ │ │ └── Compat.h │ │ ├── squashfs_utils │ │ │ └── squashfs_utils.h │ │ └── verity │ │ │ └── fec │ │ │ ├── image.cpp │ │ │ ├── image.h │ │ │ └── main.cpp │ ├── fruit-config-base.h │ ├── gen_ffi_header.sh │ ├── internal_user_log.proto │ ├── libbase │ │ ├── BUILD.bazel │ │ ├── cmsg.cpp │ │ ├── errors_unix.cpp │ │ ├── file.cpp │ │ ├── hex.cpp │ │ ├── include │ │ │ ├── android-base │ │ │ │ ├── cmsg.h │ │ │ │ ├── collections.h │ │ │ │ ├── endian.h │ │ │ │ ├── errno_restorer.h │ │ │ │ ├── errors.h │ │ │ │ ├── expected.h │ │ │ │ ├── file.h │ │ │ │ ├── format.h │ │ │ │ ├── hex.h │ │ │ │ ├── logging.h │ │ │ │ ├── macros.h │ │ │ │ ├── mapped_file.h │ │ │ │ ├── memory.h │ │ │ │ ├── no_destructor.h │ │ │ │ ├── off64_t.h │ │ │ │ ├── parsebool.h │ │ │ │ ├── parsedouble.h │ │ │ │ ├── parseint.h │ │ │ │ ├── parsenetaddress.h │ │ │ │ ├── properties.h │ │ │ │ ├── result.h │ │ │ │ ├── scopeguard.h │ │ │ │ ├── stringprintf.h │ │ │ │ ├── strings.h │ │ │ │ ├── thread_annotations.h │ │ │ │ ├── threads.h │ │ │ │ ├── unique_fd.h │ │ │ │ └── utf8.h │ │ │ └── logging_splitters.h │ │ ├── logging.cpp │ │ ├── mapped_file.cpp │ │ ├── parsebool.cpp │ │ ├── parsenetaddress.cpp │ │ ├── posix_strerror_r.cpp │ │ ├── properties.cpp │ │ ├── stringprintf.cpp │ │ ├── strings.cpp │ │ └── threads.cpp │ ├── libext4_utils │ │ ├── BUILD.bazel │ │ ├── ext4_sb.cpp │ │ ├── ext4_utils.cpp │ │ ├── helpers.h │ │ ├── include │ │ │ └── ext4_utils │ │ │ │ ├── ext4.h │ │ │ │ ├── ext4_extents.h │ │ │ │ ├── ext4_kernel_headers.h │ │ │ │ ├── ext4_sb.h │ │ │ │ ├── ext4_utils.h │ │ │ │ ├── jbd2.h │ │ │ │ └── xattr.h │ │ ├── mke2fs.conf │ │ └── mkuserimg_mke2fs.py │ ├── libffi │ │ ├── linux-arm64 │ │ │ ├── BUILD.bazel │ │ │ ├── ffi.h │ │ │ ├── fficonfig.h │ │ │ └── ffitarget.h │ │ └── linux-x86 │ │ │ ├── BUILD.bazel │ │ │ ├── ffi.h │ │ │ ├── fficonfig.h │ │ │ └── ffitarget.h │ ├── libsparse │ │ └── BUILD.bazel │ ├── linux_headers │ │ ├── BUILD.bazel │ │ ├── uapi │ │ │ └── linux │ │ │ │ ├── if_link.h │ │ │ │ ├── netlink.h │ │ │ │ └── nl80211.h │ │ └── update.sh │ ├── mkbootfs │ │ ├── BUILD.bazel │ │ └── mkbootfs.cpp │ ├── teeui │ │ └── libteeui │ │ │ ├── BUILD.bazel │ │ │ ├── include │ │ │ └── teeui │ │ │ │ ├── button.h │ │ │ │ ├── common_message_types.h │ │ │ │ ├── error.h │ │ │ │ ├── font_rendering.h │ │ │ │ ├── label.h │ │ │ │ ├── log.h │ │ │ │ ├── msg_formatting.h │ │ │ │ ├── static_vec.h │ │ │ │ ├── utf8range.h │ │ │ │ └── utils.h │ │ │ ├── prebuilt │ │ │ └── localization │ │ │ │ ├── Android.bp │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── ConfirmationUITranslations-test.cpp │ │ │ │ ├── ConfirmationUITranslations.cpp │ │ │ │ └── include │ │ │ │ └── teeui │ │ │ │ └── localization │ │ │ │ └── ConfirmationUITranslations.h │ │ │ └── src │ │ │ ├── button.cpp │ │ │ ├── font_rendering.cpp │ │ │ ├── label.cpp │ │ │ └── utils.cpp │ ├── toolchain │ │ ├── BUILD.bazel │ │ ├── cc_toolchain_config.bzl │ │ ├── cc_toolchain_macro.bzl │ │ └── file_detector.bzl │ └── tools │ │ └── lint │ │ ├── BUILD.bazel │ │ └── linters.bzl ├── debian │ ├── cf_defaults │ ├── changelog │ ├── control │ ├── copyright │ ├── cuttlefish-base.cuttlefish-host-resources.default │ ├── cuttlefish-base.cuttlefish-host-resources.init │ ├── cuttlefish-base.install │ ├── cuttlefish-base.links │ ├── cuttlefish-base.lintian-overrides │ ├── cuttlefish-base.postinst │ ├── cuttlefish-base.udev │ ├── cuttlefish-defaults.install │ ├── cuttlefish-defaults.postrm │ ├── cuttlefish-defaults.preinst │ ├── cuttlefish-integration.cuttlefish-defaults.init │ ├── cuttlefish-integration.displace │ ├── cuttlefish-integration.install │ ├── cuttlefish-integration.postinst │ ├── cuttlefish-integration.udev │ ├── rules │ └── source │ │ ├── format │ │ └── lintian-overrides ├── host │ ├── deploy │ │ └── capability_query.py │ └── packages │ │ ├── cuttlefish-base │ │ └── etc │ │ │ ├── NetworkManager │ │ │ └── conf.d │ │ │ │ └── 99-cuttlefish.conf │ │ │ ├── modules-load.d │ │ │ └── cuttlefish-common.conf │ │ │ └── security │ │ │ └── limits.d │ │ │ └── 1_cuttlefish.conf │ │ └── cuttlefish-integration │ │ └── etc │ │ ├── default │ │ └── instance_configs.cfg.template │ │ ├── modprobe.d │ │ └── cuttlefish-integration.conf │ │ ├── rsyslog.d │ │ └── 91-cuttlefish.conf │ │ └── ssh │ │ └── sshd_config.cuttlefish ├── install-nodejs.sh ├── setup-nodejs-env.sh └── stamp_helper.sh ├── cuttlefish-integration-gigabyte-arm64 ├── README ├── debian │ ├── README.Debian │ ├── README.source │ ├── changelog │ ├── clean │ ├── control │ ├── copyright │ ├── cuttlefish-integration-gigabyte-arm64.cron.d │ ├── cuttlefish-integration-gigabyte-arm64.dirs │ ├── cuttlefish-integration-gigabyte-arm64.docs │ ├── cuttlefish-integration-gigabyte-arm64.install │ ├── cuttlefish-integration-gigabyte-arm64.postinst │ ├── cuttlefish-integration-gigabyte-arm64.prerm │ ├── rules │ └── source │ │ └── format ├── etc │ ├── ntpsec │ │ └── ntp.d │ │ │ └── google-time-server.conf │ └── security │ │ └── limits.d │ │ └── 95-cuttlefish-integration-gigabyte-arm64-nofile.conf ├── update_version_info.sh └── usr │ ├── lib │ ├── NetworkManager │ │ └── conf.d │ │ │ └── cuttlefish-integration-gigabyte-arm64.conf │ └── modules-load.d │ │ └── cuttlefish-integration-gigabyte-arm64.conf │ └── share │ └── cuttlefish-integration-gigabyte-arm64-use-google-ntp ├── docker ├── Dockerfile ├── README.md ├── WORKSPACE ├── guest │ └── run_services.sh └── image-builder.sh ├── docs ├── HostToolsMigration.md └── index.html ├── e2etests ├── BUILD.bazel ├── MODULE.bazel ├── README.md ├── WORKSPACE ├── cvd │ ├── BUILD.bazel │ ├── boot_tests.bzl │ ├── cvd_command_boot_test.sh │ ├── cvd_load_boot_test.sh │ ├── environment_specs │ │ ├── aosp_main_x64_phone.json │ │ ├── aosp_main_x64_phone_x2.json │ │ └── git_main_x64_phone.json │ └── launch_cvd_boot_test.sh ├── go.mod ├── go.sum └── orchestration │ ├── artifacts │ ├── BUILD.bazel │ ├── def.bzl │ └── fetch_aosp_artifact.sh │ ├── bugreport_test │ ├── BUILD.bazel │ └── main_test.go │ ├── common │ ├── BUILD.bazel │ └── common.go │ ├── create_from_images_zip_test │ ├── BUILD.bazel │ └── main_test.go │ ├── create_local_image_test │ ├── BUILD.bazel │ └── main_test.go │ ├── create_single_instance_test │ ├── BUILD.bazel │ ├── def.bzl │ └── main_test.go │ ├── create_with_gce_credentials_test │ ├── BUILD.bazel │ └── main_test.go │ ├── create_with_gce_metadata_credentials_test │ ├── BUILD.bazel │ └── main_test.go │ ├── journal_gatewayd_test │ ├── BUILD.bazel │ └── main_test.go │ ├── powerbtn_test │ ├── BUILD.bazel │ └── main_test.go │ ├── powerwash_test │ ├── BUILD.bazel │ └── main_test.go │ ├── reset_test │ ├── BUILD.bazel │ └── main_test.go │ ├── screen_recording_test │ ├── BUILD.bazel │ └── main_test.go │ ├── snapshot_test │ ├── BUILD.bazel │ └── main_test.go │ └── verify_access_token_test │ ├── BUILD.bazel │ └── main_test.go ├── frontend ├── .gitignore ├── build-webui.sh ├── debian │ ├── changelog │ ├── control │ ├── copyright │ ├── cuttlefish-orchestration.cuttlefish-host_orchestrator.default │ ├── cuttlefish-orchestration.cuttlefish-host_orchestrator.init │ ├── cuttlefish-orchestration.install │ ├── cuttlefish-orchestration.links │ ├── cuttlefish-orchestration.lintian-overrides │ ├── cuttlefish-orchestration.postinst │ ├── cuttlefish-user.cuttlefish-operator.default │ ├── cuttlefish-user.cuttlefish-operator.init │ ├── cuttlefish-user.install │ ├── cuttlefish-user.links │ ├── cuttlefish-user.lintian-overrides │ ├── cuttlefish-user.postinst │ ├── rules │ └── source │ │ ├── format │ │ └── lintian-overrides ├── host │ └── packages │ │ └── cuttlefish-orchestration │ │ └── etc │ │ └── nginx │ │ └── sites-available │ │ └── cuttlefish-orchestration.conf ├── install-nodejs.sh ├── setup-nodejs-env.sh └── src │ ├── goutil │ ├── host_orchestrator │ ├── BUILD.bazel │ ├── MODULE.bazel │ ├── README.md │ ├── WORKSPACE │ ├── api │ │ └── v1 │ │ │ ├── BUILD.bazel │ │ │ └── messages.go │ ├── docs │ │ └── swagger.yaml │ ├── go.mod │ ├── go.sum │ ├── go_repositories.bzl │ ├── main.go │ └── orchestrator │ │ ├── BUILD.bazel │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── createcvdaction.go │ │ ├── createcvdaction_test.go │ │ ├── createcvdbugreportaction.go │ │ ├── createsnapshotaction.go │ │ ├── cvd │ │ ├── BUILD.bazel │ │ ├── cvd.go │ │ ├── cvd_test.go │ │ └── output │ │ │ ├── BUILD.bazel │ │ │ └── output.go │ │ ├── debug │ │ ├── BUILD.bazel │ │ └── debug.go │ │ ├── displayaddaction.go │ │ ├── displaylistaction.go │ │ ├── displayremoveaction.go │ │ ├── displayscreenshotaction.go │ │ ├── exec │ │ ├── BUILD.bazel │ │ └── exec.go │ │ ├── execcvdcommandaction.go │ │ ├── fetchartifactsaction.go │ │ ├── getscreenrecordingaction.go │ │ ├── imagedirectories.go │ │ ├── imagedirectories_test.go │ │ ├── instancemanager.go │ │ ├── instancemanager_test.go │ │ ├── listcvdsaction.go │ │ ├── listcvdsaction_test.go │ │ ├── listscreenrecordingsaction.go │ │ ├── operation.go │ │ ├── operation_test.go │ │ ├── resetcvdaction.go │ │ ├── startcvdaction.go │ │ ├── testing │ │ ├── BUILD.bazel │ │ └── testing.go │ │ ├── userartifacts.go │ │ ├── userartifacts_test.go │ │ ├── validation.go │ │ └── validation_test.go │ ├── libhoclient │ ├── BUILD.bazel │ ├── MODULE.bazel │ ├── WORKSPACE │ ├── deps.bzl │ ├── fake_host_orchestrator_client.go │ ├── fake_host_orchestrator_client_test.go │ ├── go.mod │ ├── go.sum │ ├── host_orchestrator_client.go │ ├── host_orchestrator_client_test.go │ ├── httputils.go │ ├── httputils_test.go │ └── webrtcclient │ │ ├── BUILD.bazel │ │ ├── client.go │ │ ├── client_test.go │ │ └── types.go │ ├── liboperator │ ├── BUILD.bazel │ ├── MODULE.bazel │ ├── WORKSPACE │ ├── api │ │ └── v1 │ │ │ ├── BUILD.bazel │ │ │ └── messages.go │ ├── go.mod │ ├── go.sum │ ├── go_repositories.bzl │ ├── operator │ │ ├── BUILD.bazel │ │ ├── clients.go │ │ ├── clients_test.go │ │ ├── devices.go │ │ ├── devices_test.go │ │ ├── errors.go │ │ ├── jsonservers.go │ │ ├── operator.go │ │ └── utils.go │ ├── protobuf │ │ ├── BUILD.bazel │ │ ├── control_env_proxy.pb.go │ │ ├── control_env_proxy.proto │ │ └── control_env_proxy_grpc.pb.go │ └── staticcheck.conf │ ├── operator │ ├── go.mod │ ├── go.sum │ ├── intercept │ │ └── js │ │ │ ├── server_connector.d.ts │ │ │ └── server_connector.js │ ├── main.go │ └── webui │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── .prettierrc.js │ │ ├── README.md │ │ ├── angular.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── device-info-interface.ts │ │ │ ├── device-item.interface.ts │ │ │ ├── device-pane │ │ │ │ ├── device-pane.component.html │ │ │ │ ├── device-pane.component.scss │ │ │ │ ├── device-pane.component.spec.ts │ │ │ │ └── device-pane.component.ts │ │ │ ├── device.service.spec.ts │ │ │ ├── device.service.ts │ │ │ ├── displays.service.spec.ts │ │ │ ├── displays.service.ts │ │ │ ├── safe-device-url.pipe.spec.ts │ │ │ ├── safe-device-url.pipe.ts │ │ │ └── view-pane │ │ │ │ ├── view-pane.component.html │ │ │ │ ├── view-pane.component.scss │ │ │ │ ├── view-pane.component.spec.ts │ │ │ │ └── view-pane.component.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ └── protocutil ├── staging ├── common │ └── libs │ │ └── security │ │ ├── gatekeeper_channel.h │ │ ├── gatekeeper_channel_sharedfd.cpp │ │ ├── gatekeeper_channel_sharedfd.h │ │ ├── gatekeeper_channel_windows.cpp │ │ ├── gatekeeper_channel_windows.h │ │ ├── keymaster_channel.cpp │ │ ├── keymaster_channel.h │ │ ├── keymaster_channel_sharedfd.cpp │ │ ├── keymaster_channel_sharedfd.h │ │ ├── keymaster_channel_test.cpp │ │ ├── keymaster_channel_windows.cpp │ │ └── keymaster_channel_windows.h └── host │ └── commands │ └── vhal_proxy_server │ ├── debug │ └── VhalProxyServerCmd.cpp │ ├── vhal_proxy_server.cpp │ └── vsockinfo.h └── tools ├── baseimage ├── README.md ├── cmd │ ├── create_gce_x86_64_fixed_kernel │ │ └── main.go │ ├── create_gce_x86_64_image │ │ └── main.go │ ├── gce_install_cuttlefish_packages │ │ └── main.go │ └── gce_validate_image │ │ └── main.go ├── go.mod ├── go.sum └── pkg │ └── gce │ ├── helper.go │ └── scripts │ ├── create_base_image_main.sh │ ├── fill_available_disk_space.sh │ ├── install.sh │ ├── install_kernel_main.sh │ ├── install_nvidia.sh │ ├── mount_attached_disk.sh │ ├── scripts.go │ └── validate_cuttlefish_image.sh ├── buildutils ├── build_package.sh ├── build_packages.sh ├── cw │ ├── Containerfile │ ├── README.md │ └── entrypoint.sh └── installbazel.sh ├── minimerge ├── .gitignore ├── cuttlefish_args.txt ├── cuttlefish_import_metadata.txt ├── import.sh ├── libbase_args.txt └── main.cpp └── testutils ├── cw ├── Containerfile ├── README.md ├── fake_gce_metadata_nginx.conf └── setup.service ├── prepare_host.sh └── runcvde2etests.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.clang-format -------------------------------------------------------------------------------- /.config/cache-config.env: -------------------------------------------------------------------------------- 1 | CACHE_VERSION=v1 2 | BAZEL_REMOTE_CACHE="https://storage.googleapis.com/android-cuttlefish-cache" 3 | 4 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/actions/build-debian-packages/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/actions/build-debian-packages/action.yaml -------------------------------------------------------------------------------- /.github/actions/deploy-debian-packages/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/actions/deploy-debian-packages/action.yaml -------------------------------------------------------------------------------- /.github/actions/deploy-docker-image/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/actions/deploy-docker-image/action.yaml -------------------------------------------------------------------------------- /.github/actions/mount-bazel-cache/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/actions/mount-bazel-cache/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-cvd-unit-tests/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/actions/run-cvd-unit-tests/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-cw-sharded-e2e-test/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/actions/run-cw-sharded-e2e-test/action.yaml -------------------------------------------------------------------------------- /.github/workflows/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/workflows/documentation.yaml -------------------------------------------------------------------------------- /.github/workflows/postsubmit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/workflows/postsubmit.yaml -------------------------------------------------------------------------------- /.github/workflows/presubmit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/workflows/presubmit.yaml -------------------------------------------------------------------------------- /.github/workflows/scheduled-cache-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/workflows/scheduled-cache-update.yaml -------------------------------------------------------------------------------- /.github/workflows/stable-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/workflows/stable-channel.yaml -------------------------------------------------------------------------------- /.github/workflows/unstable-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/workflows/unstable-channel.yaml -------------------------------------------------------------------------------- /.github/workflows/update-cache-and-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.github/workflows/update-cache-and-deployment.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/continuous.cfg: -------------------------------------------------------------------------------- 1 | presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.kokoro/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/.kokoro/presubmit.sh -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/README.md -------------------------------------------------------------------------------- /base/cvd/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/.bazelrc -------------------------------------------------------------------------------- /base/cvd/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/.clang-tidy -------------------------------------------------------------------------------- /base/cvd/.gitignore: -------------------------------------------------------------------------------- 1 | html 2 | latex 3 | 4 | bazel-* 5 | -------------------------------------------------------------------------------- /base/cvd/BUILD.android_system_core.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.android_system_core.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.android_system_extras.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.android_system_extras.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.android_tools_netsim.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.android_tools_netsim.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.avb.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.avb.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.casimir.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.casimir.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.crosvm.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.crosvm.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.dosfstools.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.dosfstools.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.drm.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.drm.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.e2fsprogs.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.e2fsprogs.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.egl_headers.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.egl_headers.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.expat.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.expat.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.f2fs_tools.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.f2fs_tools.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.fec_rs.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.fec_rs.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.fruit.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.fruit.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libcbor.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libcbor.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libconfig.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libconfig.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libdrm.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libdrm.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libeigen.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libeigen.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libffi.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libffi.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libnl.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libnl.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libopenscreen.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libopenscreen.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libpffft.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libpffft.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libsrtp2.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libsrtp2.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libusb.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libusb.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libvpx.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libvpx.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libwebm.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libwebm.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libwebrtc.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libwebrtc.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libwebsockets.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libwebsockets.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.libyuv.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.libyuv.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.mako.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.mako.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.markupsafe.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.markupsafe.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.mesa.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.mesa.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.mkbootimg.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.mkbootimg.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.ms-tpm-20-ref.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.ms-tpm-20-ref.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.mtools.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.mtools.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.opengl_headers.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.opengl_headers.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.pyyaml.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.pyyaml.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.selinux.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.selinux.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.swiftshader.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.swiftshader.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.vulkan_headers.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.vulkan_headers.bazel -------------------------------------------------------------------------------- /base/cvd/BUILD.wmediumd.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/BUILD.wmediumd.bazel -------------------------------------------------------------------------------- /base/cvd/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/Doxyfile -------------------------------------------------------------------------------- /base/cvd/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/MODULE.bazel -------------------------------------------------------------------------------- /base/cvd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/README.md -------------------------------------------------------------------------------- /base/cvd/REPO.bazel: -------------------------------------------------------------------------------- 1 | repo( 2 | features = ["layering_check", "parse_headers"], 3 | ) 4 | -------------------------------------------------------------------------------- /base/cvd/adb/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/adb/adb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb.cpp -------------------------------------------------------------------------------- /base/cvd/adb/adb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb.h -------------------------------------------------------------------------------- /base/cvd/adb/adb_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_auth.h -------------------------------------------------------------------------------- /base/cvd/adb/adb_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_io.cpp -------------------------------------------------------------------------------- /base/cvd/adb/adb_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_io.h -------------------------------------------------------------------------------- /base/cvd/adb/adb_listeners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_listeners.cpp -------------------------------------------------------------------------------- /base/cvd/adb/adb_listeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_listeners.h -------------------------------------------------------------------------------- /base/cvd/adb/adb_mdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_mdns.cpp -------------------------------------------------------------------------------- /base/cvd/adb/adb_mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_mdns.h -------------------------------------------------------------------------------- /base/cvd/adb/adb_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_trace.cpp -------------------------------------------------------------------------------- /base/cvd/adb/adb_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_trace.h -------------------------------------------------------------------------------- /base/cvd/adb/adb_unique_fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_unique_fd.cpp -------------------------------------------------------------------------------- /base/cvd/adb/adb_unique_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_unique_fd.h -------------------------------------------------------------------------------- /base/cvd/adb/adb_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_utils.cpp -------------------------------------------------------------------------------- /base/cvd/adb/adb_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_utils.h -------------------------------------------------------------------------------- /base/cvd/adb/adb_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/adb_wifi.h -------------------------------------------------------------------------------- /base/cvd/adb/apacket_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/apacket_reader.cpp -------------------------------------------------------------------------------- /base/cvd/adb/apacket_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/apacket_reader.h -------------------------------------------------------------------------------- /base/cvd/adb/client/adb_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/adb_client.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/adb_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/adb_client.h -------------------------------------------------------------------------------- /base/cvd/adb/client/adb_install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/adb_install.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/adb_install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/adb_install.h -------------------------------------------------------------------------------- /base/cvd/adb/client/adb_wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/adb_wifi.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/auth.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/bugreport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/bugreport.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/bugreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/bugreport.h -------------------------------------------------------------------------------- /base/cvd/adb/client/commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/commandline.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/commandline.h -------------------------------------------------------------------------------- /base/cvd/adb/client/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/console.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/detach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/detach.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/detach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/detach.h -------------------------------------------------------------------------------- /base/cvd/adb/client/discovered_services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/discovered_services.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/discovered_services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/discovered_services.h -------------------------------------------------------------------------------- /base/cvd/adb/client/file_sync_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/file_sync_client.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/file_sync_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/file_sync_client.h -------------------------------------------------------------------------------- /base/cvd/adb/client/host_services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/host_services.h -------------------------------------------------------------------------------- /base/cvd/adb/client/incremental.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/incremental.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/incremental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/incremental.h -------------------------------------------------------------------------------- /base/cvd/adb/client/incremental_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/incremental_server.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/incremental_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/incremental_server.h -------------------------------------------------------------------------------- /base/cvd/adb/client/incremental_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/incremental_utils.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/incremental_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/incremental_utils.h -------------------------------------------------------------------------------- /base/cvd/adb/client/line_printer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/line_printer.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/line_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/line_printer.h -------------------------------------------------------------------------------- /base/cvd/adb/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/main.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/mdns_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/mdns_tracker.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/mdns_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/mdns_tracker.h -------------------------------------------------------------------------------- /base/cvd/adb/client/mdns_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/mdns_utils.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/mdns_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/mdns_utils.h -------------------------------------------------------------------------------- /base/cvd/adb/client/openscreen/mdns_service_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/openscreen/mdns_service_info.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/openscreen/mdns_service_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/openscreen/mdns_service_info.h -------------------------------------------------------------------------------- /base/cvd/adb/client/openscreen/platform/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/openscreen/platform/logging.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/openscreen/platform/task_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/openscreen/platform/task_runner.h -------------------------------------------------------------------------------- /base/cvd/adb/client/pairing/pairing_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/pairing/pairing_client.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/pairing/pairing_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/pairing/pairing_client.h -------------------------------------------------------------------------------- /base/cvd/adb/client/transport_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/transport_client.h -------------------------------------------------------------------------------- /base/cvd/adb/client/transport_emulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/transport_emulator.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/transport_mdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/transport_mdns.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/transport_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/transport_usb.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/usb.h -------------------------------------------------------------------------------- /base/cvd/adb/client/usb_libusb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/usb_libusb.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/usb_libusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/usb_libusb.h -------------------------------------------------------------------------------- /base/cvd/adb/client/usb_libusb_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/usb_libusb_device.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/usb_libusb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/usb_libusb_device.h -------------------------------------------------------------------------------- /base/cvd/adb/client/usb_libusb_hotplug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/usb_libusb_hotplug.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/usb_libusb_hotplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/usb_libusb_hotplug.h -------------------------------------------------------------------------------- /base/cvd/adb/client/usb_libusb_inhouse_hotplug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/usb_libusb_inhouse_hotplug.cpp -------------------------------------------------------------------------------- /base/cvd/adb/client/usb_libusb_inhouse_hotplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/usb_libusb_inhouse_hotplug.h -------------------------------------------------------------------------------- /base/cvd/adb/client/usb_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/client/usb_linux.cpp -------------------------------------------------------------------------------- /base/cvd/adb/compression_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/compression_utils.h -------------------------------------------------------------------------------- /base/cvd/adb/crypto/include/adb/crypto/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/crypto/include/adb/crypto/key.h -------------------------------------------------------------------------------- /base/cvd/adb/crypto/include/adb/crypto/rsa_2048_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/crypto/include/adb/crypto/rsa_2048_key.h -------------------------------------------------------------------------------- /base/cvd/adb/crypto/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/crypto/key.cpp -------------------------------------------------------------------------------- /base/cvd/adb/crypto/rsa_2048_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/crypto/rsa_2048_key.cpp -------------------------------------------------------------------------------- /base/cvd/adb/crypto/x509_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/crypto/x509_generator.cpp -------------------------------------------------------------------------------- /base/cvd/adb/diagnose_usb/diagnose_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/diagnose_usb/diagnose_usb.cpp -------------------------------------------------------------------------------- /base/cvd/adb/diagnose_usb/include/diagnose_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/diagnose_usb/include/diagnose_usb.h -------------------------------------------------------------------------------- /base/cvd/adb/fdevent/fdevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/fdevent/fdevent.cpp -------------------------------------------------------------------------------- /base/cvd/adb/fdevent/fdevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/fdevent/fdevent.h -------------------------------------------------------------------------------- /base/cvd/adb/fdevent/fdevent_epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/fdevent/fdevent_epoll.cpp -------------------------------------------------------------------------------- /base/cvd/adb/fdevent/fdevent_epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/fdevent/fdevent_epoll.h -------------------------------------------------------------------------------- /base/cvd/adb/file_sync_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/file_sync_protocol.h -------------------------------------------------------------------------------- /base/cvd/adb/incfs/util/map_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/incfs/util/map_ptr.h -------------------------------------------------------------------------------- /base/cvd/adb/libcrypto_utils/android_pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/libcrypto_utils/android_pubkey.cpp -------------------------------------------------------------------------------- /base/cvd/adb/pairing_auth/aes_128_gcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/pairing_auth/aes_128_gcm.cpp -------------------------------------------------------------------------------- /base/cvd/adb/pairing_auth/pairing_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/pairing_auth/pairing_auth.cpp -------------------------------------------------------------------------------- /base/cvd/adb/proto/adb_host.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/proto/adb_host.proto -------------------------------------------------------------------------------- /base/cvd/adb/proto/adb_known_hosts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/proto/adb_known_hosts.proto -------------------------------------------------------------------------------- /base/cvd/adb/proto/app_processes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/proto/app_processes.proto -------------------------------------------------------------------------------- /base/cvd/adb/proto/key_type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/proto/key_type.proto -------------------------------------------------------------------------------- /base/cvd/adb/proto/pairing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/proto/pairing.proto -------------------------------------------------------------------------------- /base/cvd/adb/services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/services.cpp -------------------------------------------------------------------------------- /base/cvd/adb/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/services.h -------------------------------------------------------------------------------- /base/cvd/adb/shell_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/shell_protocol.h -------------------------------------------------------------------------------- /base/cvd/adb/shell_service_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/shell_service_protocol.cpp -------------------------------------------------------------------------------- /base/cvd/adb/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/socket.h -------------------------------------------------------------------------------- /base/cvd/adb/socket_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/socket_spec.cpp -------------------------------------------------------------------------------- /base/cvd/adb/socket_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/socket_spec.h -------------------------------------------------------------------------------- /base/cvd/adb/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sockets.cpp -------------------------------------------------------------------------------- /base/cvd/adb/sysdeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sysdeps.h -------------------------------------------------------------------------------- /base/cvd/adb/sysdeps/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sysdeps/chrono.h -------------------------------------------------------------------------------- /base/cvd/adb/sysdeps/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sysdeps/env.cpp -------------------------------------------------------------------------------- /base/cvd/adb/sysdeps/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sysdeps/env.h -------------------------------------------------------------------------------- /base/cvd/adb/sysdeps/errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sysdeps/errno.cpp -------------------------------------------------------------------------------- /base/cvd/adb/sysdeps/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sysdeps/errno.h -------------------------------------------------------------------------------- /base/cvd/adb/sysdeps/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sysdeps/network.h -------------------------------------------------------------------------------- /base/cvd/adb/sysdeps/posix/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sysdeps/posix/network.cpp -------------------------------------------------------------------------------- /base/cvd/adb/sysdeps/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sysdeps/stat.h -------------------------------------------------------------------------------- /base/cvd/adb/sysdeps/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sysdeps/uio.h -------------------------------------------------------------------------------- /base/cvd/adb/sysdeps_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/sysdeps_unix.cpp -------------------------------------------------------------------------------- /base/cvd/adb/tls/adb_ca_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/tls/adb_ca_list.cpp -------------------------------------------------------------------------------- /base/cvd/adb/tls/include/adb/tls/adb_ca_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/tls/include/adb/tls/adb_ca_list.h -------------------------------------------------------------------------------- /base/cvd/adb/tls/include/adb/tls/tls_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/tls/include/adb/tls/tls_connection.h -------------------------------------------------------------------------------- /base/cvd/adb/tls/tls_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/tls/tls_connection.cpp -------------------------------------------------------------------------------- /base/cvd/adb/transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/transport.cpp -------------------------------------------------------------------------------- /base/cvd/adb/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/transport.h -------------------------------------------------------------------------------- /base/cvd/adb/transport_fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/transport_fd.cpp -------------------------------------------------------------------------------- /base/cvd/adb/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/types.cpp -------------------------------------------------------------------------------- /base/cvd/adb/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/types.h -------------------------------------------------------------------------------- /base/cvd/adb/version/build/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/version/build/version.h -------------------------------------------------------------------------------- /base/cvd/adb/version/platform_tools_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/adb/version/platform_tools_version.h -------------------------------------------------------------------------------- /base/cvd/allocd/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/allocd/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/allocd/alloc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/allocd/alloc_utils.cpp -------------------------------------------------------------------------------- /base/cvd/allocd/alloc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/allocd/alloc_utils.h -------------------------------------------------------------------------------- /base/cvd/android/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/android/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/android/android/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/android/android/log.h -------------------------------------------------------------------------------- /base/cvd/android/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/android/log/log.h -------------------------------------------------------------------------------- /base/cvd/build_external/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/cvd/build_external/crosvm/BUILD.bazel: -------------------------------------------------------------------------------- 1 | exports_files([ 2 | "crosvm.config.toml", 3 | ]) 4 | -------------------------------------------------------------------------------- /base/cvd/build_external/crosvm/crosvm.config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/crosvm/crosvm.config.toml -------------------------------------------------------------------------------- /base/cvd/build_external/cxxbridge/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/cxxbridge/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/dosfstools/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/dosfstools/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/dosfstools/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/dosfstools/src/version.h -------------------------------------------------------------------------------- /base/cvd/build_external/e2fsprogs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/e2fsprogs/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/e2fsprogs/lib/blkid/blkid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/e2fsprogs/lib/blkid/blkid.h -------------------------------------------------------------------------------- /base/cvd/build_external/e2fsprogs/lib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/e2fsprogs/lib/config.h -------------------------------------------------------------------------------- /base/cvd/build_external/e2fsprogs/lib/uuid/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/e2fsprogs/lib/uuid/uuid.h -------------------------------------------------------------------------------- /base/cvd/build_external/expat/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/expat/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/expat/expat_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/expat/expat_config.h -------------------------------------------------------------------------------- /base/cvd/build_external/gfxstream/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/gfxstream/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/grpcio-sys/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/grpcio-sys/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/grpcio-sys/gpr_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/grpcio-sys/gpr_assert.h -------------------------------------------------------------------------------- /base/cvd/build_external/grpcio-sys/log_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/grpcio-sys/log_stub.c -------------------------------------------------------------------------------- /base/cvd/build_external/libcbor/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/libcbor/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/libcbor/cbor/cbor_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/libcbor/cbor/cbor_export.h -------------------------------------------------------------------------------- /base/cvd/build_external/libcbor/cbor/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/libcbor/cbor/configuration.h -------------------------------------------------------------------------------- /base/cvd/build_external/libopenscreen/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/libopenscreen/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/libsrtp2_config/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/libsrtp2_config/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/libvpx/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/libvpx/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/libvpx/genconfigs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/libvpx/genconfigs.sh -------------------------------------------------------------------------------- /base/cvd/build_external/libvpx/lint_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/libvpx/lint_config.sh -------------------------------------------------------------------------------- /base/cvd/build_external/libwebrtc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/libwebrtc/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/libwebrtc/third_party/libaom/source/libaom/aom/aom_codec.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /base/cvd/build_external/libwebrtc/third_party/libaom/source/libaom/aom/aom_decoder.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /base/cvd/build_external/libwebrtc/third_party/libaom/source/libaom/aom/aom_encoder.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /base/cvd/build_external/libwebrtc/third_party/libaom/source/libaom/aom/aomdx.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /base/cvd/build_external/libwebrtc/third_party/libevent/event.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /base/cvd/build_external/libwebrtc/third_party/libsrtp/crypto/include/auth.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /base/cvd/build_external/libwebrtc/third_party/libsrtp/include/srtp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /base/cvd/build_external/libwebrtc/third_party/pffft/src/pffft.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /base/cvd/build_external/libwebsockets/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/libwebsockets/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/ms-tpm-20-ref/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/cvd/build_external/mtools/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/mtools/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/mtools/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/mtools/config.h -------------------------------------------------------------------------------- /base/cvd/build_external/netsim/0003-Pin-cxx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/netsim/0003-Pin-cxx.patch -------------------------------------------------------------------------------- /base/cvd/build_external/netsim/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/netsim/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/netsim/openssl_sys.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/netsim/openssl_sys.bzl -------------------------------------------------------------------------------- /base/cvd/build_external/netsim/pdl_rust.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/netsim/pdl_rust.bzl -------------------------------------------------------------------------------- /base/cvd/build_external/rootcanal/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/cvd/build_external/sandboxed_api/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/cvd/build_external/wayland/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/wayland/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/wayland/BUILD.wayland.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/wayland/BUILD.wayland.bazel -------------------------------------------------------------------------------- /base/cvd/build_external/wayland/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/wayland/config.h -------------------------------------------------------------------------------- /base/cvd/build_external/wayland/wayland-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_external/wayland/wayland-version.h -------------------------------------------------------------------------------- /base/cvd/build_variables.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/build_variables.bzl -------------------------------------------------------------------------------- /base/cvd/clientanalytics.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/clientanalytics.proto -------------------------------------------------------------------------------- /base/cvd/cuttlefish/bazel/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/bazel/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/bazel/local.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/bazel/local.bzl -------------------------------------------------------------------------------- /base/cvd/cuttlefish/bazel/rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/bazel/rules.bzl -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/confui/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/confui/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/confui/confui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/confui/confui.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/confui/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/confui/packet.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/confui/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/confui/packet.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/confui/packet_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/confui/packet_types.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/confui/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/confui/protocol.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/confui/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/confui/protocol.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/confui/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/confui/utils.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/fs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/fs/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/fs/epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/fs/epoll.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/fs/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/fs/epoll.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/fs/shared_buf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/fs/shared_buf.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/fs/shared_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/fs/shared_buf.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/fs/shared_fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/fs/shared_fd.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/fs/shared_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/fs/shared_fd.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/fs/shared_fd_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/fs/shared_fd_stream.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/fs/shared_fd_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/fs/shared_fd_test.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/fs/shared_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/fs/shared_select.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/fs/vm_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/fs/vm_sockets.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/posix/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/posix/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/posix/strerror.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/posix/strerror.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/posix/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/posix/strerror.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/posix/symlink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/posix/symlink.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/posix/symlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/posix/symlink.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/security/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/security/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/security/oemlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/security/oemlock.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/sensors/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/sensors/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/sensors/sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/sensors/sensors.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/transport/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/transport/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/transport/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/transport/channel.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/transport/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/transport/channel.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/archive.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/archive.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/base64.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/base64.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/base64_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/base64_test.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/cf_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/cf_endian.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/container.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/container.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/contains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/contains.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/device_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/device_type.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/device_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/device_type.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/disk_usage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/disk_usage.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/disk_usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/disk_usage.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/environment.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/environment.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/files.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/files.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/files_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/files_test.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/flag_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/flag_parser.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/flag_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/flag_parser.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/host_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/host_info.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/host_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/host_info.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/in_sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/in_sandbox.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/inotify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/inotify.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/inotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/inotify.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/json.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/json.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/known_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/known_paths.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/network.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/network.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/proto.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/random.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/random.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/result.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/result.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/signals.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/signals.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/size_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/size_utils.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/subprocess.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/tee_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/tee_logging.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/type_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/type_name.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/users.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/users.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/users.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/users.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/uuid.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/common/libs/utils/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/common/libs/utils/uuid.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvd/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvd/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvd/README.md -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvd/cache/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvd/cache/cache.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvd/cli/parser/doc/audio.dot: -------------------------------------------------------------------------------- 1 | graph { 2 | rankdir=LR 3 | 4 | audio--enable 5 | 6 | } -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvd/cli/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvd/cli/types.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvd/cli/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvd/cli/utils.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvd/cli/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvd/cli/utils.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvd/cvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvd/cvd.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvd/cvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvd/cvd.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvd/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvd/main.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvd_env/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvd_env/main.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvdalloc/sem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvdalloc/sem.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/cvdalloc/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/cvdalloc/sem.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/display/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/display/main.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/health/health.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/health/health.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/metrics/events.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/metrics/events.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/metrics/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/metrics/events.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/metrics/send.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/metrics/send.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/metrics/send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/metrics/send.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/metrics/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/metrics/utils.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/metrics/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/metrics/utils.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/run_cvd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/run_cvd/README.md -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/run_cvd/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/run_cvd/main.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/secure_env/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/secure_env/tpm.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/start/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/start/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/start/README.md -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/start/linkage.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/start/linkage.dot -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/start/linkage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/start/linkage.png -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/start/linkage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/start/linkage.svg -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/start/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/start/main.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/status/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/status/main.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/stop/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/stop/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/commands/stop/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/commands/stop/main.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/frontend/webrtc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/frontend/webrtc/README.md -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/frontend/webrtc/html_client/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/frontend/webrtc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/frontend/webrtc/main.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/graphics_detector/egl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/graphics_detector/egl.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/graphics_detector/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/graphics_detector/egl.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/graphics_detector/gles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/graphics_detector/gles.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/graphics_detector/gles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/graphics_detector/gles.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/graphics_detector/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/graphics_detector/image.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/graphics_detector/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/graphics_detector/lib.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/graphics_detector/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/graphics_detector/lib.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/graphics_detector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/graphics_detector/main.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/graphics_detector/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/graphics_detector/vulkan.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/allocd/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/allocd/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/allocd/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/allocd/request.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/allocd/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/allocd/utils.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/allocd/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/allocd/utils.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/avb/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/avb/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/avb/avb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/avb/avb.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/avb/avb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/avb/avb.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/command_util/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/command_util/util.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/command_util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/command_util/util.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/.clang-tidy -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/adb/adb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/adb/adb.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/adb/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/adb/config.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/adb/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/adb/data.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/adb/flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/adb/flags.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/adb/launch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/adb/launch.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/adb/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/adb/test.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/ap_boot_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/ap_boot_flow.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/boot_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/boot_flow.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/config_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/config_flag.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/config_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/config_utils.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/data_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/data_image.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/data_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/data_image.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/display.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/display.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/esp.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/esp.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/file_source.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/file_source.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/file_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/file_source.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/guest_os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/guest_os.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/guest_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/guest_os.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/kernel_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/kernel_args.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/known_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/known_paths.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/logging.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/logging.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/openwrt_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/openwrt_args.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/secure_hals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/secure_hals.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/touchpad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/touchpad.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/touchpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/touchpad.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/vmm_mode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/vmm_mode.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/config/vmm_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/config/vmm_mode.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/Shield.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/Shield.ttf -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/confui_cbor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/confui_cbor.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/confui_cbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/confui_cbor.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/host_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/host_server.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/host_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/host_server.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/host_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/host_utils.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/host_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/host_utils.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/secure_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/secure_input.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/session.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/session.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/session.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/sign.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/sign.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/sign.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/confui/sign_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/confui/sign_utils.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/directories/xdg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/directories/xdg.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/directories/xdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/directories/xdg.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/feature/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/feature/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/feature/feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/feature/feature.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/feature/feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/feature/feature.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/feature/inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/feature/inject.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/location/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/location/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/location/GnssClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/location/GnssClient.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/location/GpsFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/location/GpsFix.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/location/GpxParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/location/GpxParser.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/location/KmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/location/KmlParser.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/metrics/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/metrics/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/metrics/event_type.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/metrics/event_type.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/metrics/event_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/metrics/event_type.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/metrics/session_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/metrics/session_id.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/metrics/session_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/metrics/session_id.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/msg_queue/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/msg_queue/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/msg_queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/msg_queue/README.md -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/msg_queue/msg_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/msg_queue/msg_queue.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/version/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/version/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/vm_manager/pci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/vm_manager/pci.cpp -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/vm_manager/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/vm_manager/pci.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/wayland/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/wayland/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/.clang-tidy -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/android_build.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/android_build.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/android_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/android_build.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/build_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/build_api.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/build_api_zip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/build_api_zip.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/build_api_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/build_api_zip.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/cas/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/cas/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/cas/cas_flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/cas/cas_flags.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/cas/cas_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/cas/cas_flags.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/luci_build_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/luci_build_api.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/web/oauth2_consent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/web/oauth2_consent.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/.clang-tidy -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/libzip_cc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/libzip_cc/error.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/libzip_cc/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/libzip_cc/stat.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/remote_zip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/remote_zip.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/remote_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/remote_zip.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/zip_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/zip_builder.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/zip_copy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/zip_copy.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/zip_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/zip_copy.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/zip_copy_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/zip_copy_test.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/zip_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/zip_file.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/zip_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/zip_file.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/zip_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/zip_string.cc -------------------------------------------------------------------------------- /base/cvd/cuttlefish/host/libs/zip/zip_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/host/libs/zip/zip_string.h -------------------------------------------------------------------------------- /base/cvd/cuttlefish/package/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/package/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/cuttlefish/package/rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/cuttlefish/package/rules.bzl -------------------------------------------------------------------------------- /base/cvd/external_proto/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/external_proto/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/external_proto/cf_flags.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/external_proto/cf_flags.proto -------------------------------------------------------------------------------- /base/cvd/external_proto/cf_guest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/external_proto/cf_guest.proto -------------------------------------------------------------------------------- /base/cvd/external_proto/cf_host.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/external_proto/cf_host.proto -------------------------------------------------------------------------------- /base/cvd/external_proto/cf_log.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/external_proto/cf_log.proto -------------------------------------------------------------------------------- /base/cvd/external_proto/cf_metrics_event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/external_proto/cf_metrics_event.proto -------------------------------------------------------------------------------- /base/cvd/external_proto/cf_metrics_event_v2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/external_proto/cf_metrics_event_v2.proto -------------------------------------------------------------------------------- /base/cvd/external_proto/clientanalytics.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/external_proto/clientanalytics.proto -------------------------------------------------------------------------------- /base/cvd/external_proto/log_source_enum.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/external_proto/log_source_enum.proto -------------------------------------------------------------------------------- /base/cvd/fastboot/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/fastboot/bootimg_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/bootimg_utils.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/bootimg_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/bootimg_utils.h -------------------------------------------------------------------------------- /base/cvd/fastboot/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/constants.h -------------------------------------------------------------------------------- /base/cvd/fastboot/diagnose_usb/diagnose_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/diagnose_usb/diagnose_usb.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/fastboot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/fastboot.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/fastboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/fastboot.h -------------------------------------------------------------------------------- /base/cvd/fastboot/fastboot_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/fastboot_driver.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/fastboot_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/fastboot_driver.h -------------------------------------------------------------------------------- /base/cvd/fastboot/fastboot_driver_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/fastboot_driver_interface.h -------------------------------------------------------------------------------- /base/cvd/fastboot/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/filesystem.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/filesystem.h -------------------------------------------------------------------------------- /base/cvd/fastboot/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/fs.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/fs.h -------------------------------------------------------------------------------- /base/cvd/fastboot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/main.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/result.h -------------------------------------------------------------------------------- /base/cvd/fastboot/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/socket.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/socket.h -------------------------------------------------------------------------------- /base/cvd/fastboot/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/storage.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/storage.h -------------------------------------------------------------------------------- /base/cvd/fastboot/super_flash_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/super_flash_helper.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/super_flash_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/super_flash_helper.h -------------------------------------------------------------------------------- /base/cvd/fastboot/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/task.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/task.h -------------------------------------------------------------------------------- /base/cvd/fastboot/tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/tcp.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/tcp.h -------------------------------------------------------------------------------- /base/cvd/fastboot/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/transport.h -------------------------------------------------------------------------------- /base/cvd/fastboot/udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/udp.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/udp.h -------------------------------------------------------------------------------- /base/cvd/fastboot/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/usb.h -------------------------------------------------------------------------------- /base/cvd/fastboot/usb_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/usb_linux.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/util.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/util.h -------------------------------------------------------------------------------- /base/cvd/fastboot/vendor_boot_img_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/vendor_boot_img_utils.cpp -------------------------------------------------------------------------------- /base/cvd/fastboot/vendor_boot_img_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/vendor_boot_img_utils.h -------------------------------------------------------------------------------- /base/cvd/fastboot/version/build/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/version/build/version.h -------------------------------------------------------------------------------- /base/cvd/fastboot/version/platform_tools_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fastboot/version/platform_tools_version.h -------------------------------------------------------------------------------- /base/cvd/fec/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/fec/libfec/avb_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/libfec/avb_utils.cpp -------------------------------------------------------------------------------- /base/cvd/fec/libfec/avb_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/libfec/avb_utils.h -------------------------------------------------------------------------------- /base/cvd/fec/libfec/avb_utils_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/libfec/avb_utils_stub.cpp -------------------------------------------------------------------------------- /base/cvd/fec/libfec/fec_open.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/libfec/fec_open.cpp -------------------------------------------------------------------------------- /base/cvd/fec/libfec/fec_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/libfec/fec_private.h -------------------------------------------------------------------------------- /base/cvd/fec/libfec/fec_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/libfec/fec_process.cpp -------------------------------------------------------------------------------- /base/cvd/fec/libfec/fec_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/libfec/fec_read.cpp -------------------------------------------------------------------------------- /base/cvd/fec/libfec/fec_verity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/libfec/fec_verity.cpp -------------------------------------------------------------------------------- /base/cvd/fec/libfec/include/fec/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/libfec/include/fec/ecc.h -------------------------------------------------------------------------------- /base/cvd/fec/libfec/include/fec/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/libfec/include/fec/io.h -------------------------------------------------------------------------------- /base/cvd/fec/libutils/include/utils/Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/libutils/include/utils/Compat.h -------------------------------------------------------------------------------- /base/cvd/fec/squashfs_utils/squashfs_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/squashfs_utils/squashfs_utils.h -------------------------------------------------------------------------------- /base/cvd/fec/verity/fec/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/verity/fec/image.cpp -------------------------------------------------------------------------------- /base/cvd/fec/verity/fec/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/verity/fec/image.h -------------------------------------------------------------------------------- /base/cvd/fec/verity/fec/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fec/verity/fec/main.cpp -------------------------------------------------------------------------------- /base/cvd/fruit-config-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/fruit-config-base.h -------------------------------------------------------------------------------- /base/cvd/gen_ffi_header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/gen_ffi_header.sh -------------------------------------------------------------------------------- /base/cvd/internal_user_log.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/internal_user_log.proto -------------------------------------------------------------------------------- /base/cvd/libbase/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/libbase/cmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/cmsg.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/errors_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/errors_unix.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/file.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/hex.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/cmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/cmsg.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/collections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/collections.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/endian.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/errors.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/expected.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/file.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/format.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/hex.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/logging.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/macros.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/mapped_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/mapped_file.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/memory.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/off64_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/off64_t.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/parsebool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/parsebool.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/parsedouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/parsedouble.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/parseint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/parseint.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/properties.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/result.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/scopeguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/scopeguard.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/strings.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/threads.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/unique_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/unique_fd.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/android-base/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/android-base/utf8.h -------------------------------------------------------------------------------- /base/cvd/libbase/include/logging_splitters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/include/logging_splitters.h -------------------------------------------------------------------------------- /base/cvd/libbase/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/logging.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/mapped_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/mapped_file.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/parsebool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/parsebool.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/parsenetaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/parsenetaddress.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/posix_strerror_r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/posix_strerror_r.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/properties.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/stringprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/stringprintf.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/strings.cpp -------------------------------------------------------------------------------- /base/cvd/libbase/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libbase/threads.cpp -------------------------------------------------------------------------------- /base/cvd/libext4_utils/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libext4_utils/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/libext4_utils/ext4_sb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libext4_utils/ext4_sb.cpp -------------------------------------------------------------------------------- /base/cvd/libext4_utils/ext4_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libext4_utils/ext4_utils.cpp -------------------------------------------------------------------------------- /base/cvd/libext4_utils/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libext4_utils/helpers.h -------------------------------------------------------------------------------- /base/cvd/libext4_utils/include/ext4_utils/ext4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libext4_utils/include/ext4_utils/ext4.h -------------------------------------------------------------------------------- /base/cvd/libext4_utils/include/ext4_utils/ext4_sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libext4_utils/include/ext4_utils/ext4_sb.h -------------------------------------------------------------------------------- /base/cvd/libext4_utils/include/ext4_utils/jbd2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libext4_utils/include/ext4_utils/jbd2.h -------------------------------------------------------------------------------- /base/cvd/libext4_utils/include/ext4_utils/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libext4_utils/include/ext4_utils/xattr.h -------------------------------------------------------------------------------- /base/cvd/libext4_utils/mke2fs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libext4_utils/mke2fs.conf -------------------------------------------------------------------------------- /base/cvd/libext4_utils/mkuserimg_mke2fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libext4_utils/mkuserimg_mke2fs.py -------------------------------------------------------------------------------- /base/cvd/libffi/linux-arm64/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libffi/linux-arm64/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/libffi/linux-arm64/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libffi/linux-arm64/ffi.h -------------------------------------------------------------------------------- /base/cvd/libffi/linux-arm64/fficonfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libffi/linux-arm64/fficonfig.h -------------------------------------------------------------------------------- /base/cvd/libffi/linux-arm64/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libffi/linux-arm64/ffitarget.h -------------------------------------------------------------------------------- /base/cvd/libffi/linux-x86/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libffi/linux-x86/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/libffi/linux-x86/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libffi/linux-x86/ffi.h -------------------------------------------------------------------------------- /base/cvd/libffi/linux-x86/fficonfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libffi/linux-x86/fficonfig.h -------------------------------------------------------------------------------- /base/cvd/libffi/linux-x86/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libffi/linux-x86/ffitarget.h -------------------------------------------------------------------------------- /base/cvd/libsparse/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/libsparse/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/linux_headers/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/linux_headers/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/linux_headers/uapi/linux/if_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/linux_headers/uapi/linux/if_link.h -------------------------------------------------------------------------------- /base/cvd/linux_headers/uapi/linux/netlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/linux_headers/uapi/linux/netlink.h -------------------------------------------------------------------------------- /base/cvd/linux_headers/uapi/linux/nl80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/linux_headers/uapi/linux/nl80211.h -------------------------------------------------------------------------------- /base/cvd/linux_headers/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/linux_headers/update.sh -------------------------------------------------------------------------------- /base/cvd/mkbootfs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/mkbootfs/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/mkbootfs/mkbootfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/mkbootfs/mkbootfs.cpp -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/include/teeui/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/include/teeui/button.h -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/include/teeui/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/include/teeui/error.h -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/include/teeui/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/include/teeui/label.h -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/include/teeui/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/include/teeui/log.h -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/include/teeui/static_vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/include/teeui/static_vec.h -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/include/teeui/utf8range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/include/teeui/utf8range.h -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/include/teeui/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/include/teeui/utils.h -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/src/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/src/button.cpp -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/src/font_rendering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/src/font_rendering.cpp -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/src/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/src/label.cpp -------------------------------------------------------------------------------- /base/cvd/teeui/libteeui/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/teeui/libteeui/src/utils.cpp -------------------------------------------------------------------------------- /base/cvd/toolchain/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/toolchain/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/toolchain/cc_toolchain_config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/toolchain/cc_toolchain_config.bzl -------------------------------------------------------------------------------- /base/cvd/toolchain/cc_toolchain_macro.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/toolchain/cc_toolchain_macro.bzl -------------------------------------------------------------------------------- /base/cvd/toolchain/file_detector.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/toolchain/file_detector.bzl -------------------------------------------------------------------------------- /base/cvd/tools/lint/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/tools/lint/BUILD.bazel -------------------------------------------------------------------------------- /base/cvd/tools/lint/linters.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/cvd/tools/lint/linters.bzl -------------------------------------------------------------------------------- /base/debian/cf_defaults: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/changelog -------------------------------------------------------------------------------- /base/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/control -------------------------------------------------------------------------------- /base/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/copyright -------------------------------------------------------------------------------- /base/debian/cuttlefish-base.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/cuttlefish-base.install -------------------------------------------------------------------------------- /base/debian/cuttlefish-base.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/cuttlefish-base.links -------------------------------------------------------------------------------- /base/debian/cuttlefish-base.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/cuttlefish-base.lintian-overrides -------------------------------------------------------------------------------- /base/debian/cuttlefish-base.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/cuttlefish-base.postinst -------------------------------------------------------------------------------- /base/debian/cuttlefish-base.udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/cuttlefish-base.udev -------------------------------------------------------------------------------- /base/debian/cuttlefish-defaults.install: -------------------------------------------------------------------------------- 1 | debian/cf_defaults /usr/lib/cuttlefish-common/etc/ 2 | -------------------------------------------------------------------------------- /base/debian/cuttlefish-defaults.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/cuttlefish-defaults.postrm -------------------------------------------------------------------------------- /base/debian/cuttlefish-defaults.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/cuttlefish-defaults.preinst -------------------------------------------------------------------------------- /base/debian/cuttlefish-integration.displace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/cuttlefish-integration.displace -------------------------------------------------------------------------------- /base/debian/cuttlefish-integration.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/cuttlefish-integration.install -------------------------------------------------------------------------------- /base/debian/cuttlefish-integration.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/cuttlefish-integration.postinst -------------------------------------------------------------------------------- /base/debian/cuttlefish-integration.udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/cuttlefish-integration.udev -------------------------------------------------------------------------------- /base/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/rules -------------------------------------------------------------------------------- /base/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /base/debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/debian/source/lintian-overrides -------------------------------------------------------------------------------- /base/host/deploy/capability_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/host/deploy/capability_query.py -------------------------------------------------------------------------------- /base/host/packages/cuttlefish-base/etc/NetworkManager/conf.d/99-cuttlefish.conf: -------------------------------------------------------------------------------- 1 | [keyfile] 2 | unmanaged-devices=interface-name:cvd-* -------------------------------------------------------------------------------- /base/host/packages/cuttlefish-integration/etc/ssh/sshd_config.cuttlefish: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/install-nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/install-nodejs.sh -------------------------------------------------------------------------------- /base/setup-nodejs-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/setup-nodejs-env.sh -------------------------------------------------------------------------------- /base/stamp_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/base/stamp_helper.sh -------------------------------------------------------------------------------- /cuttlefish-integration-gigabyte-arm64/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/cuttlefish-integration-gigabyte-arm64/README -------------------------------------------------------------------------------- /cuttlefish-integration-gigabyte-arm64/debian/clean: -------------------------------------------------------------------------------- 1 | usr/share/version_info 2 | -------------------------------------------------------------------------------- /cuttlefish-integration-gigabyte-arm64/debian/cuttlefish-integration-gigabyte-arm64.dirs: -------------------------------------------------------------------------------- 1 | /var/lib/cuttlefish-integration-gigabyte-arm64/backup 2 | -------------------------------------------------------------------------------- /cuttlefish-integration-gigabyte-arm64/debian/cuttlefish-integration-gigabyte-arm64.docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /cuttlefish-integration-gigabyte-arm64/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/cuttlefish-integration-gigabyte-arm64/debian/rules -------------------------------------------------------------------------------- /cuttlefish-integration-gigabyte-arm64/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /cuttlefish-integration-gigabyte-arm64/usr/lib/NetworkManager/conf.d/cuttlefish-integration-gigabyte-arm64.conf: -------------------------------------------------------------------------------- 1 | [main] 2 | no-auto-default=type:ethernet 3 | -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/guest/run_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/docker/guest/run_services.sh -------------------------------------------------------------------------------- /docker/image-builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/docker/image-builder.sh -------------------------------------------------------------------------------- /docs/HostToolsMigration.md: -------------------------------------------------------------------------------- 1 | # Notes about Github host tool development 2 | 3 | WIP 4 | 5 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/docs/index.html -------------------------------------------------------------------------------- /e2etests/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/BUILD.bazel -------------------------------------------------------------------------------- /e2etests/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/MODULE.bazel -------------------------------------------------------------------------------- /e2etests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/README.md -------------------------------------------------------------------------------- /e2etests/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2etests/cvd/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/cvd/BUILD.bazel -------------------------------------------------------------------------------- /e2etests/cvd/boot_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/cvd/boot_tests.bzl -------------------------------------------------------------------------------- /e2etests/cvd/cvd_command_boot_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/cvd/cvd_command_boot_test.sh -------------------------------------------------------------------------------- /e2etests/cvd/cvd_load_boot_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/cvd/cvd_load_boot_test.sh -------------------------------------------------------------------------------- /e2etests/cvd/launch_cvd_boot_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/cvd/launch_cvd_boot_test.sh -------------------------------------------------------------------------------- /e2etests/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/go.mod -------------------------------------------------------------------------------- /e2etests/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/go.sum -------------------------------------------------------------------------------- /e2etests/orchestration/artifacts/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/artifacts/BUILD.bazel -------------------------------------------------------------------------------- /e2etests/orchestration/artifacts/def.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/artifacts/def.bzl -------------------------------------------------------------------------------- /e2etests/orchestration/bugreport_test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/bugreport_test/BUILD.bazel -------------------------------------------------------------------------------- /e2etests/orchestration/bugreport_test/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/bugreport_test/main_test.go -------------------------------------------------------------------------------- /e2etests/orchestration/common/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/common/BUILD.bazel -------------------------------------------------------------------------------- /e2etests/orchestration/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/common/common.go -------------------------------------------------------------------------------- /e2etests/orchestration/powerbtn_test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/powerbtn_test/BUILD.bazel -------------------------------------------------------------------------------- /e2etests/orchestration/powerbtn_test/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/powerbtn_test/main_test.go -------------------------------------------------------------------------------- /e2etests/orchestration/powerwash_test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/powerwash_test/BUILD.bazel -------------------------------------------------------------------------------- /e2etests/orchestration/powerwash_test/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/powerwash_test/main_test.go -------------------------------------------------------------------------------- /e2etests/orchestration/reset_test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/reset_test/BUILD.bazel -------------------------------------------------------------------------------- /e2etests/orchestration/reset_test/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/reset_test/main_test.go -------------------------------------------------------------------------------- /e2etests/orchestration/snapshot_test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/snapshot_test/BUILD.bazel -------------------------------------------------------------------------------- /e2etests/orchestration/snapshot_test/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/e2etests/orchestration/snapshot_test/main_test.go -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/build-webui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/build-webui.sh -------------------------------------------------------------------------------- /frontend/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/debian/changelog -------------------------------------------------------------------------------- /frontend/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/debian/control -------------------------------------------------------------------------------- /frontend/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/debian/copyright -------------------------------------------------------------------------------- /frontend/debian/cuttlefish-orchestration.install: -------------------------------------------------------------------------------- 1 | host/packages/cuttlefish-orchestration/* / 2 | -------------------------------------------------------------------------------- /frontend/debian/cuttlefish-orchestration.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/debian/cuttlefish-orchestration.links -------------------------------------------------------------------------------- /frontend/debian/cuttlefish-orchestration.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/debian/cuttlefish-orchestration.postinst -------------------------------------------------------------------------------- /frontend/debian/cuttlefish-user.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/debian/cuttlefish-user.install -------------------------------------------------------------------------------- /frontend/debian/cuttlefish-user.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/debian/cuttlefish-user.links -------------------------------------------------------------------------------- /frontend/debian/cuttlefish-user.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/debian/cuttlefish-user.lintian-overrides -------------------------------------------------------------------------------- /frontend/debian/cuttlefish-user.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/debian/cuttlefish-user.postinst -------------------------------------------------------------------------------- /frontend/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/debian/rules -------------------------------------------------------------------------------- /frontend/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /frontend/debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/debian/source/lintian-overrides -------------------------------------------------------------------------------- /frontend/install-nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/install-nodejs.sh -------------------------------------------------------------------------------- /frontend/setup-nodejs-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/setup-nodejs-env.sh -------------------------------------------------------------------------------- /frontend/src/goutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/goutil -------------------------------------------------------------------------------- /frontend/src/host_orchestrator/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/host_orchestrator/BUILD.bazel -------------------------------------------------------------------------------- /frontend/src/host_orchestrator/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/host_orchestrator/MODULE.bazel -------------------------------------------------------------------------------- /frontend/src/host_orchestrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/host_orchestrator/README.md -------------------------------------------------------------------------------- /frontend/src/host_orchestrator/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/host_orchestrator/api/v1/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/host_orchestrator/api/v1/BUILD.bazel -------------------------------------------------------------------------------- /frontend/src/host_orchestrator/api/v1/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/host_orchestrator/api/v1/messages.go -------------------------------------------------------------------------------- /frontend/src/host_orchestrator/docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/host_orchestrator/docs/swagger.yaml -------------------------------------------------------------------------------- /frontend/src/host_orchestrator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/host_orchestrator/go.mod -------------------------------------------------------------------------------- /frontend/src/host_orchestrator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/host_orchestrator/go.sum -------------------------------------------------------------------------------- /frontend/src/host_orchestrator/go_repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/host_orchestrator/go_repositories.bzl -------------------------------------------------------------------------------- /frontend/src/host_orchestrator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/host_orchestrator/main.go -------------------------------------------------------------------------------- /frontend/src/libhoclient/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/libhoclient/BUILD.bazel -------------------------------------------------------------------------------- /frontend/src/libhoclient/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/libhoclient/MODULE.bazel -------------------------------------------------------------------------------- /frontend/src/libhoclient/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/libhoclient/deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/libhoclient/deps.bzl -------------------------------------------------------------------------------- /frontend/src/libhoclient/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/libhoclient/go.mod -------------------------------------------------------------------------------- /frontend/src/libhoclient/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/libhoclient/go.sum -------------------------------------------------------------------------------- /frontend/src/libhoclient/httputils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/libhoclient/httputils.go -------------------------------------------------------------------------------- /frontend/src/libhoclient/httputils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/libhoclient/httputils_test.go -------------------------------------------------------------------------------- /frontend/src/libhoclient/webrtcclient/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/libhoclient/webrtcclient/BUILD.bazel -------------------------------------------------------------------------------- /frontend/src/libhoclient/webrtcclient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/libhoclient/webrtcclient/client.go -------------------------------------------------------------------------------- /frontend/src/libhoclient/webrtcclient/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/libhoclient/webrtcclient/types.go -------------------------------------------------------------------------------- /frontend/src/liboperator/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/BUILD.bazel -------------------------------------------------------------------------------- /frontend/src/liboperator/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/MODULE.bazel -------------------------------------------------------------------------------- /frontend/src/liboperator/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/liboperator/api/v1/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/api/v1/BUILD.bazel -------------------------------------------------------------------------------- /frontend/src/liboperator/api/v1/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/api/v1/messages.go -------------------------------------------------------------------------------- /frontend/src/liboperator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/go.mod -------------------------------------------------------------------------------- /frontend/src/liboperator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/go.sum -------------------------------------------------------------------------------- /frontend/src/liboperator/go_repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/go_repositories.bzl -------------------------------------------------------------------------------- /frontend/src/liboperator/operator/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/operator/BUILD.bazel -------------------------------------------------------------------------------- /frontend/src/liboperator/operator/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/operator/clients.go -------------------------------------------------------------------------------- /frontend/src/liboperator/operator/clients_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/operator/clients_test.go -------------------------------------------------------------------------------- /frontend/src/liboperator/operator/devices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/operator/devices.go -------------------------------------------------------------------------------- /frontend/src/liboperator/operator/devices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/operator/devices_test.go -------------------------------------------------------------------------------- /frontend/src/liboperator/operator/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/operator/errors.go -------------------------------------------------------------------------------- /frontend/src/liboperator/operator/jsonservers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/operator/jsonservers.go -------------------------------------------------------------------------------- /frontend/src/liboperator/operator/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/operator/operator.go -------------------------------------------------------------------------------- /frontend/src/liboperator/operator/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/operator/utils.go -------------------------------------------------------------------------------- /frontend/src/liboperator/protobuf/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/protobuf/BUILD.bazel -------------------------------------------------------------------------------- /frontend/src/liboperator/staticcheck.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/liboperator/staticcheck.conf -------------------------------------------------------------------------------- /frontend/src/operator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/go.mod -------------------------------------------------------------------------------- /frontend/src/operator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/go.sum -------------------------------------------------------------------------------- /frontend/src/operator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/main.go -------------------------------------------------------------------------------- /frontend/src/operator/webui/.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | *.conf.js -------------------------------------------------------------------------------- /frontend/src/operator/webui/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/gts/" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/src/operator/webui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/.gitignore -------------------------------------------------------------------------------- /frontend/src/operator/webui/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ...require('gts/.prettierrc.json') 3 | } 4 | -------------------------------------------------------------------------------- /frontend/src/operator/webui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/README.md -------------------------------------------------------------------------------- /frontend/src/operator/webui/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/angular.json -------------------------------------------------------------------------------- /frontend/src/operator/webui/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/karma.conf.js -------------------------------------------------------------------------------- /frontend/src/operator/webui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/package-lock.json -------------------------------------------------------------------------------- /frontend/src/operator/webui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/package.json -------------------------------------------------------------------------------- /frontend/src/operator/webui/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/src/app/app.module.ts -------------------------------------------------------------------------------- /frontend/src/operator/webui/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /frontend/src/operator/webui/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/src/index.html -------------------------------------------------------------------------------- /frontend/src/operator/webui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/src/main.ts -------------------------------------------------------------------------------- /frontend/src/operator/webui/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/src/polyfills.ts -------------------------------------------------------------------------------- /frontend/src/operator/webui/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/src/styles.scss -------------------------------------------------------------------------------- /frontend/src/operator/webui/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/src/test.ts -------------------------------------------------------------------------------- /frontend/src/operator/webui/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/src/operator/webui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/tsconfig.json -------------------------------------------------------------------------------- /frontend/src/operator/webui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/operator/webui/tsconfig.spec.json -------------------------------------------------------------------------------- /frontend/src/protocutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/frontend/src/protocutil -------------------------------------------------------------------------------- /staging/common/libs/security/gatekeeper_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/staging/common/libs/security/gatekeeper_channel.h -------------------------------------------------------------------------------- /staging/common/libs/security/keymaster_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/staging/common/libs/security/keymaster_channel.cpp -------------------------------------------------------------------------------- /staging/common/libs/security/keymaster_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/staging/common/libs/security/keymaster_channel.h -------------------------------------------------------------------------------- /staging/host/commands/vhal_proxy_server/vsockinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/staging/host/commands/vhal_proxy_server/vsockinfo.h -------------------------------------------------------------------------------- /tools/baseimage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/baseimage/README.md -------------------------------------------------------------------------------- /tools/baseimage/cmd/create_gce_x86_64_image/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/baseimage/cmd/create_gce_x86_64_image/main.go -------------------------------------------------------------------------------- /tools/baseimage/cmd/gce_validate_image/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/baseimage/cmd/gce_validate_image/main.go -------------------------------------------------------------------------------- /tools/baseimage/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/baseimage/go.mod -------------------------------------------------------------------------------- /tools/baseimage/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/baseimage/go.sum -------------------------------------------------------------------------------- /tools/baseimage/pkg/gce/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/baseimage/pkg/gce/helper.go -------------------------------------------------------------------------------- /tools/baseimage/pkg/gce/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/baseimage/pkg/gce/scripts/install.sh -------------------------------------------------------------------------------- /tools/baseimage/pkg/gce/scripts/install_nvidia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/baseimage/pkg/gce/scripts/install_nvidia.sh -------------------------------------------------------------------------------- /tools/baseimage/pkg/gce/scripts/scripts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/baseimage/pkg/gce/scripts/scripts.go -------------------------------------------------------------------------------- /tools/buildutils/build_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/buildutils/build_package.sh -------------------------------------------------------------------------------- /tools/buildutils/build_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/buildutils/build_packages.sh -------------------------------------------------------------------------------- /tools/buildutils/cw/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/buildutils/cw/Containerfile -------------------------------------------------------------------------------- /tools/buildutils/cw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/buildutils/cw/README.md -------------------------------------------------------------------------------- /tools/buildutils/cw/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/buildutils/cw/entrypoint.sh -------------------------------------------------------------------------------- /tools/buildutils/installbazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/buildutils/installbazel.sh -------------------------------------------------------------------------------- /tools/minimerge/.gitignore: -------------------------------------------------------------------------------- 1 | minimerge_tool 2 | -------------------------------------------------------------------------------- /tools/minimerge/cuttlefish_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/minimerge/cuttlefish_args.txt -------------------------------------------------------------------------------- /tools/minimerge/cuttlefish_import_metadata.txt: -------------------------------------------------------------------------------- 1 | last_import: 51a838e6af144b1ae7f6bd5ba28305ef5f376aaa 2 | -------------------------------------------------------------------------------- /tools/minimerge/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/minimerge/import.sh -------------------------------------------------------------------------------- /tools/minimerge/libbase_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/minimerge/libbase_args.txt -------------------------------------------------------------------------------- /tools/minimerge/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/minimerge/main.cpp -------------------------------------------------------------------------------- /tools/testutils/cw/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/testutils/cw/Containerfile -------------------------------------------------------------------------------- /tools/testutils/cw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/testutils/cw/README.md -------------------------------------------------------------------------------- /tools/testutils/cw/fake_gce_metadata_nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/testutils/cw/fake_gce_metadata_nginx.conf -------------------------------------------------------------------------------- /tools/testutils/cw/setup.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/testutils/cw/setup.service -------------------------------------------------------------------------------- /tools/testutils/prepare_host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/testutils/prepare_host.sh -------------------------------------------------------------------------------- /tools/testutils/runcvde2etests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-cuttlefish/HEAD/tools/testutils/runcvde2etests.sh --------------------------------------------------------------------------------