Lines Matching refs:size_t
46 int parse_intmax(const char *buffer, size_t count, intmax_t *result, int base);
47 int parse_uintmax(const char *buffer, size_t count, uintmax_t *result, int base);
48 int parse_int(const char *buffer, size_t count, int *result, int base);
49 int parse_uint(const char *buffer, size_t count, unsigned int *result, int base);
50 int parse_long(const char *buffer, size_t count, long *result, int base);
51 int parse_ulong(const char *buffer, size_t count, unsigned long *result, int base);
53 int read_file(const char *path, char *buf, size_t count, size_t *len);
54 int write_file(const char *path, const char *buf, size_t count);
55 int read_file_alloc(const char *path, char **buf, size_t *len);
60 int read_debugfs_file(const char *debugfs_file, char *buf, size_t count);
61 int write_debugfs_file(const char *debugfs_file, const char *buf, size_t count);
64 int read_sysfs_file(char *debugfs_file, char *result, size_t result_size);