HomeSort by relevance Sort by last modified time
    Searched defs:write_bytes (Results 1 - 22 of 22) sorted by null

  /external/linux-kselftest/tools/testing/selftests/vm/
hugepage-mmap.c 44 static void write_bytes(char *addr) function
85 write_bytes(addr);
map_hugetlb.c 40 static void write_bytes(char *addr) function
74 write_bytes(addr);
  /external/ltp/utils/ffsb-6.0-rc2/
ffsb_op.h 84 uint64_t write_bytes; member in struct:ffsb_op_results
  /external/webrtc/webrtc/base/
bytebuffer_unittest.cc 173 char write_bytes[] = "foo"; local
174 buffer.WriteBytes(write_bytes, 3);
178 EXPECT_EQ(write_bytes[i], read_bytes[i]);
184 memcpy(write_dst, write_bytes, 3);
188 EXPECT_EQ(write_bytes[i], read_bytes[i]);
  /development/tools/repo_pull/
repo_pull.py 94 def write_bytes(data, file): # PY2 function
99 def write_bytes(data, file): # PY3 function
354 write_bytes(errors, file=sys.stderr)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
bytesio.c 111 write_bytes(bytesio *self, const char *bytes, Py_ssize_t len) function
573 n = write_bytes(self, buf.buf, buf.len);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
bytesio.c 111 write_bytes(bytesio *self, const char *bytes, Py_ssize_t len) function
563 n = write_bytes(self, buf.buf, buf.len);
  /external/libchrome/mojo/core/
channel_fuchsia.cc 382 uint32_t write_bytes = 0; local
384 message_view.advance_data_offset(write_bytes);
397 write_bytes = std::min(message_view.data_num_bytes(),
399 zx_status_t result = handle_.write(0, message_view.data(), write_bytes,
414 } while (write_bytes < message_view.data_num_bytes());
data_pipe_unittest.cc 1666 uint32_t write_bytes = num_bytes; local
    [all...]
  /external/python/cpython2/Modules/_io/
bytesio.c 111 write_bytes(bytesio *self, const char *bytes, Py_ssize_t len) function
573 n = write_bytes(self, buf.buf, buf.len);
  /external/u-boot/drivers/mmc/
arm_pl180_mmci.c 163 static int write_bytes(struct mmc *dev, u32 *src, u32 blkcount, u32 blksize) function
171 debug("write_bytes: blkcount=%u blksize=%u\n", blkcount, blksize);
261 error = write_bytes(dev, (u32 *)data->src, (u32)data->blocks,
  /bionic/libc/kernel/uapi/linux/
taskstats.h 60 __u64 write_bytes; member in struct:taskstats
  /external/compiler-rt/lib/profile/
GCDAProfiling.c 124 static void write_bytes(const char *s, size_t len) { function
131 write_bytes((char*)&i, 4);
135 write_bytes((char*)&i, 8);
145 write_bytes(s, strlen(s));
146 write_bytes("\0\0\0\0", 4 - (strlen(s) % 4));
313 write_bytes("adcg", 4);
314 write_bytes(version, 4);
361 write_bytes("\0\0\0\1", 4);
408 write_bytes("\0\0\xa1\1", 4);
460 write_bytes("\0\0\0\xa1", 4)
    [all...]
  /external/grpc-grpc/test/core/iomgr/
tcp_posix_test.cc 112 ssize_t write_bytes; local
120 write_bytes = write(fd, buf, 256);
121 if (write_bytes > 0) {
122 total_bytes += write_bytes;
124 } while (write_bytes >= 0 || errno == EINTR);
130 ssize_t write_bytes; local
139 write_bytes = write(fd, buf, bytes - total_bytes);
140 if (write_bytes > 0) {
141 total_bytes += static_cast<size_t>(write_bytes);
143 } while ((write_bytes >= 0 || errno == EINTR) && bytes > total_bytes)
    [all...]
  /external/grpc-grpc/test/core/network_benchmarks/
low_level_ping_pong.cc 57 int (*write_bytes)(struct thread_args* args, char* buf); member in struct:thread_args
266 if (args->write_bytes(args, buf) < 0) {
309 if (args->write_bytes(args, buf) < 0) {
610 client_args->write_bytes = blocking_write_bytes;
615 server_args->write_bytes = blocking_write_bytes;
682 client_args->write_bytes = blocking_write_bytes;
687 server_args->write_bytes = blocking_write_bytes;
  /external/kernel-headers/original/uapi/linux/
taskstats.h 153 __u64 write_bytes; /* bytes of write I/O */ member in struct:taskstats
  /external/python/cpython3/Lib/
plistlib.py 431 self.write_bytes(value)
443 self.write_bytes(data.data)
445 def write_bytes(self, data): member in class:_PlistWriter
pathlib.py 1202 def write_bytes(self, data): member in class:Path
    [all...]
  /external/python/cpython3/Modules/_io/
bytesio.c 160 write_bytes(bytesio *self, const char *bytes, Py_ssize_t len) function
681 n = write_bytes(self, buf.buf, buf.len);
  /external/u-boot/drivers/spi/
cadence_qspi_apb.c 725 unsigned int write_bytes; local
748 write_bytes = remaining > page_size ? page_size : remaining;
749 writesl(plat->ahbbase, bb_txbuf, write_bytes >> 2);
750 if (write_bytes % 4)
752 bb_txbuf + rounddown(write_bytes, 4),
753 write_bytes % 4);
763 bb_txbuf += write_bytes;
764 remaining -= write_bytes;
  /external/squashfs-tools/squashfs-tools/
unsquashfs.c 857 int write_bytes(int fd, char *buff, int bytes) function
905 if(write_bytes(file_fd, zero_data, avail_bytes)
912 if(write_bytes(file_fd, buffer, size) == -1)
    [all...]
mksquashfs.c 590 int write_bytes(int fd, void *buff, int bytes) function
625 if(write_bytes(fd, buff, bytes) == -1)
    [all...]

Completed in 1052 milliseconds