• Home
  • Raw
  • Download

Lines Matching defs:c_void

449         base: *mut c_void,  in qsort()
452 compar: ::Option<unsafe extern "C" fn(*const c_void, *const c_void) -> c_int>, in qsort()
455 key: *const c_void, in bsearch()
456 base: *const c_void, in bsearch()
459 compar: ::Option<unsafe extern "C" fn(*const c_void, *const c_void) -> c_int>, in bsearch()
460 ) -> *mut c_void; in bsearch()
491 pub fn fread(ptr: *mut c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t; in fread()
496 pub fn fwrite(ptr: *const c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t; in fwrite()
522 pub fn calloc(nobj: size_t, size: size_t) -> *mut c_void; in calloc()
523 pub fn malloc(size: size_t) -> *mut c_void; in malloc()
524 pub fn realloc(p: *mut c_void, size: size_t) -> *mut c_void; in realloc()
525 pub fn free(p: *mut c_void); in free()
568 pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void; in memchr()
570 pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int; in memcmp()
571 pub fn memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memcpy()
572 pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memmove()
573 pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void; in memset()
677 value: *const ::c_void, in setsockopt()
704 buf: *const ::c_void, in sendto()
911 pub fn posix_memalign(memptr: *mut *mut ::c_void, align: ::size_t, size: ::size_t) -> ::c_int; in posix_memalign()
916 pub fn read(fd: ::c_int, buf: *mut ::c_void, count: ::size_t) -> ::ssize_t; in read()
961 pub fn write(fd: ::c_int, buf: *const ::c_void, count: ::size_t) -> ::ssize_t; in write()
966 pub fn pread(fd: ::c_int, buf: *mut ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t; in pread()
971 pub fn pwrite(fd: ::c_int, buf: *const ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t; in pwrite()
988 pub fn mlock(addr: *const ::c_void, len: ::size_t) -> ::c_int; in mlock()
989 pub fn munlock(addr: *const ::c_void, len: ::size_t) -> ::c_int; in munlock()
998 addr: *mut ::c_void, in mmap()
1004 ) -> *mut ::c_void; in mmap()
1009 pub fn munmap(addr: *mut ::c_void, len: ::size_t) -> ::c_int; in munmap()
1074 pub fn pthread_exit(value: *mut ::c_void) -> !; in pthread_exit()
1084 dtor: ::Option<unsafe extern "C" fn(*mut ::c_void)>, in pthread_key_create()
1087 pub fn pthread_getspecific(key: pthread_key_t) -> *mut ::c_void; in pthread_getspecific()
1178 optval: *mut ::c_void, in getsockopt()
1185 pub fn dlopen(filename: *const ::c_char, flag: ::c_int) -> *mut ::c_void; in dlopen()
1187 pub fn dlsym(handle: *mut ::c_void, symbol: *const ::c_char) -> *mut ::c_void; in dlsym()
1189 pub fn dladdr(addr: *const ::c_void, info: *mut Dl_info) -> ::c_int; in dladdr()
1298 pub fn send(socket: ::c_int, buf: *const ::c_void, len: ::size_t, flags: ::c_int) -> ::ssize_t; in send()
1304 pub fn recv(socket: ::c_int, buf: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::ssize_t; in recv()