Lines Matching defs:CollectorUtilFuncs

41 typedef struct CollectorUtilFuncs  struct
43 int (*access)();
44 int (*atoi)(const char *nptr);
45 void *(*calloc)(size_t nelem, size_t elsize);
46 int (*clearenv)(void);
47 int (*close)(int);
48 int (*closedir)();
49 int (*execv)(const char *path, char *const argv[]);
50 void (*exit)(int status);
51 int (*fclose)(FILE *stream);
52 int (*fcntl)(int fd, int cmd, ...);
53 char *(*fgets)(char *s, int n, FILE *stream);
54 FILE *(*fopen)(const char *filename, const char *mode);
55 pid_t (*vfork)();
56 int (*fprintf)(FILE *stream, const char *format, ...)
58 void (*free)(void *ptr);
59 int (*fstat)(int fd, struct stat *buf);
60 int (*getcontext)(ucontext_t *ucp);
61 int (*getcpuid)();
62 char *(*getcwd)(char *buf, size_t size);
63 char *(*getenv)(const char *name);
64 struct tm *(*gmtime_r)(const time_t *clock, struct tm *res);
65 int (*ioctl)(int d, int request, ...);
66 off_t (*lseek)(int fd, off_t offset, int whence);
67 void *(*malloc)(size_t size);
68 void *(*memset)(void *s1, int c, size_t n);
69 int (*mkdir)();
70 time_t (*mktime)(struct tm *timeptr);
71 void *(*mmap)(void *, size_t, int, int, int, off_t);
72 void *(*mmap64_)();
73 int (*munmap)();
74 int (*open)(const char *, int, ...);
75 int (*open_bare)(const char *, int, ...);
76 DIR *(*opendir)();
77 int (*pclose)(FILE *stream);
78 FILE *(*popen)(const char *command, const char *mode);
79 int (*putenv)(char *string);
80 ssize_t (*pwrite)();
81 ssize_t (*pwrite64_)();
82 ssize_t (*read)();
83 int (*setenv)(const char *name, const char *value, int overwrite);
84 int (*sigfillset)(sigset_t *set);
85 int (*sigprocmask)(int how, const sigset_t *set, sigset_t *oldset);
86 int (*snprintf)(char *str, size_t size, const char *format, ...)
88 int (*stack_getbounds)();
89 char *(*strchr)(const char *name, int c);
90 int (*strcmp)(const char *s1, const char *s2);
91 int (*strcpy)(const char *s1, const char *s2);
92 char *(*libc_strdup)(const char *s1); // Don't use "strdup" because it is a macro in gcc
93 char *(*strerror)(int errnum);
94 int (*strerror_r)(int errnum, char *strerrbuf, size_t buflen);
118 } CollectorUtilFuncs; argument