Home
last modified time | relevance | path

Searched refs:mt_real_func (Results 1 – 3 of 3) sorted by relevance

/f-stack/app/micro_thread/
H A Dff_hook.cpp40 return mt_real_func(socket)(domain, type, protocol); in ff_hook_socket()
50 return mt_real_func(close)(fd); in ff_hook_close()
68 return mt_real_func(read)(fd, buf, nbyte); in ff_hook_read()
77 return mt_real_func(write)(fd, buf, nbyte); in ff_hook_write()
103 return mt_real_func(recv)(fd, buffer, length, flags); in ff_hook_recv()
111 return mt_real_func(send)(fd, buf, nbyte, flags); in ff_hook_send()
129 return mt_real_func(ioctl)(fd, cmd, arg); in ff_hook_ioctl()
138 return mt_real_func(fcntl)(fd, cmd, arg); in ff_hook_fcntl()
147 return mt_real_func(listen)(fd, backlog); in ff_hook_listen()
156 return mt_real_func(bind)(fd, addr, addrlen); in ff_hook_bind()
[all …]
H A Dmt_sys_hook.cpp129 return mt_real_func(socket)(domain, type, protocol); in socket()
152 return mt_real_func(close)(fd); in close()
165 return mt_real_func(connect)(fd, address, address_len); in connect()
182 return mt_real_func(read)(fd, buf, nbyte); in read()
199 return mt_real_func(write)(fd, buf, nbyte); in write()
254 return mt_real_func(recv)(fd, buffer, length, flags); in recv()
271 return mt_real_func(send)(fd, buf, nbyte, flags); in send()
318 return mt_real_func(fcntl)(fd, cmd, arg); in fcntl()
341 return mt_real_func(listen)(sockfd, backlog); in listen()
352 return mt_real_func(bind)(sockfd, addr, addrlen); in bind()
[all …]
H A Dmt_sys_hook.h95 #define mt_real_func(name) g_mt_syscall_tab.real_##name macro