Home | History | Annotate | Download | only in libcollector

Lines Matching refs:nbyte

49   Size_type nbyte;          /* number of bytes */
103 static ssize_t (*__real_read)(int fildes, void *buf, size_t nbyte) = NULL;
104 static ssize_t (*__real_write)(int fildes, const void *buf, size_t nbyte) = NULL;
109 static ssize_t (*__real_pread)(int fildes, void *buf, size_t nbyte, off_t offset) = NULL;
110 static ssize_t (*__real_pwrite)(int fildes, const void *buf, size_t nbyte, off_t offset) = NULL;
111 static ssize_t (*__real_pwrite64)(int fildes, const void *buf, size_t nbyte, off64_t offset) = NULL;
123 static int (*__real_getdents)(int fildes, struct dirent *buf, size_t nbyte) = NULL;
160 static ssize_t (*__real_pread_2_2)(int fildes, void *buf, size_t nbyte, off_t offset) = NULL;
161 static ssize_t (*__real_pwrite_2_2)(int fildes, const void *buf, size_t nbyte, off_t offset) = NULL;
170 static ssize_t (*__real_pwrite64_2_2)(int fildes, const void *buf, size_t nbyte, off64_t offset) = NULL;
332 (int) offsetof (IOTrace_packet, nbyte),
333 fld_sizeof (IOTrace_packet, nbyte) == 4 ? "INT32" : "INT64");
906 iopkt.nbyte = ret;
1858 read (int fildes, void *buf, size_t nbyte)
1866 return CALL_REAL (read)(fildes, buf, nbyte);
1869 ret = CALL_REAL (read)(fildes, buf, nbyte);
1885 iopkt.nbyte = ret;
1894 write (int fildes, const void *buf, size_t nbyte)
1902 return CALL_REAL (write)(fildes, buf, nbyte);
1905 ret = CALL_REAL (write)(fildes, buf, nbyte);
1921 iopkt.nbyte = ret;
1957 iopkt.nbyte = ret;
1993 iopkt.nbyte = ret;
2027 iopkt.nbyte = ret * size;
2032 iopkt.nbyte = 0;
2068 iopkt.nbyte = ret * size;
2073 iopkt.nbyte = 0;
2085 int fildes, void *buf, size_t nbyte, off_t offset)
2091 return real_pread (fildes, buf, nbyte, offset);
2094 ret = real_pread (fildes, buf, nbyte, offset);
2110 iopkt.nbyte = ret;
2119 ssize_t dcl_f (int fildes, void *buf, size_t nbyte, off_t offset) \
2123 return gprofng_pread (__real_pread, fildes, buf, nbyte, offset); \
2136 __collector_pwrite_2_2 (int fildes, const void *buf, size_t nbyte, off_t offset)
2142 return CALL_REAL (pwrite_2_2)(fildes, buf, nbyte, offset);
2145 ssize_t ret = CALL_REAL (pwrite_2_2)(fildes, buf, nbyte, offset);
2158 pwrite (int fildes, const void *buf, size_t nbyte, off_t offset)
2164 return CALL_REAL (pwrite)(fildes, buf, nbyte, offset);
2167 ssize_t ret = CALL_REAL (pwrite)(fildes, buf, nbyte, offset);
2185 __collector_pwrite64_2_2 (int fildes, const void *buf, size_t nbyte, off64_t offset)
2191 return CALL_REAL (pwrite64_2_2)(fildes, buf, nbyte, offset);
2194 ssize_t ret = CALL_REAL (pwrite64_2_2)(fildes, buf, nbyte, offset);
2207 pwrite64 (int fildes, const void *buf, size_t nbyte, off64_t offset)
2213 return CALL_REAL (pwrite64)(fildes, buf, nbyte, offset);
2216 ssize_t ret = CALL_REAL (pwrite64)(fildes, buf, nbyte, offset);
2256 iopkt.nbyte = collector_strlen (ptr);
2262 iopkt.nbyte = 0;
2300 iopkt.nbyte = ret;
2305 iopkt.nbyte = 0;
2341 iopkt.nbyte = ret;
2346 iopkt.nbyte = 0;
2393 iopkt.nbyte = ret;
2429 iopkt.nbyte = ret;
2720 getdents (int fildes, struct dirent *buf, size_t nbyte)
2728 return CALL_REAL (getdents)(fildes, buf, nbyte);
2731 ret = CALL_REAL (getdents)(fildes, buf, nbyte);