HomeSort by relevance Sort by last modified time
    Searched refs:Write (Results 201 - 225 of 2248) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webrtc/webrtc/base/
proxyserver.cc 92 Write(ext_socket_.get(), &out_buffer_);
96 Write(int_socket_.get(), &in_buffer_);
111 Write(int_socket_.get(), &in_buffer_);
115 Write(ext_socket_.get(), &out_buffer_);
137 void ProxyBinding::Write(AsyncSocket* socket, FifoBuffer* buffer) {
  /external/libbrillo/brillo/dbus/
data_serialization.h 12 // - Methods to write arbitrary C++ data to D-Bus MessageWriter:
48 // - static void Write(dbus::MessageWriter* writer, const CustomType& value);
122 // Write the |value| of type T to D-Bus message.
197 inline static void Write(dbus::MessageWriter* writer, bool value) {
214 inline static void Write(dbus::MessageWriter* writer, uint8_t value) {
231 inline static void Write(dbus::MessageWriter* writer, int16_t value) {
250 inline static void Write(dbus::MessageWriter* writer, uint16_t value) {
267 inline static void Write(dbus::MessageWriter* writer, int32_t value) {
286 inline static void Write(dbus::MessageWriter* writer, uint32_t value) {
303 inline static void Write(dbus::MessageWriter* writer, int64_t value)
    [all...]
  /system/connectivity/wifilogd/tests/
os_unittest.cpp 256 EXPECT_CALL(*raw_os_, Write(kFakeFd, buffer.data(), buffer.size()))
260 EXPECT_EQ(kExpectedResult, os_->Write(kFakeFd, buffer.data(), buffer.size()));
267 EXPECT_CALL(*raw_os_, Write(kFakeFd, buffer.data(), buffer.size()))
271 EXPECT_EQ(kExpectedResult, os_->Write(kFakeFd, buffer.data(), buffer.size()));
277 EXPECT_CALL(*raw_os_, Write(kFakeFd, buffer.data(), 0)).WillOnce(Return(0));
280 EXPECT_EQ(kExpectedResult, os_->Write(kFakeFd, buffer.data(), buffer.size()));
287 EXPECT_CALL(*raw_os_, Write(kFakeFd, buffer.data(), buffer.size()))
291 EXPECT_EQ(kExpectedResult, os_->Write(kFakeFd, buffer.data(), buffer.size()));
298 EXPECT_CALL(*raw_os_, Write(kFakeFd, buffer.data(), 0))
302 EXPECT_EQ(kExpectedResult, os_->Write(kFakeFd, buffer.data(), buffer.size()))
    [all...]
  /system/extras/simpleperf/
record_file_writer.cpp 84 // Write id section.
90 if (!Write(attr_id.ids.data(), attr_id.ids.size() * sizeof(uint64_t))) {
95 // Write attr section.
106 if (!Write(&file_attr, sizeof(file_attr))) {
164 if (!Write(buf, len)) {
171 bool RecordFileWriter::Write(const void* buf, size_t len) {
173 PLOG(ERROR) << "failed to write to record file '" << filename_ << "'";
233 return Write(zero_data.data(), zero_data.size());
241 if (!Write(record.Binary(), record.size())) {
250 if (!Write(&len, sizeof(len)))
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/binary/
binary_test.go 132 err := Write(buf, order, s1)
133 checkResult(t, "Write", order, err, buf.Bytes(), b)
152 err := Write(buf, BigEndian, res)
205 err := Write(buf, BigEndian, srcSlice.Interface())
224 if err := Write(buf, BigEndian, ts); err == nil {
234 if err := Write(buf, BigEndian, tv.Field(i).Interface()); err == nil {
269 if err := Write(buf, LittleEndian, &b1); err != nil {
284 // write p and see if we can probe only some fields
285 if err := Write(buf, LittleEndian, &p); err != nil {
310 if err := Write(&buf, LittleEndian, &u1); err != nil
    [all...]
  /prebuilts/go/linux-x86/src/encoding/binary/
binary_test.go 132 err := Write(buf, order, s1)
133 checkResult(t, "Write", order, err, buf.Bytes(), b)
152 err := Write(buf, BigEndian, res)
205 err := Write(buf, BigEndian, srcSlice.Interface())
224 if err := Write(buf, BigEndian, ts); err == nil {
234 if err := Write(buf, BigEndian, tv.Field(i).Interface()); err == nil {
269 if err := Write(buf, LittleEndian, &b1); err != nil {
284 // write p and see if we can probe only some fields
285 if err := Write(buf, LittleEndian, &p); err != nil {
310 if err := Write(&buf, LittleEndian, &u1); err != nil
    [all...]
  /external/libmojo/ipc/
ipc_message_utils.h 104 ParamTraits<Type>::Write(m, static_cast<const Type& >(p));
129 static void Write(base::Pickle* m, const param_type& p) { m->WriteBool(p); }
142 static void Write(base::Pickle* m, const param_type& p);
153 static void Write(base::Pickle* m, const param_type& p);
164 static void Write(base::Pickle* m, const param_type& p);
177 static void Write(base::Pickle* m, const param_type& p) { m->WriteInt(p); }
192 static void Write(base::Pickle* m, const param_type& p) { m->WriteInt(p); }
220 static void Write(base::Pickle* m, const param_type& p) {
237 static void Write(base::Pickle* m, const param_type& p) {
255 static void Write(base::Pickle* m, const param_type& p)
    [all...]
  /external/boringssl/src/ssl/test/runner/ed25519/
ed25519.go 116 h.Write(privateKey[:32])
127 h.Write(digest1[32:])
128 h.Write(message)
140 h.Write(encodedR[:])
141 h.Write(privateKey[32:])
142 h.Write(message)
178 h.Write(sig[:32])
179 h.Write(publicKey[:])
180 h.Write(message)
  /external/boringssl/src/ssl/test/runner/
packet_adapter.go 84 func (p *packetAdaptor) Write(b []byte) (int, error) {
89 if _, err := p.Conn.Write(payload); err != nil {
104 if _, err := p.Conn.Write(payload); err != nil {
140 // write.
145 func (r *replayAdaptor) Write(b []byte) (int, error) {
146 n, err := r.Conn.Write(b)
151 r.Conn.Write(r.prevWrite)
164 // optionally damages the final byte of every Write() call.
173 func (d *damageAdaptor) Write(b []byte) (int, error) {
178 return d.Conn.Write(b
    [all...]
  /external/google-breakpad/src/common/
module_unittest.cc 68 TEST(Write, Header) {
71 m.Write(s, ALL_SYMBOL_DATA);
77 TEST(Write, OneLineFunc) {
91 m.Write(s, ALL_SYMBOL_DATA);
101 TEST(Write, RelativeLoadAddress) {
140 m.Write(s, ALL_SYMBOL_DATA);
158 TEST(Write, OmitUnusedFiles) {
195 m.Write(s, ALL_SYMBOL_DATA);
207 TEST(Write, NoCFI) {
242 m.Write(s, NO_CFI)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/cache/
hash.go 45 h.Write([]byte("subkey:"))
46 h.Write(parent[:])
47 h.Write([]byte(desc))
62 // The caller is expected to Write data to it and then call Sum.
68 h.Write(hashSalt)
75 // Write writes data to the running hash.
76 func (h *Hash) Write(b []byte) (int, error) {
81 h.buf.Write(b)
83 return h.h.Write(b)
  /prebuilts/go/linux-x86/src/cmd/go/internal/cache/
hash.go 45 h.Write([]byte("subkey:"))
46 h.Write(parent[:])
47 h.Write([]byte(desc))
62 // The caller is expected to Write data to it and then call Sum.
68 h.Write(hashSalt)
75 // Write writes data to the running hash.
76 func (h *Hash) Write(b []byte) (int, error) {
81 h.buf.Write(b)
83 return h.h.Write(b)
  /frameworks/compile/libbcc/bcinfo/Wrap/
bitcode_wrapperer.cpp 173 return outfile_->Write(buffer, kWordSize);
182 if (!it->Write(buffer, kMaxVariableFieldSize) ||
183 !outfile_->Write(buffer, it->GetTotalSize())) {
242 if (field.Write((uint8_t*)&tempIntField,
248 if (field.Write((uint8_t*)&tempIntField,
323 if (!outfile_->Write(&buffer_[cursor_], block)) return false;
376 return outfile_->Write((const uint8_t*) "\0\0\0\0", 4 - dangling);
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1616/D05AcpiTables/
D05Iort.asl 127 Write Allocate : 0
158 Write Allocate : 0
189 Write Allocate : 0
220 Write Allocate : 0
251 Write Allocate : 0
282 Write Allocate : 0
313 Write Allocate : 0
344 Write Allocate : 0
375 Write Allocate : 0
405 Write Allocate : 0
    [all...]
  /device/google/cuttlefish_common/guest/commands/usbforward/
usb_server.cpp 122 // Write header: number of devices.
129 fd_->Write(&rsp, sizeof(rsp));
132 fd_->Write(&cnt, sizeof(cnt));
133 fd_->Write(&info, sizeof(info));
134 fd_->Write(ifaces.data(), ifaces.size() * sizeof(InterfaceInfo));
138 fd_->Write(&cnt, sizeof(cnt));
149 fd_->Write(&rsp, sizeof(rsp));
155 fd_->Write(&rsp, sizeof(rsp));
253 fd_->Write(&rsp, sizeof(rsp));
255 fd_->Write(&actual_length, sizeof(actual_length))
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Pv660/Pv660AcpiTables/
Iort.asl 81 Write Allocate : 0
112 Write Allocate : 0
143 Write Allocate : 0
174 Write Allocate : 0
204 Write Allocate : 0
233 Write Allocate : 0
  /external/skia/src/utils/win/
SkIStream.h 45 virtual HRESULT STDMETHODCALLTYPE Write(void const* pv
99 virtual HRESULT STDMETHODCALLTYPE Write(void const* pv
112 * A minimal write-only IStream implementation which wraps an SkWIStream.
124 virtual HRESULT STDMETHODCALLTYPE Write(void const* pv
  /external/skqp/src/utils/win/
SkIStream.h 45 virtual HRESULT STDMETHODCALLTYPE Write(void const* pv
99 virtual HRESULT STDMETHODCALLTYPE Write(void const* pv
112 * A minimal write-only IStream implementation which wraps an SkWIStream.
124 virtual HRESULT STDMETHODCALLTYPE Write(void const* pv
  /prebuilts/go/darwin-x86/src/net/
rawconn_unix_test.go 29 if _, err := c.Write(b[:n]); err != nil {
55 err = cc.Write(func(s uintptr) bool {
56 _, operr = syscall.Write(int(s), data)
114 err = cc.Write(op)
116 t.Error("Write should return an error")
119 t.Error("Write shouldn't call op")
  /prebuilts/go/linux-x86/src/net/
rawconn_unix_test.go 29 if _, err := c.Write(b[:n]); err != nil {
55 err = cc.Write(func(s uintptr) bool {
56 _, operr = syscall.Write(int(s), data)
114 err = cc.Write(op)
116 t.Error("Write should return an error")
119 t.Error("Write shouldn't call op")
  /art/runtime/
indenter.h 45 Write(s, to_write);
52 Write(s, n);
63 Write(data, 1u);
72 void Write(const char* s, std::streamsize n) {
100 // Buffer to write output to.
  /bionic/libc/arch-x86/bionic/
__bionic_clone.S 24 movl %eax, -16(%ecx) # Write 'fn'.
26 movl %eax, -12(%ecx) # Write 'arg'.
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Include/Protocol/
HisiSpiFlashProtocol.h 59 HISI_SPI_FLASH_WRITE_INTERFACE Write;
NorFlashProtocol.h 53 UNI_FLASH_WRITE_INTERFACE Write;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/PciCfg/
PciCfg.h 59 PEI_PCI_CFG_PPI_IO Write;

Completed in 693 milliseconds

1 2 3 4 5 6 7 891011>>