Home
last modified time | relevance | path

Searched refs:WriteAll (Results 1 – 15 of 15) sorted by relevance

/device/google/cuttlefish/common/libs/fs/
Dshared_buf.h86 ssize_t WriteAll(SharedFD fd, const std::string& buf);
96 ssize_t WriteAll(SharedFD fd, const std::vector<char>& buf);
106 ssize_t WriteAll(SharedFD fd, const char* buf, size_t size);
118 return WriteAll(fd, (const char*) binary_data, sizeof(*binary_data)); in WriteAllBinary()
Dshared_buf.cc33 ssize_t WriteAll(SharedFD fd, const char* buf, size_t size) { in WriteAll() function
89 ssize_t WriteAll(SharedFD fd, const std::string& buf) { in WriteAll() function
90 return WriteAll(fd, buf.data(), buf.size()); in WriteAll()
93 ssize_t WriteAll(SharedFD fd, const std::vector<char>& buf) { in WriteAll() function
94 return WriteAll(fd, buf.data(), buf.size()); in WriteAll()
/device/google/cuttlefish/host/commands/vtpm_passthrough/
Dvtpm_passthrough.cpp58 CHECK(cuttlefish::WriteAll(client, length_bytes) == 4) in HandleClient()
60 CHECK(cuttlefish::WriteAll(client, tpm_response) == tpm_response.size()) in HandleClient()
63 CHECK(cuttlefish::WriteAll(client, parity) == 4) in HandleClient()
/device/google/cuttlefish/guest/commands/vtpm_manager/
Dmain.cpp62 CHECK(cuttlefish::WriteAll(out_fd, message) == message.size()) in ReadResponseLoop()
78 CHECK(cuttlefish::WriteAll(out_fd, command) == command.size()) in SendCommand()
103 CHECK(cuttlefish::WriteAll(in_fd, message) == message.size()) in SendCommandLoop()
/device/google/cuttlefish/host/frontend/webrtc/
Dconnection_observer.cpp108 cuttlefish::WriteAll(touch_client_, in OnTouchEvent()
125 cuttlefish::WriteAll(keyboard_client_, in OnKeyboardEvent()
/device/google/cuttlefish/host/commands/launch/
Dlaunch_cvd.cc89 int written = cuttlefish::WriteAll(out, output_string); in WriteFiles()
208 if (cuttlefish::WriteAll(runner_stdin_in, assembler_output) < 0) { in main()
/device/google/cuttlefish/host/commands/logcat_receiver/
Dmain.cpp74 auto written = cuttlefish::WriteAll(logcat_file, buff, read); in main()
/device/google/cuttlefish/common/libs/security/
Dgatekeeper_channel.cpp68 auto written = WriteAll(channel_, to_send_bytes, write_size); in SendMessage()
Dkeymaster_channel.cpp66 auto written = WriteAll(channel_, to_send_bytes, write_size); in SendMessage()
/device/google/cuttlefish/host/commands/modem_simulator/
Dmain.cpp146 cuttlefish::WriteAll(conn, "OK"); // Ignore the return value. Exit anyway. in main()
/device/google/cuttlefish/host/commands/assemble_cvd/
Dimage_aggregator.cc291 if (cuttlefish::WriteAll(out, begin_str) != begin_str.size()) { in WriteBeginning()
301 if (cuttlefish::WriteAll(out, end_str) != end_str.size()) { in WriteEnd()
Dsuper_image_mixer.cc153 if (cuttlefish::WriteAll(misc_output_file, WriteMiscInfo(output_misc)) < 0) { in CombineTargetZipFiles()
/device/google/cuttlefish/common/libs/utils/
Dtee_logging.cpp167 WriteAll(destination.target, output_string); in operator ()()
Dsubprocess.cpp343 int written = WriteAll(pipe_write, *stdin); in RunWithManagedStdio()
/device/google/cuttlefish/host/commands/run_cvd/
Dmain.cc355 cuttlefish::WriteAll(followup_stdin, config_path + "\n"); in ServerLoop()