Searched defs:buf_size (Results 1 - 10 of 10) sorted by relevance

/bionic/libc/bionic/
H A D__read_chk.cpp33 extern "C" ssize_t __read_chk(int fd, void* buf, size_t count, size_t buf_size) { argument
34 if (__predict_false(count > buf_size)) {
H A Dlibc_logging.cpp157 // Writes number 'value' in base 'base' into buffer 'buf' of size 'buf_size' bytes.
158 // Assumes that buf_size > 0.
159 static void format_unsigned(char* buf, size_t buf_size, uint64_t value, int base, bool caps) { argument
161 char* end = buf + buf_size - 1;
195 static void format_integer(char* buf, size_t buf_size, uint64_t value, char conversion) { argument
209 buf_size -= 1;
212 format_unsigned(buf, buf_size, value, base, caps);
/bionic/libc/kernel/uapi/linux/
H A Drandom.h35 int buf_size; member in struct:rand_pool_info
H A Dcciss_ioctl.h59 WORD buf_size; member in struct:_IOCTL_Command_struct
69 DWORD buf_size; member in struct:_BIG_IOCTL_Command_struct
H A Dblktrace_api.h141 __u32 buf_size; member in struct:blk_user_trace_setup
H A Domap3isp.h86 __u32 buf_size; member in struct:omap3isp_h3a_aewb_config
109 __u32 buf_size; member in struct:omap3isp_stat_data
146 __u32 buf_size; member in struct:omap3isp_hist_config
197 __u32 buf_size; member in struct:omap3isp_h3a_af_config
H A Dhdreg.h391 unsigned short buf_size; member in struct:hd_driveid
H A Dkvm.h70 __u32 buf_size; member in struct:kvm_user_trace_setup
/bionic/tests/
H A Dlibgen_test.cpp69 char* buf, size_t buf_size, int expected_errno) {
71 int rc = basename_r(in, buf, buf_size);
80 char* buf, size_t buf_size, int expected_errno) {
82 int rc = dirname_r(in, buf, buf_size);
68 TestBasename(const char* in, const char* expected_out, int expected_rc, char* buf, size_t buf_size, int expected_errno) argument
79 TestDirname(const char* in, const char* expected_out, int expected_rc, char* buf, size_t buf_size, int expected_errno) argument
/bionic/linker/
H A Dlinker.cpp352 const char** array, char* buf, size_t buf_size, size_t max_count) {
357 size_t len = strlcpy(buf, path, buf_size);
369 if (i > 0 && len >= buf_size && buf[buf_size - 2] != '\0') {
351 parse_path(const char* path, const char* delimiters, const char** array, char* buf, size_t buf_size, size_t max_count) argument

Completed in 189 milliseconds