Searched refs:pwrite64 (Results 1 - 12 of 12) sorted by relevance

/bionic/libc/arch-arm64/syscalls/
H A Dpwrite64.S5 ENTRY(pwrite64) function
14 END(pwrite64)
16 ALIAS_SYMBOL(pwrite, pwrite64)
/bionic/libc/arch-x86_64/syscalls/
H A Dpwrite64.S5 ENTRY(pwrite64) function
16 END(pwrite64)
18 ALIAS_SYMBOL(pwrite, pwrite64)
/bionic/libc/arch-mips/syscalls/
H A Dpwrite64.S5 ENTRY(pwrite64) function
19 END(pwrite64)
/bionic/libc/arch-mips64/syscalls/
H A Dpwrite64.S5 ENTRY(pwrite64) function
25 END(pwrite64)
27 ALIAS_SYMBOL(pwrite, pwrite64)
/bionic/libc/arch-arm/syscalls/
H A Dpwrite64.S5 ENTRY(pwrite64) function
22 END(pwrite64)
/bionic/libc/arch-x86/syscalls/
H A Dpwrite64.S5 ENTRY(pwrite64) function
49 END(pwrite64)
/bionic/tests/
H A Dfortify_compilation_test.cpp278 // GCC: error: call to '__pwrite64_dest_size_error' declared with attribute error: pwrite64 called with size bigger than destination
279 // CLANG: error: call to unavailable function 'pwrite64': 'count' bytes overflows the given object
280 pwrite64(STDOUT_FILENO, buf, 5, 0);
286 // GCC: error: call to '__pwrite64_count_toobig_error' declared with attribute error: pwrite64 called with count > SSIZE_MAX
288 pwrite64(STDOUT_FILENO, buf, SIZE_MAX, 0);
294 // GCC: error: call to '__pwrite64_count_toobig_error' declared with attribute error: pwrite64 called with count > SSIZE_MAX
295 // CLANG: error: call to unavailable function 'pwrite64': count must be <= SSIZE_MAX
296 pwrite64(STDOUT_FILENO, buf, SIZE_MAX, 0);
H A Dfortify_test.cpp680 ASSERT_FORTIFY(pwrite64(fd, buf, ct, 0));
/bionic/libc/include/
H A Dunistd.h181 __overloadable __RENAME(pwrite64) __INTRODUCED_IN(12);
195 ssize_t pwrite64(int __fd, const void* __buf, size_t __count, off64_t __offset)
196 __INTRODUCED_IN(12) __overloadable __RENAME_CLANG(pwrite64);
257 ssize_t __pwrite64_real(int, const void*, size_t, off64_t) __RENAME(pwrite64)
383 ssize_t pwrite64(int fd, const void* buf, size_t count, off64_t offset)
388 ssize_t pwrite64(int fd, const void* buf, size_t count, off64_t offset)
394 ssize_t pwrite64(int fd, const void* const __pass_object_size0 buf,
517 __errordecl(__pwrite64_dest_size_error, "pwrite64 called with size bigger than destination");
518 __errordecl(__pwrite64_count_toobig_error, "pwrite64 called with count > SSIZE_MAX");
622 ssize_t pwrite64(in function
[all...]
/bionic/tools/versioner/current/
H A Dunistd.h181 __overloadable __RENAME(pwrite64) __INTRODUCED_IN(12);
195 ssize_t pwrite64(int __fd, const void* __buf, size_t __count, off64_t __offset)
196 __INTRODUCED_IN(12) __overloadable __RENAME_CLANG(pwrite64);
257 ssize_t __pwrite64_real(int, const void*, size_t, off64_t) __RENAME(pwrite64)
383 ssize_t pwrite64(int fd, const void* buf, size_t count, off64_t offset)
388 ssize_t pwrite64(int fd, const void* buf, size_t count, off64_t offset)
394 ssize_t pwrite64(int fd, const void* const __pass_object_size0 buf,
517 __errordecl(__pwrite64_dest_size_error, "pwrite64 called with size bigger than destination");
518 __errordecl(__pwrite64_count_toobig_error, "pwrite64 called with count > SSIZE_MAX");
622 ssize_t pwrite64(in function
[all...]
/bionic/libc/bionic/
H A Dlegacy_32_bit_support.cpp78 // There is no pwrite for 32-bit off_t, so we need to widen and call pwrite64.
80 return pwrite64(fd, buf, byte_count, static_cast<off64_t>(offset));
H A Dfortify.cpp191 __check_count("pwrite64", "count", count);
192 __check_buffer_access("pwrite64", "read from", count, buf_size);
193 return pwrite64(fd, buf, count, offset);

Completed in 1027 milliseconds