HomeSort by relevance Sort by last modified time
    Searched refs:nbyte (Results 1 - 23 of 23) sorted by null

  /external/qemu/android/utils/
mapfile.h 77 extern ssize_t mapfile_read(MapFile* handle, void* buf, size_t nbyte);
89 size_t nbyte);
mapfile.c 112 mapfile_read(MapFile* handle, void* buf, size_t nbyte)
117 if (ReadFile(handle, buf, nbyte, &read_bytes, NULL)) {
125 return HANDLE_EINTR(read((int)(ptrdiff_t)handle, buf, nbyte));
130 mapfile_read_at(MapFile* handle, size_t offset, void* buf, size_t nbyte)
141 return mapfile_read(handle, buf, nbyte);
144 return res >= 0 ? mapfile_read(handle, buf, nbyte) : res;
  /ndk/sources/host-tools/ndk-stack/elff/
mapfile.h 74 extern ssize_t mapfile_read(MapFile* handle, void* buf, size_t nbyte);
86 size_t nbyte);
mapfile.c 110 mapfile_read(MapFile* handle, void* buf, size_t nbyte)
115 if (ReadFile(handle, buf, nbyte, &read_bytes, NULL)) {
125 ret = read((int)(ptrdiff_t)handle, buf, nbyte);
132 mapfile_read_at(MapFile* handle, size_t offset, void* buf, size_t nbyte)
143 return mapfile_read(handle, buf, nbyte);
146 return res >= 0 ? mapfile_read(handle, buf, nbyte) : res;
  /external/openssl/crypto/pem/
pvkfmt.c 90 static int read_lebn(const unsigned char **in, unsigned int nbyte, BIGNUM **r)
95 p = *in + nbyte - 1;
96 tmpbuf = OPENSSL_malloc(nbyte);
100 for (i = 0; i < nbyte; i++)
102 *r = BN_bin2bn(tmpbuf, nbyte, NULL);
106 *in += nbyte;
216 unsigned int nbyte, hnbyte; local
217 nbyte = (bitlen + 7) >> 3;
226 return 44 + 3 * nbyte;
231 return 64 + 2 * nbyte;
318 unsigned int nbyte; local
376 unsigned int nbyte, hnbyte; local
578 int nbyte, hnbyte, bitlen; local
613 int nbyte, hnbyte; local
631 int nbyte; local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_win.cc 151 int _read(int fd, void* buf, size_t nbyte) {
155 return ki_read(fd, buf, nbyte);
158 int _read_nolock(int fd, void* buf, size_t nbyte) {
162 return ki_read(fd, buf, nbyte);
218 int _write(int fd, const void* buf, size_t nbyte) {
222 return ki_write(fd, buf, nbyte);
kernel_intercept.h 90 ssize_t ki_read(int fd, void* buf, size_t nbyte);
91 ssize_t ki_write(int fd, const void* buf, size_t nbyte);
kernel_proxy.h 107 virtual ssize_t read(int fd, void* buf, size_t nbyte);
108 virtual ssize_t write(int fd, const void* buf, size_t nbyte);
kernel_wrap.h 103 read_ssize_t NAME(read)(int fd, void* buf, size_t nbyte);
120 read_ssize_t NAME(write)(int fd, const void* buf, size_t nbyte);
kernel_intercept.cc 240 ssize_t ki_read(int fd, void* buf, size_t nbyte) {
242 return s_state.kp->read(fd, buf, nbyte);
245 ssize_t ki_write(int fd, const void* buf, size_t nbyte) {
247 return s_state.kp->write(fd, buf, nbyte);
  /external/yaffs2/yaffs2/direct/
yaffsfs.h 176 int yaffs_read(int fd, void *buf, unsigned int nbyte) ;
177 int yaffs_write(int fd, const void *buf, unsigned int nbyte) ;
yaffsfs.c 510 int yaffs_read(int fd, void *buf, unsigned int nbyte)
539 if(nbyte > maxRead)
541 nbyte = maxRead;
545 if(nbyte > 0)
547 nRead = yaffs_ReadDataFromFile(obj,buf,pos,nbyte);
571 int yaffs_write(int fd, const void *buf, unsigned int nbyte)
603 nWritten = yaffs_WriteDataToFile(obj,buf,pos,nbyte,writeThrough);
  /external/fio/os/
os-windows.h 109 ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset);
110 ssize_t pwrite(int fildes, const void *buf, size_t nbyte,
  /external/qemu/android/
snapshot.c 48 /* Reads 'nbyte' bytes from 'fd' into 'buf', retrying on interrupts.
52 read_or_die(int fd, void *buf, size_t nbyte)
54 int ret = HANDLE_EINTR(read(fd, buf, nbyte));
  /external/fio/os/windows/
posix.c 686 ssize_t pwrite(int fildes, const void *buf, size_t nbyte,
690 ssize_t len = _write(fildes, buf, nbyte);
695 ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset)
698 ssize_t len = read(fildes, buf, nbyte);
  /hardware/invensense/65xx/libsensors_iio/
MPLSensor.cpp     [all...]
  /hardware/invensense/60xx/libsensors_iio/
MPLSensor.cpp     [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 679 #define MAXNBVAL(nbyte) MAXBITVAL((nbyte) * 8)
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/test/
omx_vdec_test.cpp     [all...]
  /hardware/invensense/6515/libsensors_iio/
MPLSensor.cpp     [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/test/
omx_vdec_test.cpp     [all...]
  /external/chromium_org/v8/tools/profviz/
gnuplot-4.6.3-emscripten.js     [all...]
  /external/chromium_org/tools/win/split_link/viz.js/
viz.js     [all...]

Completed in 1111 milliseconds