Lines Matching defs:c_void
3473 pub fn fread(ptr: *mut c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t; in fread()
3474 pub fn fwrite(ptr: *const c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t; in fwrite()
3493 pub fn calloc(nobj: size_t, size: size_t) -> *mut c_void; in calloc()
3494 pub fn malloc(size: size_t) -> *mut c_void; in malloc()
3495 pub fn realloc(p: *mut c_void, size: size_t) -> *mut c_void; in realloc()
3496 pub fn free(p: *mut c_void); in free()
3526 pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void; in memchr()
3528 pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int; in memcmp()
3529 pub fn memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memcpy()
3530 pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memmove()
3531 pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void; in memset()
3563 value: *const c_void, in setsockopt()
3574 buf: *const c_void, in sendto()
3685 pub fn posix_memalign(memptr: *mut *mut c_void, align: size_t, size: size_t) -> c_int; in posix_memalign()
3686 pub fn read(fd: c_int, buf: *mut c_void, count: size_t) -> ssize_t; in read()
3702 pub fn write(fd: c_int, buf: *const c_void, count: size_t) -> ssize_t; in write()
3703 pub fn pread(fd: c_int, buf: *mut c_void, count: size_t, offset: off_t) -> ssize_t; in pread()
3704 pub fn pwrite(fd: c_int, buf: *const c_void, count: size_t, offset: off_t) -> ssize_t; in pwrite()
3711 pub fn mlock(addr: *const c_void, len: size_t) -> c_int; in mlock()
3712 pub fn munlock(addr: *const c_void, len: size_t) -> c_int; in munlock()
3717 addr: *mut c_void, in mmap()
3723 ) -> *mut c_void; in mmap()
3724 pub fn munmap(addr: *mut c_void, len: size_t) -> c_int; in munmap()
3751 pub fn pthread_exit(value: *mut c_void) -> !; in pthread_exit()
3765 dtor: Option<unsafe extern "C" fn(*mut c_void)>, in pthread_key_create()
3768 pub fn pthread_getspecific(key: pthread_key_t) -> *mut c_void; in pthread_getspecific()
3815 optval: *mut c_void, in getsockopt()
3822 pub fn dlopen(filename: *const c_char, flag: c_int) -> *mut c_void; in dlopen()
3824 pub fn dlsym(handle: *mut c_void, symbol: *const c_char) -> *mut c_void; in dlsym()
3826 pub fn dladdr(addr: *const c_void, info: *mut Dl_info) -> c_int; in dladdr()
3852 pub fn send(socket: c_int, buf: *const c_void, len: size_t, flags: c_int) -> ssize_t; in send()
3853 pub fn recv(socket: c_int, buf: *mut c_void, len: size_t, flags: c_int) -> ssize_t; in recv()
3940 stackaddr: *mut *mut c_void, in pthread_attr_getstack()
3943 pub fn memalign(align: size_t, size: size_t) -> *mut c_void; in memalign()
3948 pub fn memrchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void; in memrchr()
4032 pub fn shmat(shmid: c_int, shmaddr: *const c_void, shmflg: c_int) -> *mut c_void; in shmat()
4043 msgp: *mut c_void, in msgrcv()
4048 pub fn msgsnd(msqid: c_int, msgp: *const c_void, msgsz: size_t, msgflg: c_int) -> c_int; in msgsnd()
4050 pub fn mprotect(addr: *mut c_void, len: size_t, prot: c_int) -> c_int; in mprotect()
4107 pub fn posix_madvise(addr: *mut c_void, len: size_t, advice: c_int) -> c_int; in posix_madvise()
4114 pub fn madvise(addr: *mut c_void, len: size_t, advice: c_int) -> c_int; in madvise()
4116 pub fn msync(addr: *mut c_void, len: size_t, flags: c_int) -> c_int; in msync()
4120 buf: *mut c_void, in recvfrom()
4189 data: *const c_void, in mount()
4205 child_stack: *mut c_void, in clone()
4207 arg: *mut c_void, in clone()
4294 f: extern "C" fn(*mut c_void) -> *mut c_void, in pthread_create()
4295 value: *mut c_void, in pthread_create()
4302 data: *mut c_void, in dl_iterate_phdr()