Searched refs:write_bytes (Results 1 - 11 of 11) sorted by relevance

/external/compiler-rt/lib/profile/
H A DGCDAProfiling.c120 static void write_bytes(const char *s, size_t len) { function
127 write_bytes((char*)&i, 4);
131 write_bytes((char*)&i, 8);
141 write_bytes(s, strlen(s));
142 write_bytes("\0\0\0\0", 4 - (strlen(s) % 4));
319 write_bytes("adcg", 4);
320 write_bytes(version, 4);
367 write_bytes("\0\0\0\1", 4);
410 write_bytes("\0\0\xa1\1", 4);
458 write_bytes("\
[all...]
/external/chromium_org/mojo/common/
H A Ddata_pipe_utils.cc20 const base::Callback<size_t(const void*, uint32_t)>& write_bytes) {
27 size_t bytes_written = write_bytes.Run(buffer, num_bytes);
19 BlockingCopyHelper(ScopedDataPipeConsumerHandle source, const base::Callback<size_t(const void*, uint32_t)>& write_bytes) argument
/external/chromium_org/third_party/webrtc/base/
H A Dbytebuffer_unittest.cc172 char write_bytes[] = "foo"; local
173 buffer.WriteBytes(write_bytes, 3);
177 EXPECT_EQ(write_bytes[i], read_bytes[i]);
183 memcpy(write_dst, write_bytes, 3);
187 EXPECT_EQ(write_bytes[i], read_bytes[i]);
/external/chromium_org/printing/
H A Dimage.cc73 int write_bytes = base::WriteFile( local
77 success = (write_bytes == static_cast<int>(compressed.size()));
/external/kernel-headers/original/uapi/linux/
H A Dtaskstats.h152 __u64 write_bytes; /* bytes of write I/O */ member in struct:taskstats
/external/chromium_org/net/socket/
H A Dtcp_socket_win.cc533 base::StatsCounter write_bytes("tcp.write_bytes");
534 write_bytes.Add(rv);
966 base::StatsCounter write_bytes("tcp.write_bytes");
967 write_bytes.Add(num_bytes);
H A Dtcp_socket_libevent.cc591 base::StatsCounter write_bytes("tcp.write_bytes");
592 write_bytes.Add(rv);
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dpython_message.py781 def InternalSerialize(self, write_bytes):
783 field_descriptor._encoder(write_bytes, field_value)
785 write_bytes(tag_bytes)
786 write_bytes(value_bytes)
/external/chromium_org/net/udp/
H A Dudp_socket_libevent.cc459 base::StatsCounter write_bytes("udp.write_bytes");
460 write_bytes.Add(result);
H A Dudp_socket_win.cc616 base::StatsCounter write_bytes("udp.write_bytes");
617 write_bytes.Add(result);
/external/protobuf/python/google/protobuf/
H A Dreflection.py810 def InternalSerialize(self, write_bytes):
812 field_descriptor._encoder(write_bytes, field_value)

Completed in 273 milliseconds