/device/google/cuttlefish/common/libs/confui/ |
D | protocol.cpp | 165 auto& contents = message.additional_info_; in ToConfUiMessage() local 171 if (contents.size() != 2) { in ToConfUiMessage() 177 const std::string success_str(contents[0].begin(), contents[0].end()); in ToConfUiMessage() 179 const std::string status_message(contents[1].begin(), contents[1].end()); in ToConfUiMessage()
|
/device/google/gs201/usb/usb/ |
D | Usb.cpp | 1024 string contents; in report_overheat_event() local 1028 if (ReadFileToString(string(kOverheatStatsPath) + "trip_time", &contents)) { in report_overheat_event() 1029 overheat_info.set_time_to_overheat_secs(stoi(Trim(contents))); in report_overheat_event() 1034 if (ReadFileToString(string(kOverheatStatsPath) + "hysteresis_time", &contents)) { in report_overheat_event() 1035 overheat_info.set_time_to_hysteresis_secs(stoi(Trim(contents))); in report_overheat_event() 1040 if (ReadFileToString(string(kOverheatStatsPath) + "cleared_time", &contents)) { in report_overheat_event() 1041 overheat_info.set_time_to_inactive_secs(stoi(Trim(contents))); in report_overheat_event()
|
/device/google/gs101/usb/usb/ |
D | Usb.cpp | 1005 string contents; in report_overheat_event() local 1009 if (ReadFileToString(string(kOverheatStatsPath) + "trip_time", &contents)) { in report_overheat_event() 1010 overheat_info.set_time_to_overheat_secs(stoi(Trim(contents))); in report_overheat_event() 1015 if (ReadFileToString(string(kOverheatStatsPath) + "hysteresis_time", &contents)) { in report_overheat_event() 1016 overheat_info.set_time_to_hysteresis_secs(stoi(Trim(contents))); in report_overheat_event() 1021 if (ReadFileToString(string(kOverheatStatsPath) + "cleared_time", &contents)) { in report_overheat_event() 1022 overheat_info.set_time_to_inactive_secs(stoi(Trim(contents))); in report_overheat_event()
|
/device/google/cuttlefish/common/libs/utils/ |
D | files.cpp | 439 std::string contents; in ReadFile() local 450 contents.resize(in.tellg()); in ReadFile() 452 in.read(&contents[0], contents.size()); in ReadFile() 454 return(contents); in ReadFile()
|
D | subprocess.cpp | 522 std::string contents = in AsBashScript() local 525 contents += " &> " + AbsolutePath(redirected_stdio_path); in AsBashScript() 527 return contents; in AsBashScript()
|
D | proc_file_utils.cpp | 171 std::string contents = CF_EXPECT(ReadAll(cmdline_file_path)); in GetCmdArgs() local 172 return TokenizeByNullChar(contents); in GetCmdArgs()
|
/device/generic/goldfish-opengl/system/hwc3/ |
D | Device.cpp | 77 const std::string contents = dictionary.toStyledString(); in savePersistentKeyValues() local 78 if (!::android::base::WriteStringToFile(contents, path)) { in savePersistentKeyValues()
|
/device/google/raviole-kernels/5.10/24Q3-12115410/original-kernel-headers/input/ |
D | touch_offload.h | 281 } contents; member 316 } contents; member
|
/device/google/redbull-kernel/sm7250/kernel-headers/input/ |
D | touch_offload.h | 135 } contents; member 155 } contents; member
|
/device/google/bluejay-kernels/5.10/24Q3-12115410/original-kernel-headers/input/ |
D | touch_offload.h | 281 } contents; member 316 } contents; member
|
/device/google/redbull-kernel/sm7250/original-kernel-headers/input/ |
D | touch_offload.h | 277 } contents; member 312 } contents; member
|
/device/google/cuttlefish/host/libs/config/ |
D | instance_nums.cpp | 147 auto contents = info.current_value; in GflagsInstanceNumsFlag() local 148 return CF_EXPECT(ParseInstanceNums(contents)); in GflagsInstanceNumsFlag()
|
/device/google/zuma/usb/usb/ |
D | Usb.cpp | 1161 string contents; in report_overheat_event() local 1165 if (ReadFileToString(string(kOverheatStatsPath) + "trip_time", &contents)) { in report_overheat_event() 1166 overheat_info.set_time_to_overheat_secs(stoi(Trim(contents))); in report_overheat_event() 1171 if (ReadFileToString(string(kOverheatStatsPath) + "hysteresis_time", &contents)) { in report_overheat_event() 1172 overheat_info.set_time_to_hysteresis_secs(stoi(Trim(contents))); in report_overheat_event() 1177 if (ReadFileToString(string(kOverheatStatsPath) + "cleared_time", &contents)) { in report_overheat_event() 1178 overheat_info.set_time_to_inactive_secs(stoi(Trim(contents))); in report_overheat_event()
|
/device/google/contexthub/firmware/os/platform/stm32/lkr/ |
D | app.lkr | 23 * initial contents of RW data 24 * initial contents of the GOT
|
D | stm32f4xx.bl.lkr | 33 /* initial EEDATA contents */
|
/device/google/zumapro/usb/usb/ |
D | Usb.cpp | 1251 string contents; in report_overheat_event() local 1255 if (ReadFileToString(string(kOverheatStatsPath) + "trip_time", &contents)) { in report_overheat_event() 1256 overheat_info.set_time_to_overheat_secs(stoi(Trim(contents))); in report_overheat_event() 1261 if (ReadFileToString(string(kOverheatStatsPath) + "hysteresis_time", &contents)) { in report_overheat_event() 1262 overheat_info.set_time_to_hysteresis_secs(stoi(Trim(contents))); in report_overheat_event() 1267 if (ReadFileToString(string(kOverheatStatsPath) + "cleared_time", &contents)) { in report_overheat_event() 1268 overheat_info.set_time_to_inactive_secs(stoi(Trim(contents))); in report_overheat_event()
|
/device/google/cuttlefish/host/commands/assemble_cvd/ |
D | super_image_mixer.cc | 79 auto contents = archive->ExtractToMemory(build_prop_file); in FindImports() local 80 auto lines = android::base::Split(contents, "\n"); in FindImports()
|
/device/google/cuttlefish_vmm/qemu/third_party/rust/crates/pkg-config/ |
D | Cargo.toml | 10 # See Cargo.toml.orig for the original contents.
|
/device/google/gs-common/betterbug/sepolicy/product/private/ |
D | better_bug_app.te | 29 # trace attached to the bugreport (but not its contents, which will go in the
|
/device/linaro/dragonboard/shared/utils/qrtr/ |
D | qrtr.py | 26 cast(ptr, POINTER(py_object)).contents.value.append(res)
|
/device/sample/frameworks/PlatformLibrary/ |
D | README.txt | 16 extension in the /system/etc/permissions directory with the following contents:
|
/device/google/cuttlefish/tools/gigabyte-ampere-cuttlefish-installer/preseed/ |
D | preseed.cfg | 41 # You may set this to any valid setting for $TZ; see the contents of
|
/device/generic/opengl-transport/host/libs/virglrenderer/GLESv3_dec/ |
D | gles3.in | 247 ## to update the host with the new buffer contents: 256 ## x holds host GPU contents | | 271 ## x holds host GPU contents | |
|
/device/google/pantah/ |
D | NOTICE | 128 wherever such third-party notices normally appear. The contents
|
/device/google/gs201/ |
D | NOTICE | 128 wherever such third-party notices normally appear. The contents
|