Home
last modified time | relevance | path

Searched refs:__buf (Results 1 – 25 of 33) sorted by relevance

12

/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)
229 char* getcwd(char* __buf, size_t __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) __RENAME(pread64);
252 ssize_t pwrite(int __fd, const void* __buf, size_t __count, off_t __offset) __RENAME(pwrite64);
257 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
258 ssize_t pwrite(int __fd, const void* __buf, size_t __count, off_t __offset);
264 ssize_t pread64(int __fd, void* __buf, size_t __count, off64_t __offset);
[all …]
Dstdio.h112 char* fgets(char* __buf, int __size, FILE* __fp);
116 size_t fread(void* __buf, size_t __size, size_t __count, FILE* __fp);
118 size_t fwrite(const void* __buf, size_t __size, size_t __count, FILE* __fp);
132 void setbuf(FILE* __fp, char* __buf);
133 int setvbuf(FILE* __fp, char* __buf, int __mode, size_t __size);
156 char* gets(char* __buf) __attribute__((deprecated("gets is unsafe, use fgets instead")));
263 int snprintf(char* __buf, size_t __size, const char* __fmt, ...) __printflike(3, 4);
266 int vsnprintf(char* __buf, size_t __size, const char* __fmt, va_list __args) __printflike(3, 0);
270 char* ctermid(char* __buf) __INTRODUCED_IN(26);
284 FILE* fmemopen(void* __buf, size_t __size, const char* __mode) __INTRODUCED_IN(23);
[all …]
Dtime.h66 char* asctime_r(const struct tm* __tm, char* __buf);
80 size_t strftime(char* __buf, size_t __n, const char* __fmt, const struct tm* __tm) __strftimelike(3…
82 size_t strftime_l(char* __buf, size_t __n, const char* __fmt, const struct tm* __tm, locale_t __l) …
88 char* ctime_r(const time_t* __t, char* __buf);
Dlibgen.h72 int dirname_r(const char* __path, char* __buf, size_t __n);
74 int basename_r(const char* __path, char* __buf, size_t __n);
Dwchar.h50 wchar_t* fgetws(wchar_t* __buf, int __size, FILE* __fp);
58 size_t mbrtowc(wchar_t* __buf, const char* __s, size_t __n, mbstate_t* __ps);
63 int swprintf(wchar_t* __buf, size_t __n, const wchar_t* __fmt, ...);
68 int vswprintf(wchar_t* __buf, size_t __n, const wchar_t* __fmt, va_list __args);
74 size_t wcrtomb(char* __buf, wchar_t __wc, mbstate_t* __ps);
83 size_t wcsftime(wchar_t* __buf, size_t __n, const wchar_t* __fmt, const struct tm* __tm);
84 size_t wcsftime_l(wchar_t* __buf, size_t __n, const wchar_t* __fmt, const struct tm* __tm, locale_t…
Dpwd.h92 int getpwnam_r(const char* __name, struct passwd* __pwd, char* __buf, size_t __n, struct passwd** _…
93 int getpwuid_r(uid_t __uid, struct passwd* __pwd, char* __buf, size_t __n, struct passwd** __result…
Dgrp.h58 int getgrgid_r(gid_t __gid, struct group* __group, char* __buf, size_t __n, struct group** __result…
59 int getgrnam_r(const char* __name, struct group* __group, char* __buf, size_t __n, struct group** _…
Duchar.h64 size_t c16rtomb(char* _Nullable __buf, char16_t __ch16, mbstate_t* _Nullable __ps) __INTRODUCED_IN(…
75 size_t c32rtomb(char* _Nullable __buf, char32_t __ch32, mbstate_t* _Nullable __ps) __INTRODUCED_IN(…
Dnetdb.h212 …oid* __addr, socklen_t __length, int __type, struct hostent* __ret, char* __buf, size_t __buf_size…
214 int gethostbyname_r(const char* __name, struct hostent* __ret, char* __buf, size_t __buf_size, stru…
216 int gethostbyname2_r(const char* __name, int __af, struct hostent* __ret, char* __buf, size_t __buf…
Dmntent.h62 struct mntent* getmntent_r(FILE* __fp, struct mntent* __entry, char* __buf, int __size) __INTRODUCE…
/bionic/libc/include/sys/
Dstat.h143 int fstat(int __fd, struct stat* __buf);
144 int fstat64(int __fd, struct stat64* __buf) __RENAME_STAT64(fstat, 3, 21);
145 int fstatat(int __dir_fd, const char* __path, struct stat* __buf, int __flags);
146 int fstatat64(int __dir_fd, const char* __path, struct stat64* __buf, int __flags) __RENAME_STAT64(…
147 int lstat(const char* __path, struct stat* __buf);
148 int lstat64(const char* __path, struct stat64* __buf) __RENAME_STAT64(lstat, 3, 21);
149 int stat(const char* __path, struct stat* __buf);
150 int stat64(const char* __path, struct stat64* __buf) __RENAME_STAT64(stat, 3, 21);
183 int statx(int __dir_fd, const char* __path, int __flags, unsigned __mask, struct statx* __buf) __IN…
Dstatvfs.h124 int statvfs(const char* __path, struct statvfs* __buf) __INTRODUCED_IN(19);
132 int fstatvfs(int __fd, struct statvfs* __buf) __INTRODUCED_IN(19);
140 int statvfs64(const char* __path, struct statvfs64* __buf) __INTRODUCED_IN(21);
143 int fstatvfs64(int __fd, struct statvfs64* __buf) __INTRODUCED_IN(21);
Dvfs.h107 int statfs(const char* __path, struct statfs* __buf);
108 int statfs64(const char* __path, struct statfs64* __buf) __INTRODUCED_IN(21);
109 int fstatfs(int __fd, struct statfs* __buf);
110 int fstatfs64(int __fd, struct statfs64* __buf) __INTRODUCED_IN(21);
Dsocket.h314 ssize_t recv(int __fd, void* __buf, size_t __n, int __flags);
315 ssize_t send(int __fd, const void* __buf, size_t __n, int __flags);
317 __socketcall ssize_t sendto(int __fd, const void* __buf, size_t __n, int __flags, const struct sock…
318 __socketcall ssize_t recvfrom(int __fd, void* __buf, size_t __n, int __flags, struct sockaddr* __sr…
Dtimes.h49 clock_t times(struct tms* __buf);
Dtimex.h49 int adjtimex(struct timex* __buf) __INTRODUCED_IN(24);
Dklog.h69 int klogctl(int __type, char* __buf, int __buf_size);
Dutsname.h65 int uname(struct utsname* __buf);
Dshm.h52 int shmctl(int __shm_id, int __cmd, struct shmid_ds* __buf) __INTRODUCED_IN(26);
Dmsg.h49 int msgctl(int __msg_id, int __cmd, struct msqid_ds* __buf) __INTRODUCED_IN(26);
Dsem.h50 struct seminfo* __buf; member
/bionic/tools/versioner/tests/preprocessor_file_offset_bits/expected/
Dfoo.h26 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.h24 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/include/netinet/
Dether.h55 char* ether_ntoa_r(const struct ether_addr* __addr, char* __buf);
/bionic/libc/include/net/
Dif.h47 char* if_indextoname(unsigned __index, char* __buf);

12