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

1 2 3 4

  /external/clang/test/CodeGen/
2003-11-19-BitFieldArray.c 4 int write_buf; member in struct:_GIOChannel
  /system/extras/tests/directiotest/
directiotest.c 176 void *read_buf = NULL, *write_buf = NULL; local
213 write_buf = pagealign_alloc(test_size);
214 if (!read_buf || !write_buf) {
239 init_test_buf(write_buf, cur_blk, test_size);
241 if (do_write(fd, write_buf, cur_blk * blk_size, test_size) !=
252 if (memcmp(write_buf, read_buf, test_size)) {
256 dump_hex(write_buf, test_size);
269 if (write_buf)
270 pagealign_free(write_buf, test_size);
  /external/chromium_org/net/socket/
ssl_server_socket_unittest.cc 273 scoped_refptr<IOBuffer> write_buf = new StringIOBuffer(kTestData); local
278 server.Write(write_buf.get(), kTestDataSize, CompletionCallback());
292 written = client.Write(write_buf.get(), kTestDataSize, CompletionCallback());
424 scoped_refptr<StringIOBuffer> write_buf = local
433 write_buf.get(), write_buf->size(), write_callback.callback());
445 while (read_buf->BytesConsumed() < write_buf->size()) {
453 EXPECT_EQ(write_buf->size(), read_buf->BytesConsumed());
455 EXPECT_EQ(0, memcmp(write_buf->data(), read_buf->data(), write_buf->size()))
507 scoped_refptr<StringIOBuffer> write_buf = new StringIOBuffer("testing123"); local
    [all...]
unix_domain_client_socket_posix_unittest.cc 94 scoped_refptr<DrainableIOBuffer> write_buf(
99 retry_count > 0 && write_buf->BytesRemaining() > 0;
101 int rv = socket->Write(write_buf.get(),
102 write_buf->BytesRemaining(),
104 EXPECT_GE(write_buf->BytesRemaining(), rv);
110 write_buf->DidConsume(rv);
112 EXPECT_LE(0, write_buf->BytesRemaining());
113 return write_buf->BytesConsumed();
deterministic_socket_data_unittest.cc 184 scoped_refptr<IOBuffer> write_buf(new IOBuffer(len));
185 memcpy(write_buf->data(), data, len);
188 write_buf.get(),
479 scoped_refptr<IOBuffer> write_buf(new IOBuffer(kLen1));
480 memcpy(write_buf->data(), kMsg1, kLen1);
483 write_buf.get(),
  /external/e2fsprogs/lib/ext2fs/
ext_attr.c 84 char *write_buf; local
91 write_buf = buf;
94 write_buf = (char *) inbuf;
96 retval = io_channel_write_blk64(fs->io, block, 1, write_buf);
  /hardware/invensense/60xx/mlsdk/platform/include/
i2c.h 90 void set_i2c_lltransfer_cb(int (*func)(int fd, int client_addr, const char *write_buf, unsigned int write_len,
98 int i2c_lltransfer (int fd, int client_addr, const char *write_buf, unsigned int write_len,
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
mem_fs_node_test.cc 328 const char write_buf[] = "hello world"; local
336 ASSERT_EQ(0, handle.Write(write_buf, strlen(write_buf), &byte_count));
337 ASSERT_EQ(byte_count, strlen(write_buf));
346 ASSERT_EQ(0, handle.Write(write_buf, strlen(write_buf), &byte_count));
347 ASSERT_EQ(byte_count, strlen(write_buf));
355 ASSERT_EQ(EACCES, handle.Write(write_buf, strlen(write_buf), &byte_count));
  /external/chromium_org/net/server/
http_server.cc 65 bool writing_in_progress = !connection->write_buf()->IsEmpty();
66 if (connection->write_buf()->Append(data) && !writing_in_progress)
127 connection->write_buf()->set_max_buffer_size(size);
275 HttpConnection::QueuedWriteIOBuffer* write_buf = connection->write_buf(); local
276 while (rv == OK && write_buf->GetSizeToWrite() > 0) {
278 write_buf,
279 write_buf->GetSizeToWrite(),
303 connection->write_buf()->DidConsume(rv);
http_connection.h 119 QueuedWriteIOBuffer* write_buf() const { return write_buf_.get(); } function in class:net::HttpConnection
  /external/chromium_org/remoting/protocol/
fake_authenticator.cc 43 scoped_refptr<net::IOBuffer> write_buf = new net::IOBuffer(1); local
44 write_buf->data()[0] = 0;
46 write_buf.get(), 1,
  /external/libnfc-nxp/src/
phFriNfc_TopazDynamicMap.c 1289 uint8_t write_buf[] = {0x00}; local
1636 uint8_t write_buf[TOPAZ_WRITE_8_DATA_LENGTH]; local
3214 uint8_t write_buf[TOPAZ_WRITE_8_DATA_LENGTH]; local
3334 uint8_t write_buf[TOPAZ_WRITE_8_DATA_LENGTH]; local
3506 uint8_t write_buf[TOPAZ_WRITE_8_DATA_LENGTH]; local
3822 uint8_t write_buf[TOPAZ_WRITE_8_DATA_LENGTH]; local
    [all...]
  /external/chromium_org/content/browser/appcache/
appcache_disk_cache_unittest.cc 153 scoped_refptr<net::IOBuffer> write_buf(new net::WrappedIOBuffer(kData));
154 entry1->Write(0, 0, write_buf.get(), kDataLen, completion_callback_);
160 entry2->Write(0, 0, write_buf.get(), kDataLen, completion_callback_);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
fuse.h 244 int (*write_buf)(const char*, member in struct:fuse_operations
  /external/valgrind/main/coregrind/
vgdb.c 384 Bool write_buf(int fd, char* buf, int size, const char* desc, Bool notify) function
445 return write_buf(to_pid, buf, nrread, "to_pid", /* notify */ True);
469 return write_buf(to_gdb, buf, nrread, "to_gdb", /* notify */ False);
674 write_buf(sigusr1_fd, &control_c, 1,
961 write_buf(to_pid, buf, 1, "write \\003 to wake up", /* notify */ True);
985 write_buf(to_pid, hexcommand, strlen(hexcommand),
    [all...]
  /system/core/libziparchive/
zip_archive.cc 979 uint8_t write_buf[kBufSize]; local
    [all...]
  /external/chromium_org/jingle/glue/
fake_ssl_client_socket_unittest.cc 170 scoped_refptr<net::IOBuffer> write_buf(
173 fake_ssl_client_socket.Write(write_buf.get(),
  /development/ndk/platforms/android-3/include/linux/mtd/
nand.h 185 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len); member in struct:nand_chip
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/mtd/
nand.h 185 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len); member in struct:nand_chip
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/mtd/
nand.h 185 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len); member in struct:nand_chip
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/mtd/
nand.h 185 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len); member in struct:nand_chip
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/mtd/
nand.h 185 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len); member in struct:nand_chip
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/mtd/
nand.h 185 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len); member in struct:nand_chip
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/mtd/
nand.h 185 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len); member in struct:nand_chip
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/mtd/
nand.h 185 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len); member in struct:nand_chip

Completed in 1528 milliseconds

1 2 3 4