Lines Matching refs:num

126 SyscallReturn unimplementedFunc(SyscallDesc *desc, int num, ThreadContext *tc);
132 SyscallReturn ignoreFunc(SyscallDesc *desc, int num, ThreadContext *tc);
135 SyscallReturn fallocateFunc(SyscallDesc *desc, int num, ThreadContext *tc);
138 SyscallReturn exitFunc(SyscallDesc *desc, int num, ThreadContext *tc);
141 SyscallReturn exitGroupFunc(SyscallDesc *desc, int num, ThreadContext *tc);
144 SyscallReturn setTidAddressFunc(SyscallDesc *desc, int num, ThreadContext *tc);
147 SyscallReturn getpagesizeFunc(SyscallDesc *desc, int num, ThreadContext *tc);
150 SyscallReturn brkFunc(SyscallDesc *desc, int num, ThreadContext *tc);
153 SyscallReturn closeFunc(SyscallDesc *desc, int num, ThreadContext *tc);
156 SyscallReturn lseekFunc(SyscallDesc *desc, int num, ThreadContext *tc);
159 SyscallReturn _llseekFunc(SyscallDesc *desc, int num, ThreadContext *tc);
162 SyscallReturn munmapFunc(SyscallDesc *desc, int num, ThreadContext *tc);
165 SyscallReturn shutdownFunc(SyscallDesc *desc, int num, ThreadContext *tc);
168 SyscallReturn gethostnameFunc(SyscallDesc *desc, int num, ThreadContext *tc);
171 SyscallReturn getcwdFunc(SyscallDesc *desc, int num, ThreadContext *tc);
174 SyscallReturn readlinkFunc(SyscallDesc *desc, int num, ThreadContext *tc,
176 SyscallReturn readlinkFunc(SyscallDesc *desc, int num, ThreadContext *tc);
179 SyscallReturn unlinkHelper(SyscallDesc *desc, int num, ThreadContext *tc,
181 SyscallReturn unlinkFunc(SyscallDesc *desc, int num, ThreadContext *tc);
184 SyscallReturn linkFunc(SyscallDesc *desc, int num, ThreadContext *tc);
187 SyscallReturn symlinkFunc(SyscallDesc *desc, int num, ThreadContext *tc);
190 SyscallReturn mkdirFunc(SyscallDesc *desc, int num, ThreadContext *tc);
193 SyscallReturn mknodFunc(SyscallDesc *desc, int num, ThreadContext *tc);
196 SyscallReturn chdirFunc(SyscallDesc *desc, int num, ThreadContext *tc);
199 SyscallReturn rmdirFunc(SyscallDesc *desc, int num, ThreadContext *tc);
202 SyscallReturn renameFunc(SyscallDesc *desc, int num, ThreadContext *tc);
206 SyscallReturn truncateFunc(SyscallDesc *desc, int num, ThreadContext *tc);
210 SyscallReturn ftruncateFunc(SyscallDesc *desc, int num, ThreadContext *tc);
214 SyscallReturn truncate64Func(SyscallDesc *desc, int num, ThreadContext *tc);
217 SyscallReturn ftruncate64Func(SyscallDesc *desc, int num, ThreadContext *tc);
221 SyscallReturn umaskFunc(SyscallDesc *desc, int num, ThreadContext *tc);
224 SyscallReturn gettidFunc(SyscallDesc *desc, int num, ThreadContext *tc);
227 SyscallReturn chownFunc(SyscallDesc *desc, int num, ThreadContext *tc);
230 SyscallReturn getpgrpFunc(SyscallDesc *desc, int num, ThreadContext *tc);
233 SyscallReturn setpgidFunc(SyscallDesc *desc, int num, ThreadContext *tc);
236 SyscallReturn fchownFunc(SyscallDesc *desc, int num, ThreadContext *tc);
239 SyscallReturn dupFunc(SyscallDesc *desc, int num, ThreadContext *tc);
242 SyscallReturn dup2Func(SyscallDesc *desc, int num, ThreadContext *tc);
245 SyscallReturn fcntlFunc(SyscallDesc *desc, int num, ThreadContext *tc);
248 SyscallReturn fcntl64Func(SyscallDesc *desc, int num, ThreadContext *tc);
251 SyscallReturn setuidFunc(SyscallDesc *desc, int num, ThreadContext *tc);
254 SyscallReturn pipeFunc(SyscallDesc *desc, int num, ThreadContext *tc);
257 SyscallReturn pipeImpl(SyscallDesc *desc, int num, ThreadContext *tc,
261 SyscallReturn pipe2Func(SyscallDesc *desc, int num, ThreadContext *tc);
264 SyscallReturn getpidFunc(SyscallDesc *desc, int num, ThreadContext *tc);
267 SyscallReturn getpeernameFunc(SyscallDesc *desc, int num, ThreadContext *tc);
270 SyscallReturn bindFunc(SyscallDesc *desc, int num, ThreadContext *tc);
273 SyscallReturn listenFunc(SyscallDesc *desc, int num, ThreadContext *tc);
276 SyscallReturn connectFunc(SyscallDesc *desc, int num, ThreadContext *tc);
280 SyscallReturn getdentsFunc(SyscallDesc *desc, int num, ThreadContext *tc);
285 SyscallReturn getdents64Func(SyscallDesc *desc, int num, ThreadContext *tc);
289 SyscallReturn sendtoFunc(SyscallDesc *desc, int num, ThreadContext *tc);
292 SyscallReturn recvfromFunc(SyscallDesc *desc, int num, ThreadContext *tc);
295 SyscallReturn recvmsgFunc(SyscallDesc *desc, int num, ThreadContext *tc);
298 SyscallReturn sendmsgFunc(SyscallDesc *desc, int num, ThreadContext *tc);
301 SyscallReturn getuidFunc(SyscallDesc *desc, int num, ThreadContext *tc);
304 SyscallReturn getgidFunc(SyscallDesc *desc, int num, ThreadContext *tc);
307 SyscallReturn getppidFunc(SyscallDesc *desc, int num, ThreadContext *tc);
310 SyscallReturn geteuidFunc(SyscallDesc *desc, int num, ThreadContext *tc);
313 SyscallReturn getegidFunc(SyscallDesc *desc, int num, ThreadContext *tc);
316 SyscallReturn accessFunc(SyscallDesc *desc, int num, ThreadContext *tc);
317 SyscallReturn accessFunc(SyscallDesc *desc, int num, ThreadContext *tc,
321 SyscallReturn getsockoptFunc(SyscallDesc *desc, int num, ThreadContext *tc);
324 SyscallReturn setsockoptFunc(SyscallDesc *desc, int num, ThreadContext *tc);
327 SyscallReturn getsocknameFunc(SyscallDesc *desc, int num, ThreadContext *tc);
475 SyscallReturn pipePseudoFunc(SyscallDesc *desc, int num, ThreadContext *tc);
478 SyscallReturn getpidPseudoFunc(SyscallDesc *desc, int num, ThreadContext *tc);
481 SyscallReturn getuidPseudoFunc(SyscallDesc *desc, int num, ThreadContext *tc);
484 SyscallReturn getgidPseudoFunc(SyscallDesc *desc, int num, ThreadContext *tc);
1060 pollFunc(SyscallDesc *desc, int num, ThreadContext *tc)
1738 mmapImpl(SyscallDesc *desc, int num, ThreadContext *tc, bool is_mmap2)
1916 pwrite64Func(SyscallDesc *desc, int num, ThreadContext *tc)
1941 mmapFunc(SyscallDesc *desc, int num, ThreadContext *tc)
1943 return mmapImpl<OS>(desc, num, tc, false);
1949 mmap2Func(SyscallDesc *desc, int num, ThreadContext *tc)
1951 return mmapImpl<OS>(desc, num, tc, true);
2040 clock_gettimeFunc(SyscallDesc *desc, int num, ThreadContext *tc)
2060 clock_getresFunc(SyscallDesc *desc, int num, ThreadContext *tc)
2323 tgkillFunc(SyscallDesc *desc, int num, ThreadContext *tc)
2373 socketFunc(SyscallDesc *desc, int num, ThreadContext *tc)
2393 socketpairFunc(SyscallDesc *desc, int num, ThreadContext *tc)
2616 readFunc(SyscallDesc *desc, int num, ThreadContext *tc)
2647 writeFunc(SyscallDesc *desc, int num, ThreadContext *tc)
2689 wait4Func(SyscallDesc *desc, int num, ThreadContext *tc)
2751 acceptFunc(SyscallDesc *desc, int num, ThreadContext *tc)
2822 eventfdFunc(SyscallDesc *desc, int num, ThreadContext *tc)