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

1 2 3 4 5 6

  /external/linux-kselftest/tools/testing/selftests/intel_pstate/
aperf.c 59 pread(fd, &old_tsc, sizeof(old_tsc), 0x10);
60 pread(fd, &old_aperf, sizeof(old_mperf), 0xe7);
61 pread(fd, &old_mperf, sizeof(old_aperf), 0xe8);
68 pread(fd, &new_tsc, sizeof(new_tsc), 0x10);
69 pread(fd, &new_aperf, sizeof(new_mperf), 0xe7);
70 pread(fd, &new_mperf, sizeof(new_aperf), 0xe8);
msr.c 36 pread(fd, &msr, sizeof(msr), 0x199);
  /bionic/libc/arch-arm64/syscalls/
pread64.S 16 ALIAS_SYMBOL(pread, pread64)
  /bionic/libc/arch-x86_64/syscalls/
pread64.S 18 ALIAS_SYMBOL(pread, pread64)
  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/expected/
foo.h 26 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset) __RENAME(pread64)
31 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/headers/
foo.h 24 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset) __RENAME(pread64)
27 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
  /external/strace/tests/
pread64-pwrite64.c 94 long rc = pread(0, buf, len, offset);
183 rc = pread(0, r0, 0, 0);
188 rc = pread(0, efault, 1, 0);
193 rc = pread(0, efault, 2, -7);
198 rc = pread(0, r0, r0_len, 0);
206 rc = pread(0, r1, w_len, r0_len);
uio.c 47 assert(pread(0, buf, sizeof(buf), offset) == 4);
  /external/strace/tests-m32/
pread64-pwrite64.c 94 long rc = pread(0, buf, len, offset);
183 rc = pread(0, r0, 0, 0);
188 rc = pread(0, efault, 1, 0);
193 rc = pread(0, efault, 2, -7);
198 rc = pread(0, r0, r0_len, 0);
206 rc = pread(0, r1, w_len, r0_len);
uio.c 47 assert(pread(0, buf, sizeof(buf), offset) == 4);
  /external/strace/tests-mx32/
pread64-pwrite64.c 94 long rc = pread(0, buf, len, offset);
183 rc = pread(0, r0, 0, 0);
188 rc = pread(0, efault, 1, 0);
193 rc = pread(0, efault, 2, -7);
198 rc = pread(0, r0, r0_len, 0);
206 rc = pread(0, r1, w_len, r0_len);
uio.c 47 assert(pread(0, buf, sizeof(buf), offset) == 4);
  /bionic/libc/arch-mips64/syscalls/
pread64.S 27 ALIAS_SYMBOL(pread, pread64)
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
loadfile_machdep.h 53 /* XXX: cherry: This whole thing is glue between the NetBSD pread/vpbcopy etc. etc
62 #define READ(f, b, c) pread((f), LOADADDR(b), (c))
78 #define pread archsw.arch_readin macro
  /external/ltp/testcases/kernel/syscalls/pread/
pread01.c 24 * Verify the functionality of pread() by writing known data using pwrite()
30 * pread() should succeed to read the expected no. of bytes of data and
99 void compare_bufers(); /* function to compare o/p of pread/pwrite */
104 int nread; /* no. of bytes read by pread() */
116 * Call pread() of K1 data (should be 2's) at offset K2.
118 nread = pread(fildes, read_buf[2], K1, K2);
120 /* Check for the return value of pread() */
122 tst_brkm(TFAIL, cleanup, "pread() at off. K2 failed: "
135 /* pread() K1 of data (should be 3's) at offset K3. */
136 nread = pread(fildes, read_buf[3], K1, K3)
    [all...]
pread03.c 26 * 1) pread() fails when fd refers to a directory.
30 * 1) pread() should return -1 and set errno to EISDIR.
117 TEST(pread(fd1, read_buf[0], nbytes, offset));
119 /* Check for the return code of pread() */
121 tst_brkm(TFAIL, cleanup, "pread() returned "
131 "pread() fails with expected error EISDIR errno:%d",
134 tst_resm(TFAIL, "pread() fails, %s, unexpected "
  /bionic/libc/include/bits/fortify/
unistd.h 35 ssize_t __pread_real(int, void*, size_t, off_t) __RENAME(pread); variable
86 ssize_t pread(int fd, void* const __pass_object_size0 buf, size_t count, off_t offset)
88 __error_if_overflows_ssizet(count, pread)
89 __error_if_overflows_objectsize(count, __bos0(buf), pread) {
  /external/elfutils/lib/
crc32_file.c 82 while ((count = TEMP_FAILURE_RETRY (pread (fd, buffer, sizeof buffer,
system.h 132 ssize_t ret = TEMP_FAILURE_RETRY (pread (fd, buf + recvd, len - recvd,
  /external/linux-kselftest/tools/testing/selftests/proc/
proc-uptime.h 33 rv = pread(fd, buf, sizeof(buf), 0);
  /external/ltp/include/
tst_safe_prw.h 27 rval = pread(fildes, buf, nbyte, offset);
31 "pread(%d,%p,%zu,%lld) failed",
  /frameworks/av/media/libstagefright/
FileSource.cpp 127 mDrmBufSize = mDrmManagerClient->pread(mDecryptHandle, mDrmBuf,
139 return mDrmManagerClient->pread(mDecryptHandle, data, size, offset + mOffset);
  /external/elfutils/tests/
arextract.c 110 ssize_t n = pread (fd, buf, MIN (sizeof buf, todo), offset);
  /frameworks/av/drm/libdrmframework/
NoOpDrmManagerClientImpl.cpp 213 ssize_t NoOpDrmManagerClientImpl::pread( function in class:android::NoOpDrmManagerClientImpl
  /external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc 236 INTERCEPTOR(SSIZE_T, pread, int fd, void *ptr, SIZE_T count, OFF_T offset) {
238 return REAL(pread)(fd, ptr, count, offset);
325 INTERCEPT_FUNCTION(pread);

Completed in 704 milliseconds

1 2 3 4 5 6