Lines Matching defs:c_void
52 pub type locale_t = *mut ::c_void;
154 pub iov_base: *mut ::c_void,
178 pub sival_ptr: *mut ::c_void
449 base: *mut c_void,
452 compar: ::Option<unsafe extern "C" fn(*const c_void, *const c_void) -> c_int>,
455 key: *const c_void,
456 base: *const c_void,
459 compar: ::Option<unsafe extern "C" fn(*const c_void, *const c_void) -> c_int>,
460 ) -> *mut c_void;
491 pub fn fread(ptr: *mut c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t;
496 pub fn fwrite(ptr: *const c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t;
522 pub fn calloc(nobj: size_t, size: size_t) -> *mut c_void;
523 pub fn malloc(size: size_t) -> *mut c_void;
524 pub fn realloc(p: *mut c_void, size: size_t) -> *mut c_void;
525 pub fn free(p: *mut c_void);
568 pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void;
570 pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int;
571 pub fn memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void;
572 pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void;
573 pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void;
677 value: *const ::c_void,
704 buf: *const ::c_void,
911 pub fn posix_memalign(memptr: *mut *mut ::c_void, align: ::size_t, size: ::size_t) -> ::c_int;
916 pub fn read(fd: ::c_int, buf: *mut ::c_void, count: ::size_t) -> ::ssize_t;
961 pub fn write(fd: ::c_int, buf: *const ::c_void, count: ::size_t) -> ::ssize_t;
966 pub fn pread(fd: ::c_int, buf: *mut ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t;
971 pub fn pwrite(fd: ::c_int, buf: *const ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t;
988 pub fn mlock(addr: *const ::c_void, len: ::size_t) -> ::c_int;
989 pub fn munlock(addr: *const ::c_void, len: ::size_t) -> ::c_int;
998 addr: *mut ::c_void,
1004 ) -> *mut ::c_void;
1009 pub fn munmap(addr: *mut ::c_void, len: ::size_t) -> ::c_int;
1073 pub fn pthread_join(native: ::pthread_t, value: *mut *mut ::c_void) -> ::c_int;
1074 pub fn pthread_exit(value: *mut ::c_void) -> !;
1084 dtor: ::Option<unsafe extern "C" fn(*mut ::c_void)>,
1087 pub fn pthread_getspecific(key: pthread_key_t) -> *mut ::c_void;
1088 pub fn pthread_setspecific(key: pthread_key_t, value: *const ::c_void) -> ::c_int;
1178 optval: *mut ::c_void,
1185 pub fn dlopen(filename: *const ::c_char, flag: ::c_int) -> *mut ::c_void;
1187 pub fn dlsym(handle: *mut ::c_void, symbol: *const ::c_char) -> *mut ::c_void;
1188 pub fn dlclose(handle: *mut ::c_void) -> ::c_int;
1189 pub fn dladdr(addr: *const ::c_void, info: *mut Dl_info) -> ::c_int;
1298 pub fn send(socket: ::c_int, buf: *const ::c_void, len: ::size_t, flags: ::c_int) -> ::ssize_t;
1304 pub fn recv(socket: ::c_int, buf: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::ssize_t;
1496 pub fn fmemopen(buf: *mut c_void, size: size_t, mode: *const c_char) -> *mut FILE;
1583 pub use ::ffi::c_void;
1591 pub enum c_void {