Home
last modified time | relevance | path

Searched refs:to_string (Results 1 – 14 of 14) sorted by relevance

/device/google/cuttlefish_common/host/commands/launch/
Dlaunch.cc30 return std::string{"--guest_ports="} + std::to_string(kEmulatorPort); in GetGuestPortArg()
34 return std::string{"--host_ports="} + std::to_string(GetHostPort()); in GetHostPortArg()
38 return std::string{"--addresses=127.0.0.1:"} + std::to_string(GetHostPort()); in GetAdbConnectorTcpArg()
43 + std::to_string(config.vsock_guest_cid()) in GetAdbConnectorVsockArg()
214 auto port_options = "-port=" + std::to_string(config.vnc_server_port()); in LaunchVNCServerIfEnabled()
252 auto port_options = "-port=" + std::to_string(config.stream_audio_port()); in LaunchStreamAudioIfEnabled()
298 std::string{"--tcp_port="} + std::to_string(GetHostPort())); in LaunchSocketVsockProxyIfEnabled()
300 std::to_string(config.vsock_guest_cid())); in LaunchSocketVsockProxyIfEnabled()
308 std::string{"--tcp_port="} + std::to_string(GetHostPort())); in LaunchSocketVsockProxyIfEnabled()
310 std::to_string(config.vsock_guest_cid())); in LaunchSocketVsockProxyIfEnabled()
Ddata_image.cc70 count += std::to_string(image_mb); in CreateBlankImage()
Dmain.cc212 config_env += "127.0.0.1:" + std::to_string(GetHostPort()); in WriteCuttlefishEnvironment()
Dflags.cc275 tmp_config_obj.set_adb_ip_and_port("127.0.0.1:" + std::to_string(GetHostPort())); in InitializeCuttlefishConfiguration()
/device/google/cuttlefish_common/host/libs/vm_manager/
Dqemu_manager.cpp72 LogAndSetEnv("memory_mb", std::to_string(config_->memory_mb())); in StartCommand()
73 LogAndSetEnv("cpus", std::to_string(config_->cpus())); in StartCommand()
97 std::to_string(config_->ivshmem_vector_count())); in StartCommand()
99 LogAndSetEnv("vsock_guest_cid", std::to_string(config_->vsock_guest_cid())); in StartCommand()
/device/generic/goldfish/camera/
DEmulatedQemuCamera.cpp150 std::string preferred_size = std::to_string(resolutions[0].first) in Initialize()
151 + "x" + std::to_string(resolutions[0].second); in Initialize()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_xml_etree.py69 def serialize(elem, to_string=True, **options): argument
74 if to_string:
/device/google/crosshatch/health/
DHealthService.cpp119 if (!android::base::WriteStringToFile(std::to_string(props->batteryLevel), in healthd_board_battery_update()
/device/generic/goldfish-opengl/system/hwc2/
DEmuHWC2.cpp284 to_string(descriptor).c_str()); in doGetFunction()
334 ALOGV("registerCallback(%s, %p, %p)", to_string(descriptor).c_str(), in registerCallback()
343 ALOGV("unregisterCallback(%s)", to_string(descriptor).c_str()); in registerCallback()
492 to_string(Error::BadConfig).c_str()); in getActiveConfig()
514 to_string((Attribute)attribute).c_str(), *outValue); in getDisplayAttribute()
542 to_string(element.second).c_str()); in getChangedCompositionTypes()
924 (uint32_t)mId, to_string(mode).c_str()); in setPowerMode()
/device/google/cuttlefish_common/host/frontend/stream_audio/opuscpp/
Dopus_wrapper.cc42 return "Unknown error code: " + std::to_string(error); in ErrorToString()
/device/google/cuttlefish_common/guest/hals/ril/libril/
Dril_service.cpp1205 std::to_string((int) radioTechnology + 2).c_str(), in setupDataCall()
1206 std::to_string((int) dataProfileInfo.profileId).c_str(), in setupDataCall()
1210 std::to_string((int) dataProfileInfo.authType).c_str(), in setupDataCall()
1223 std::to_string((int) radioTechnology + 2).c_str(), in setupDataCall()
1224 std::to_string((int) dataProfileInfo.profileId).c_str(), in setupDataCall()
1228 std::to_string((int) dataProfileInfo.authType).c_str(), in setupDataCall()
1231 std::to_string(dataProfileInfo.supportedApnTypesBitmap).c_str(), in setupDataCall()
1232 std::to_string(dataProfileInfo.bearerBitmap).c_str(), in setupDataCall()
1234 std::to_string(dataProfileInfo.mtu).c_str(), in setupDataCall()
1382 2, (std::to_string(cid)).c_str(), reasonRadioShutDown ? "1" : "0"); in deactivateDataCall()
[all …]
/device/google/cuttlefish_common/guest/hals/hwcomposer/vsoc/
Dhwcomposer.cpp106 return std::string("Unknown (") + std::to_string(type) + ")"; in CompositionString()
/device/google/cuttlefish_common/guest/hals/hwcomposer/cutf_cvm/
Dhwcomposer.cpp98 return std::string("Unknown (") + std::to_string(type) + ")"; in CompositionString()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
Dlibpython.py1093 def to_string (self): member in PyObjectPtrPrinter