HomeSort by relevance Sort by last modified time
    Searched refs:CuttlefishConfig (Results 1 - 25 of 28) sorted by null

1 2

  /device/google/cuttlefish_common/host/commands/launch/
ril_config.h 21 void ConfigureRil(vsoc::CuttlefishConfig* config)
flags.h 5 vsoc::CuttlefishConfig* InitFilesystemAndCreateConfig(int* argc, char*** argv);
6 std::string GetConfigFilePath(const vsoc::CuttlefishConfig& config);
launch.h 10 bool AdbUsbEnabled(const vsoc::CuttlefishConfig& config);
11 void ValidateAdbModeFlag(const vsoc::CuttlefishConfig& config);
13 cvd::Command GetIvServerCommand(const vsoc::CuttlefishConfig& config);
14 cvd::Command GetKernelLogMonitorCommand(const vsoc::CuttlefishConfig& config,
17 void LaunchLogcatReceiverIfEnabled(const vsoc::CuttlefishConfig& config,
19 void LaunchUsbServerIfEnabled(const vsoc::CuttlefishConfig& config,
21 void LaunchVNCServerIfEnabled(const vsoc::CuttlefishConfig& config,
24 void LaunchStreamAudioIfEnabled(const vsoc::CuttlefishConfig& config,
28 const vsoc::CuttlefishConfig& config,
31 const vsoc::CuttlefishConfig& config)
    [all...]
pre_launch_initializers.h 27 void InitializeScreenRegion(const vsoc::CuttlefishConfig& config);
31 static void Initialize(const vsoc::CuttlefishConfig& config) {
data_image.h 7 bool ApplyDataImagePolicy(const vsoc::CuttlefishConfig& config);
launch.cc 41 std::string GetAdbConnectorVsockArg(const vsoc::CuttlefishConfig& config) {
47 bool AdbModeEnabled(const vsoc::CuttlefishConfig& config, const char* mode) {
51 bool AdbTunnelEnabled(const vsoc::CuttlefishConfig& config) {
55 bool AdbVsockTunnelEnabled(const vsoc::CuttlefishConfig& config) {
60 bool AdbVsockHalfTunnelEnabled(const vsoc::CuttlefishConfig& config) {
65 bool AdbTcpConnectorEnabled(const vsoc::CuttlefishConfig& config) {
73 bool AdbVsockConnectorEnabled(const vsoc::CuttlefishConfig& config) {
79 const vsoc::CuttlefishConfig& config) {
93 bool LogcatReceiverEnabled(const vsoc::CuttlefishConfig& config) {
97 bool AdbUsbEnabled(const vsoc::CuttlefishConfig& config)
    [all...]
screen_region_handler.cc 23 void InitializeScreenRegion(const vsoc::CuttlefishConfig& config) {
data_image.cc 77 bool ApplyDataImagePolicy(const vsoc::CuttlefishConfig& config) {
main.cc 69 const vsoc::CuttlefishConfig& config) {
185 const vsoc::CuttlefishConfig& config) {
199 bool WriteCuttlefishEnvironment(const vsoc::CuttlefishConfig& config) {
221 cvd::SharedFD DaemonizeLauncher(const vsoc::CuttlefishConfig& config) {
flags.cc 246 vsoc::CuttlefishConfig tmp_config_obj;
607 vsoc::CuttlefishConfig* InitFilesystemAndCreateConfig(int* argc, char*** argv) {
641 auto config = vsoc::CuttlefishConfig::Get();
687 std::string GetConfigFilePath(const vsoc::CuttlefishConfig& config) {
  /device/google/cuttlefish_common/host/libs/config/
cuttlefish_config.cpp 166 std::string CuttlefishConfig::instance_dir() const {
169 void CuttlefishConfig::set_instance_dir(const std::string& instance_dir) {
173 std::string CuttlefishConfig::vm_manager() const {
176 void CuttlefishConfig::set_vm_manager(const std::string& name) {
180 std::string CuttlefishConfig::hardware_name() const {
183 void CuttlefishConfig::set_hardware_name(const std::string& name) {
187 std::string CuttlefishConfig::serial_number() const {
190 void CuttlefishConfig::set_serial_number(const std::string& serial_number) {
194 int CuttlefishConfig::cpus() const { return (*dictionary_)[kCpus].asInt(); }
195 void CuttlefishConfig::set_cpus(int cpus) { (*dictionary_)[kCpus] = cpus;
    [all...]
cuttlefish_config.h 33 class CuttlefishConfig {
35 static CuttlefishConfig* Get();
37 CuttlefishConfig();
38 ~CuttlefishConfig();
324 static CuttlefishConfig* BuildConfigImpl();
326 CuttlefishConfig(const CuttlefishConfig&) = delete;
327 CuttlefishConfig& operator=(const CuttlefishConfig&) = delete;
  /device/google/cuttlefish_common/host/libs/vm_manager/
crosvm_manager.h 31 static void ConfigureBootDevices(vsoc::CuttlefishConfig* config);
33 CrosvmManager(const vsoc::CuttlefishConfig* config);
qemu_manager.h 29 static void ConfigureBootDevices(vsoc::CuttlefishConfig* config);
31 QemuManager(const vsoc::CuttlefishConfig* config);
vm_manager.h 36 const vsoc::CuttlefishConfig* config);
38 static void ConfigureBootDevices(vsoc::CuttlefishConfig* config);
53 const vsoc::CuttlefishConfig* config_;
54 VmManager(const vsoc::CuttlefishConfig* config);
59 std::function<VmManager*(const vsoc::CuttlefishConfig*)> builder;
62 std::function<void(vsoc::CuttlefishConfig*)> configure_boot_devices;
vm_manager.cpp 30 VmManager::VmManager(const vsoc::CuttlefishConfig* config)
35 VmManager* GetManagerSingleton(const vsoc::CuttlefishConfig* config) {
46 [](const vsoc::CuttlefishConfig* config) {
50 [](vsoc::CuttlefishConfig* c) {
58 [](const vsoc::CuttlefishConfig* config) {
63 [](vsoc::CuttlefishConfig* c) {
71 const vsoc::CuttlefishConfig* config) {
88 void VmManager::ConfigureBootDevices(vsoc::CuttlefishConfig* config) {
crosvm_manager.cpp 33 std::string GetControlSocketPath(const vsoc::CuttlefishConfig* config) {
56 void CrosvmManager::ConfigureBootDevices(vsoc::CuttlefishConfig* config) {
63 CrosvmManager::CrosvmManager(const vsoc::CuttlefishConfig* config)
qemu_manager.cpp 45 std::string GetMonitorPath(const vsoc::CuttlefishConfig* config) {
58 void QemuManager::ConfigureBootDevices(vsoc::CuttlefishConfig* config) {
65 QemuManager::QemuManager(const vsoc::CuttlefishConfig* config)
  /device/google/cuttlefish_common/host/commands/ivserver/
main.cpp 41 auto config = vsoc::CuttlefishConfig::Get();
  /device/google/cuttlefish_common/host/frontend/vnc_server/
vnc_utils.h 73 return vsoc::CuttlefishConfig::Get()->x_res();
83 return vsoc::CuttlefishConfig::Get()->y_res();
screen_connector.cpp 55 SocketBasedScreenConnector(vsoc::CuttlefishConfig* config) : config_(config) {
139 vsoc::CuttlefishConfig* config_;
151 auto config = vsoc::CuttlefishConfig::Get();
  /device/google/cuttlefish_common/host/commands/adbshell/
main.cpp 76 auto instance = vsoc::CuttlefishConfig::Get()->adb_device_name();
  /device/google/cuttlefish_common/host/commands/logcat_receiver/
main.cpp 32 auto config = vsoc::CuttlefishConfig::Get();
  /device/google/cuttlefish_common/host/commands/virtual_usb_manager/
main.cc 37 auto config = vsoc::CuttlefishConfig::Get();
  /device/google/cuttlefish_common/host/commands/kernel_log_monitor/
main.cc 74 auto config = vsoc::CuttlefishConfig::Get();

Completed in 166 milliseconds

1 2