Home
last modified time | relevance | path

Searched refs:ssize_t (Results 1 – 25 of 80) sorted by relevance

1234

/bionic/libc/include/sys/
Duio.h38 ssize_t readv(int __fd, const struct iovec* __iov, int __count);
39 ssize_t writev(int __fd, const struct iovec* __iov, int __count);
42 ssize_t preadv(int __fd, const struct iovec* __iov, int __count, off_t __offset) __RENAME_IF_FILE_O…
43 ssize_t pwritev(int __fd, const struct iovec* __iov, int __count, off_t __offset) __RENAME_IF_FILE_…
44 ssize_t preadv64(int __fd, const struct iovec* __iov, int __count, off64_t __offset) __INTRODUCED_I…
45 ssize_t pwritev64(int __fd, const struct iovec* __iov, int __count, off64_t __offset) __INTRODUCED_…
49 ssize_t process_vm_readv(pid_t __pid, const struct iovec* __local_iov, unsigned long __local_iov_co…
50 ssize_t process_vm_writev(pid_t __pid, const struct iovec* __local_iov, unsigned long __local_iov_c…
Dxattr.h45 ssize_t fgetxattr(int __fd, const char* __name, void* __value, size_t __size) __INTRODUCED_IN(16);
46 ssize_t getxattr(const char* __path, const char* __name, void* __value, size_t __size) __INTRODUCED…
47 ssize_t lgetxattr(const char* __path, const char* __name, void* __value, size_t __size) __INTRODUCE…
49 ssize_t listxattr(const char* __path, char* __list, size_t __size) __INTRODUCED_IN(16);
50 ssize_t llistxattr(const char* __path, char* __list, size_t __size) __INTRODUCED_IN(16);
51 ssize_t flistxattr(int __fd, char* __list, size_t __size) __INTRODUCED_IN(16);
Dsendfile.h43 ssize_t sendfile(int __out_fd, int __in_fd, off_t* __offset, size_t __count) __RENAME(sendfile64) _…
53 ssize_t sendfile(int __out_fd, int __in_fd, off_t* __offset, size_t __count);
60 ssize_t sendfile64(int __out_fd, int __in_fd, off64_t* __offset, size_t __count) __INTRODUCED_IN(21…
Drandom.h65 ssize_t getrandom(void* __buffer, size_t __buffer_size, unsigned int __flags) __wur __INTRODUCED_IN…
/bionic/libc/include/bits/fortify/
Dunistd.h34 ssize_t __pread_chk(int, void*, size_t, off_t, size_t) __INTRODUCED_IN(23);
35 ssize_t __pread_real(int, void*, size_t, off_t) __RENAME(pread);
37 ssize_t __pread64_chk(int, void*, size_t, off64_t, size_t) __INTRODUCED_IN(23);
38 ssize_t __pread64_real(int, void*, size_t, off64_t) __RENAME(pread64) __INTRODUCED_IN(12);
40 ssize_t __pwrite_chk(int, const void*, size_t, off_t, size_t) __INTRODUCED_IN(24);
41 ssize_t __pwrite_real(int, const void*, size_t, off_t) __RENAME(pwrite);
43 ssize_t __pwrite64_chk(int, const void*, size_t, off64_t, size_t) __INTRODUCED_IN(24);
44 ssize_t __pwrite64_real(int, const void*, size_t, off64_t) __RENAME(pwrite64)
47 ssize_t __read_chk(int, void*, size_t, size_t) __INTRODUCED_IN(21);
48 ssize_t __write_chk(int, const void*, size_t, size_t) __INTRODUCED_IN(24);
[all …]
Dsocket.h33 extern ssize_t __sendto_chk(int, const void*, size_t, size_t, int, const struct sockaddr*,
35 ssize_t __recvfrom_chk(int, void*, size_t, size_t, int, struct sockaddr*,
45 ssize_t recvfrom(int fd, void* const buf __pass_object_size0, size_t len, int flags, struct sockadd… in recvfrom()
60 ssize_t sendto(int fd, const void* const buf __pass_object_size0, size_t len, int flags, const stru… in sendto()
74 ssize_t recv(int socket, void* const buf __pass_object_size0, size_t len, int flags) in recv()
82 ssize_t send(int socket, const void* const buf __pass_object_size0, size_t len, int flags) in send()
/bionic/tests/headers/posix/
Dsys_uio_h.c38 TYPE(ssize_t); in sys_uio_h()
41 FUNCTION(readv, ssize_t (*f)(int, const struct iovec*, int)); in sys_uio_h()
42 FUNCTION(writev, ssize_t (*f)(int, const struct iovec*, int)); in sys_uio_h()
Dsys_socket_h.c133 TYPE(ssize_t); in sys_socket_h()
142 FUNCTION(recv, ssize_t (*f)(int, void*, size_t, int)); in sys_socket_h()
143 FUNCTION(recvfrom, ssize_t (*f)(int, void*, size_t, int, struct sockaddr*, socklen_t*)); in sys_socket_h()
144 FUNCTION(send, ssize_t (*f)(int, const void*, size_t, int)); in sys_socket_h()
145 FUNCTION(sendmsg, ssize_t (*f)(int, const struct msghdr*, int)); in sys_socket_h()
146 FUNCTION(sendto, ssize_t (*f)(int, const void*, size_t, int, const struct sockaddr*, socklen_t)); in sys_socket_h()
Dsys_msg_h.c60 TYPE(ssize_t); in sys_msg_h()
65 FUNCTION(msgrcv, ssize_t (*f)(int, void*, size_t, long, int)); in sys_msg_h()
/bionic/libc/bionic/
Dflistxattr.cpp38 extern "C" ssize_t ___flistxattr(int, char*, size_t);
40 ssize_t flistxattr(int fd, char *list, size_t size) { in flistxattr()
42 ssize_t result = ___flistxattr(fd, list, size); in flistxattr()
Dfgetxattr.cpp38 extern "C" ssize_t ___fgetxattr(int, const char*, void*, size_t);
40 ssize_t fgetxattr(int fd, const char *name, void *value, size_t size) { in fgetxattr()
42 ssize_t result = ___fgetxattr(fd, name, value, size); in fgetxattr()
Dpthread_setname_np.cpp66 ssize_t n = TEMP_FAILURE_RETRY(read(fd, buf, buf_size)); in pthread_getname_np()
78 if (n == static_cast<ssize_t>(buf_size)) return ERANGE; in pthread_getname_np()
98 ssize_t n = TEMP_FAILURE_RETRY(write(fd, thread_name, thread_name_len)); in pthread_setname_np()
102 if (n != static_cast<ssize_t>(thread_name_len)) return EIO; in pthread_setname_np()
Dlegacy_32_bit_support.cpp74 ssize_t pread(int fd, void* buf, size_t byte_count, off_t offset) { in pread()
79 ssize_t pwrite(int fd, const void* buf, size_t byte_count, off_t offset) { in pwrite()
87 ssize_t preadv(int fd, const struct iovec* ios, int count, off_t offset) { in preadv()
90 ssize_t preadv64(int fd, const struct iovec* ios, int count, off64_t offset) { in preadv64()
93 ssize_t pwritev(int fd, const struct iovec* ios, int count, off_t offset) { in pwritev()
96 ssize_t pwritev64(int fd, const struct iovec* ios, int count, off64_t offset) { in pwritev64()
Dreadlink.cpp34 ssize_t readlink(const char* path, char* buf, size_t size) { in readlink()
Dsend.cpp31 ssize_t send(int socket, const void* buf, size_t len, int flags) { in send()
Drecv.cpp31 ssize_t recv(int socket, void *buf, size_t len, int flags) { in recv()
D__bionic_get_shell_path.cpp48 ssize_t len = readlink("/proc/self/exe", exe_path, sizeof(exe_path)); in init_sh_path()
Dswab.cpp31 void swab(const void* void_src, void* void_dst, ssize_t byte_count) { in swab()
/bionic/tools/versioner/tests/preprocessor_file_offset_bits/expected/
Dfoo.h6 typedef int ssize_t; typedef
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/
Dfoo.h6 typedef int ssize_t; typedef
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);
/bionic/libc/private/
Dgrp_pwd.h41 ssize_t getgrent_idx;
49 ssize_t getpwent_idx;
/bionic/libc/include/
Dunistd.h222 ssize_t readlink(const char* __path, char* __buf, size_t __buf_size);
223 ssize_t readlinkat(int __dir_fd, const char* __path, char* __buf, size_t __buf_size)
238 ssize_t read(int __fd, void* __buf, size_t __count);
239 ssize_t write(int __fd, const void* __buf, size_t __count);
251 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset)
253 ssize_t pwrite(int __fd, const void* __buf, size_t __count, off_t __offset)
259 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
260 ssize_t pwrite(int __fd, const void* __buf, size_t __count, off_t __offset);
266 ssize_t pread64(int __fd, void* __buf, size_t __count, off64_t __offset) __INTRODUCED_IN(12);
267 ssize_t pwrite64(int __fd, const void* __buf, size_t __count, off64_t __offset) __INTRODUCED_IN(12);
[all …]
Dfcntl.h78 ssize_t splice(int __in_fd, off64_t* __in_offset, int __out_fd, off64_t* __out_offset, size_t __len…
79 ssize_t tee(int __in_fd, int __out_fd, size_t __length, unsigned int __flags) __INTRODUCED_IN(21);
80 ssize_t vmsplice(int __fd, const struct iovec* __iov, size_t __count, unsigned int __flags) __INTRO…
90 ssize_t readahead(int __fd, off64_t __offset, size_t __length) __INTRODUCED_IN(16);
/bionic/tests/
Dsys_sendfile_test.cpp35 ssize_t rc = sendfile(dst_file.fd, src_file.fd, &offset, count); in TEST()
54 ssize_t rc = sendfile64(dst_file.fd, src_file.fd, &offset, count); in TEST()
/bionic/tests/libs/
Dpreinit_syscall_test_helper.cpp24 static ssize_t g_result;

1234