Lines Matching defs:c_void
344 pub fn aligned_alloc(a: size_t, b: size_t) -> *mut c_void; in aligned_alloc()
345 pub fn calloc(amt: size_t, amt2: size_t) -> *mut c_void; in calloc()
347 pub fn free(ptr: *mut c_void); in free()
349 pub fn malloc(amt: size_t) -> *mut c_void; in malloc()
351 pub fn sbrk(increment: ::intptr_t) -> *mut ::c_void; in sbrk()
353 pub fn read(fd: c_int, ptr: *mut c_void, size: size_t) -> ssize_t; in read()
354 pub fn realloc(ptr: *mut c_void, amt: size_t) -> *mut c_void; in realloc()
358 pub fn write(fd: c_int, ptr: *const c_void, size: size_t) -> ssize_t; in write()
374 pub fn fread(buf: *mut c_void, a: size_t, b: size_t, f: *mut FILE) -> size_t; in fread()
375 pub fn fwrite(buf: *const c_void, a: size_t, b: size_t, f: *mut FILE) -> size_t; in fwrite()
390 pub fn posix_memalign(a: *mut *mut c_void, b: size_t, c: size_t) -> c_int; in posix_memalign()
463 pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void; in memchr()
464 pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int; in memcmp()
465 pub fn memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memcpy()
466 pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memmove()
467 pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void; in memset()
542 pub fn pread(fd: ::c_int, buf: *mut ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t; in pread()
543 pub fn pwrite(fd: ::c_int, buf: *const ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t; in pwrite()
563 pub fn send(socket: ::c_int, buf: *const ::c_void, len: ::size_t, flags: ::c_int) -> ::ssize_t; in send()
564 pub fn recv(socket: ::c_int, buf: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::ssize_t; in recv()
603 pub fn getentropy(buf: *mut ::c_void, buflen: ::size_t) -> ::c_int; in getentropy()
604 pub fn memrchr(cx: *const ::c_void, c: ::c_int, n: ::size_t) -> *mut ::c_void; in memrchr()
704 pub fn arc4random_buf(a: *mut c_void, b: size_t); in arc4random_buf()