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

1 2

  /external/perfetto/include/perfetto/base/
file_utils.h 40 ssize_t WriteAll(int fd, const void* buf, size_t count);
  /external/perfetto/src/base/
metatrace.cc 59 ignore_result(WriteAll(fd, json, static_cast<size_t>(len)));
debug_crash_stack_trace.cc 69 perfetto::base::WriteAll(STDERR_FILENO, str, sizeof(str));
77 perfetto::base::WriteAll(STDERR_FILENO, &c, 1);
201 perfetto::base::WriteAll(STDERR_FILENO, sym.sym_name,
209 perfetto::base::WriteAll(STDERR_FILENO, sym.file_name,
file_utils.cc 74 ssize_t WriteAll(int fd, const void* buf, size_t count) {
utils_unittest.cc 86 ignore_result(WriteAll(*pipe.wr, "foo\0", 4));
  /external/bsdiff/
buffer_file.cc 36 if (!WriteAll(file_, buffer_.data(), buffer_.size()))
bspatch.cc 76 if (!WriteAll(file, buf, bytes_to_output)) {
77 PLOG(ERROR) << "WriteAll() failed.";
101 bool WriteAll(const std::unique_ptr<FileInterface>& file,
323 if (!WriteAll(new_file, new_buf.data(), read_bytes)) {
  /external/bsdiff/include/bsdiff/
bspatch.h 47 bool WriteAll(const std::unique_ptr<FileInterface>& file,
  /external/webrtc/webrtc/base/
logsinks.cc 43 stream_->WriteAll(message.c_str(), message.size(), nullptr, nullptr);
optionsfile.cc 78 res = stream.WriteAll(i->first.c_str(), i->first.length(), &written,
83 res = stream.WriteAll("=", 1, &written, &error);
87 res = stream.WriteAll(i->second.c_str(), i->second.length(), &written,
92 res = stream.WriteAll("\n", 1, &written, &error);
filerotatingstream_unittest.cc 50 EXPECT_EQ(SR_SUCCESS, stream_->WriteAll(data, data_len, nullptr, nullptr));
209 EXPECT_EQ(SR_SUCCESS, stream_->WriteAll(data, data_len, nullptr, nullptr));
273 stream_->WriteAll(buffer.get(), buffer_size, nullptr, nullptr));
300 stream_->WriteAll(buffer.get(), buffer_size, nullptr, nullptr));
logging_unittest.cc 32 static_cast<Base*>(this)->WriteAll(
  /external/perfetto/src/profiling/memory/
shared_ring_buffer_fuzzer.cc 70 PERFETTO_CHECK(base::WriteAll(*fd, &header, sizeof(header)) != -1);
72 PERFETTO_CHECK(base::WriteAll(*fd, payload, payload_size) != -1);
shared_ring_buffer_write_fuzzer.cc 75 PERFETTO_CHECK(base::WriteAll(*fd, &metadata_page, sizeof(metadata_page)) !=
78 PERFETTO_CHECK(base::WriteAll(*fd, payload, payload_size) != -1);
  /external/perfetto/src/traced/probes/filesystem/
fs_mount_unittest.cc 56 ASSERT_EQ(base::WriteAll(tmp_file.fd(), kMounts, sizeof(kMounts)),
  /development/tools/repo_diff/service/repodiff/persistence/filesystem/
csv.go 59 return writer.WriteAll(rowsOfCols)
  /external/perfetto/src/tracing/ipc/
posix_shared_memory_unittest.cc 73 ASSERT_EQ(7, base::WriteAll(fd_num, "foobar", 7));
  /external/boringssl/src/ssl/test/
bssl_shim.cc 232 // WriteAll writes |in_len| bytes from |in| to |ssl|, resolving any asynchronous
234 static int WriteAll(SSL *ssl, const void *in_, size_t in_len) {
818 if (WriteAll(ssl, result.data(), result.size()) < 0) {
834 if (WriteAll(ssl, result.data(), result.size()) < 0) {
849 if (WriteAll(ssl, &secret_len, sizeof(secret_len)) < 0 ||
850 WriteAll(ssl, read_secret.data(), read_secret.size()) < 0 ||
851 WriteAll(ssl, write_secret.data(), write_secret.size()) < 0) {
871 if (WriteAll(ssl, tls_unique, tls_unique_len) < 0) {
901 if (WriteAll(ssl, buf.get(), len) < 0) {
924 if (WriteAll(ssl, kInitialWrite, strlen(kInitialWrite)) < 0)
    [all...]
  /external/webrtc/talk/media/base/
rtpdump_unittest.cc 94 stream.WriteAll(new_line, strlen(new_line), NULL, NULL));
103 stream.WriteAll(new_line2, strlen(new_line2), NULL, NULL));
112 stream.WriteAll(new_line3, strlen(new_line3), NULL, NULL));
rtpdump.cc 417 stream_->WriteAll(data, data_len, NULL, NULL);
  /external/perfetto/src/perfetto_cmd/
rate_limiter.cc 214 ssize_t written = base::WriteAll(out_fd.get(), &buf, size);
  /external/perfetto/src/traced/probes/ftrace/
ftrace_procfs.cc 49 base::ignore_result(base::WriteAll(FtraceProcfs::g_kmesg_fd, s, strlen(s)));
58 ssize_t written = base::WriteAll(fd.get(), str.c_str(), str.length());
  /external/perfetto/src/ipc/
client_impl_unittest.cc 353 ASSERT_EQ(static_cast<size_t>(base::WriteAll(tx_file.fd(), kFileContent,
399 ASSERT_EQ(static_cast<size_t>(base::WriteAll(tx_file.fd(), kFileContent,
host_impl_unittest.cc 334 ASSERT_EQ(static_cast<size_t>(base::WriteAll(tx_file.fd(), kFileContent,
376 ASSERT_EQ(static_cast<size_t>(base::WriteAll(tx_file.fd(), kFileContent,
  /external/perfetto/tools/trace_to_text/
trace_to_profile.cc 271 PERFETTO_CHECK(base::WriteAll(*fd, serialized.c_str(), serialized.size()) ==

Completed in 1455 milliseconds

1 2