HomeSort by relevance Sort by last modified time
    Searched defs:sysno (Results 1 - 7 of 7) sorted by null

  /external/ltp/testcases/misc/crash/
crash02.c 274 int in_blacklist(int sysno);
419 long int sysno, arg1, arg2, arg3, arg4, arg5, arg6, arg7; local
422 sysno = rand() % sysno_max;
423 } while (in_blacklist(sysno));
437 try_num, sysno, arg1, arg2, arg3, arg4, arg5,
440 syscall(sysno, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
447 int in_blacklist(int sysno)
479 if (sysno == list[i])
  /external/valgrind/coregrind/m_syswrap/
syswrap-main.c 99 syscalls. Fasttraps do not take any parameters (except of the sysno in eax)
100 and never fail (if the sysno is valid).
415 return a1->sysno == a2->sysno
427 Bool eq_SyscallStatus ( UInt sysno, SyscallStatus* s1, SyscallStatus* s2 )
430 if (s1->what == s2->what && sr_EQ( sysno, s1->sres, s2->sres ))
466 canonical->sysno = gst->guest_EAX;
478 canonical->sysno = gst->guest_RAX;
490 canonical->sysno = gst->guest_GPR0;
502 canonical->sysno = gst->guest_GPR0
1664 Word sysno; local
2056 Word sysno; local
    [all...]
priv_types_n_macros.h 55 Word sysno; member in struct:SyscallArgs
178 /* A function to find the syscall table entry for a given sysno. If
186 SyscallTableEntry* ML_(get_linux_syscall_entry)( UInt sysno );
198 SyscallTableEntry* ML_(get_solaris_syscall_entry)( UInt sysno );
266 #define WRAPPER_ENTRY_X_(auxstr, sysno, name) \
267 [sysno] = { vgSysWrap_##auxstr##_##name##_before, NULL }
268 #define WRAPPER_ENTRY_XY(auxstr, sysno, name) \
269 [sysno] = { vgSysWrap_##auxstr##_##name##_before, \
279 # define GENX_(sysno, name) WRAPPER_ENTRY_X_(generic, sysno, name
    [all...]
  /external/valgrind/coregrind/m_gdbserver/
server.c 650 CORE_ADDR sysno; local
660 decode_address (&sysno, from, to - from);
661 syscalls_to_catch[i] = (Int)sysno;
662 dlog(4, "catch syscall sysno %d\n", (int)sysno);
667 dlog (4, "catch syscall all sysno\n");
    [all...]
  /external/seccomp-tests/linux/
seccomp_bpf.c 472 int sysno = __NR_mmap; local
474 int sysno = __NR_mmap2;
479 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, sysno, 1, 0),
509 map1 = (void *)syscall(sysno,
513 map2 = (void *)syscall(sysno,
    [all...]
  /external/linux-kselftest/tools/testing/selftests/seccomp/
seccomp_bpf.c 560 int sysno = __NR_mmap; local
562 int sysno = __NR_mmap2;
567 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, sysno, 1, 0),
597 map1 = (void *)syscall(sysno,
601 map2 = (void *)syscall(sysno,
    [all...]
  /external/valgrind/VEX/priv/
guest_s390_toIR.c 357 system_call(IRExpr *sysno)
360 stmt(IRStmt_Put(S390X_GUEST_OFFSET(guest_SYSNO), sysno));
8721 IRTemp sysno = newTemp(Ity_I64); local
    [all...]

Completed in 260 milliseconds