Lines Matching defs:c_void
109 pub unsafe fn si_addr(&self) -> *mut c_void { in si_addr()
1145 pub fn fread(ptr: *mut c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t; in fread()
1146 pub fn fwrite(ptr: *const c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t; in fwrite()
1165 pub fn calloc(nobj: size_t, size: size_t) -> *mut c_void; in calloc()
1166 pub fn malloc(size: size_t) -> *mut c_void; in malloc()
1167 pub fn realloc(p: *mut c_void, size: size_t) -> *mut c_void; in realloc()
1168 pub fn free(p: *mut c_void); in free()
1198 pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void; in memchr()
1200 pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int; in memcmp()
1201 pub fn memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memcpy()
1202 pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memmove()
1203 pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void; in memset()
1240 pub fn mlock(addr: *const c_void, len: size_t) -> c_int; in mlock()
1242 pub fn munlock(addr: *const c_void, len: size_t) -> c_int; in munlock()
1246 addr: *mut c_void, in mmap()
1252 ) -> *mut c_void; in mmap()
1253 pub fn munmap(addr: *mut c_void, len: size_t) -> c_int; in munmap()
1255 pub fn mprotect(addr: *mut c_void, len: size_t, prot: c_int) -> c_int; in mprotect()
1256 pub fn msync(addr: *mut c_void, len: size_t, flags: c_int) -> c_int; in msync()
1263 pub fn pthread_exit(value: *mut c_void) -> !; in pthread_exit()
1277 pub fn dlopen(filename: *const c_char, flag: c_int) -> *mut c_void; in dlopen()
1283 pub fn dlsym(handle: *mut c_void, symbol: *const c_char) -> *mut c_void; in dlsym()
1289 pub fn dladdr(addr: *mut c_void, info: *mut Dl_info) -> c_int; in dladdr()
1326 pub fn memalign(block_size: size_t, size_arg: size_t) -> *mut c_void; in memalign()
1384 start_routine: extern "C" fn(*mut c_void) -> *mut c_void, in pthread_create()
1385 value: *mut c_void, in pthread_create()
1540 dtor: Option<unsafe extern "C" fn(*mut c_void)>, in pthread_key_create()
1550 pub fn pthread_getspecific(key: crate::pthread_key_t) -> *mut c_void; in pthread_getspecific()
1613 optval: *mut c_void, in getsockopt()
1621 pub fn recv(s: c_int, buf: *mut c_void, bufLen: size_t, flags: c_int) -> ssize_t; in recv()
1626 buf: *mut c_void, in recvfrom()
1636 pub fn send(socket: c_int, buf: *const c_void, len: size_t, flags: c_int) -> ssize_t; in send()
1643 buf: *const c_void, in sendto()
1655 value: *const c_void, in setsockopt()
1681 pub fn read(fd: c_int, buf: *mut c_void, count: size_t) -> ssize_t; in read()
1685 pub fn write(fd: c_int, buf: *const c_void, count: size_t) -> ssize_t; in write()
1961 pub fn pread(_fd: c_int, _buf: *mut c_void, _count: size_t, _offset: off64_t) -> ssize_t { in pread()
1965 pub fn pwrite(_fd: c_int, _buf: *const c_void, _count: size_t, _offset: off64_t) -> ssize_t { in pwrite()
1968 pub fn posix_memalign(memptr: *mut *mut c_void, align: size_t, size: size_t) -> c_int { in posix_memalign()