Home | History | Annotate | Download | only in m_syswrap

Lines Matching refs:ML_

40 Bool ML_(valid_client_addr)(Addr start, SizeT size, ThreadId tid,
46 extern Bool ML_(safe_to_deref) ( void* start, SizeT size );
49 extern Bool ML_(client_signal_OK)(Int sigNo);
53 Bool ML_(fd_allowed)(Int fd, const Char *syscallname, ThreadId tid, Bool isNewFD);
55 extern void ML_(record_fd_open_named) (ThreadId tid, Int fd);
56 extern void ML_(record_fd_open_nameless) (ThreadId tid, Int fd);
57 extern void ML_(record_fd_open_with_given_name)(ThreadId tid, Int fd,
63 Bool ML_(do_sigkill)(Int pid, Int tgid);
68 ML_(notify_core_and_tool_of_mmap) ( Addr a, SizeT len, UInt prot,
71 ML_(notify_core_and_tool_of_munmap) ( Addr a, SizeT len );
73 ML_(notify_core_and_tool_of_mprotect) ( Addr a, SizeT len, Int prot );
76 ML_(buf_and_len_pre_check) ( ThreadId tid, Addr buf_p, Addr buflen_p,
79 ML_(buf_and_len_post_check) ( ThreadId tid, SysRes res,
84 void ML_(PRE_unknown_ioctl)(ThreadId tid, UWord request, UWord arg);
86 void ML_(POST_unknown_ioctl)(ThreadId tid, UInt res, UWord request, UWord arg);
220 extern void ML_(generic_PRE_sys_socketpair) ( TId, UW, UW, UW, UW );
221 extern SysRes ML_(generic_POST_sys_socketpair) ( TId, SR, UW, UW, UW, UW );
222 extern SysRes ML_(generic_POST_sys_socket) ( TId, SR );
223 extern void ML_(generic_PRE_sys_bind) ( TId, UW, UW, UW );
224 extern void ML_(generic_PRE_sys_accept) ( TId, UW, UW, UW );
225 extern SysRes ML_(generic_POST_sys_accept) ( TId, SR, UW, UW, UW );
226 extern void ML_(generic_PRE_sys_sendto) ( TId, UW, UW, UW, UW, UW, UW );
227 extern void ML_(generic_PRE_sys_send) ( TId, UW, UW, UW );
228 extern void ML_(generic_PRE_sys_recvfrom) ( TId, UW, UW, UW, UW, UW, UW );
229 extern void ML_(generic_POST_sys_recvfrom) ( TId, SR, UW, UW, UW, UW, UW, UW );
230 extern void ML_(generic_PRE_sys_recv) ( TId, UW, UW, UW );
231 extern void ML_(generic_POST_sys_recv) ( TId, UW, UW, UW, UW );
232 extern void ML_(generic_PRE_sys_connect) ( TId, UW, UW, UW );
233 extern void ML_(generic_PRE_sys_setsockopt) ( TId, UW, UW, UW, UW, UW );
234 extern void ML_(generic_PRE_sys_getsockname) ( TId, UW, UW, UW );
235 extern void ML_(generic_POST_sys_getsockname) ( TId, SR, UW, UW, UW );
236 extern void ML_(generic_PRE_sys_getpeername) ( TId, UW, UW, UW );
237 extern void ML_(generic_POST_sys_getpeername) ( TId, SR, UW, UW, UW );
238 extern void ML_(generic_PRE_sys_sendmsg) ( TId, UW, UW );
239 extern void ML_(generic_PRE_sys_recvmsg) ( TId, UW, UW );
240 extern void ML_(generic_POST_sys_recvmsg) ( TId, UW, UW );
242 extern void ML_(generic_PRE_sys_semop) ( TId, UW, UW, UW );
243 extern void ML_(generic_PRE_sys_semtimedop) ( TId, UW, UW, UW, UW );
244 extern void ML_(generic_PRE_sys_semctl) ( TId, UW, UW, UW, UW );
245 extern void ML_(generic_POST_sys_semctl) ( TId, UW, UW, UW, UW, UW );
246 extern UWord ML_(generic_PRE_sys_shmat) ( TId, UW, UW, UW );
247 extern void ML_(generic_POST_sys_shmat) ( TId, UW, UW, UW, UW );
248 extern Bool ML_(generic_PRE_sys_shmdt) ( TId, UW );
249 extern void ML_(generic_POST_sys_shmdt) ( TId, UW, UW );
250 extern void ML_(generic_PRE_sys_shmctl) ( TId, UW, UW, UW );
251 extern void ML_(generic_POST_sys_shmctl) ( TId, UW, UW, UW, UW );
253 extern SysRes ML_(generic_PRE_sys_mmap) ( TId, UW, UW, UW, UW, UW, Off64T );