Home
last modified time | relevance | path

Searched refs:csops (Results 1 – 8 of 8) sorted by relevance

/xnu-11215/tests/
H A Dcodesigntests.c25 rcent = csops(pid, op, header, cnt); in get_blob()
31 rcent = csops(pid, op, header, sizeof(header)); in get_blob()
48 rcent = csops(pid, op, buffer, bufferlen - 1); in get_blob()
51 rcent = csops(pid, op, buffer, bufferlen); in get_blob()
76 rcent = csops(pid, op, buffer, bufferlen + 1); in get_blob()
120 rcent = csops(pid, CS_OPS_SET_STATUS, &status, sizeof(status) - 1);
124 rcent = csops(pid, CS_OPS_SET_STATUS, &status, sizeof(status));
127 rcent = csops(pid, CS_OPS_STATUS, &status, sizeof(status));
136 rcent = csops(pid, CS_OPS_MARKINVALID, NULL, 0);
140 rcent = csops(pid, CS_OPS_SET_STATUS, &status, sizeof(status));
H A Dcs_helpers.c18 …T_QUIET; T_ASSERT_POSIX_ZERO(csops(getpid(), CS_OPS_STATUS, &my_csflags, sizeof(my_csflags)), NULL… in remove_platform_binary()
24 ret = csops(getpid(), CS_OPS_CLEARPLATFORM, NULL, 0); in remove_platform_binary()
37 …T_QUIET; T_ASSERT_POSIX_ZERO(csops(getpid(), CS_OPS_STATUS, &my_csflags, sizeof(my_csflags)), NULL… in remove_platform_binary()
H A Dtest_static_binary_csflags.c21 ret = csops(pid, CS_OPS_STATUS, &status, sizeof(status));
H A Dtest_note_exec.c62 csret = csops(pid, CS_OPS_STATUS, &status, sizeof(status)); in thread_wait_exec()
H A Dtest_sysctl_kern_procargs_25397314.m238 …T_ASSERT_POSIX_SUCCESS(csops(pid, CS_OPS_SET_STATUS, &csopsStatus, sizeof(csopsStatus)), "set CS_R…
330 …T_ASSERT_POSIX_SUCCESS(csops(getpid(), CS_OPS_SET_STATUS, &csopsStatus, sizeof(csopsStatus)), "set…
/xnu-11215/tests/vm/
H A Dvm_tainted_executable.c102 …T_QUIET; T_ASSERT_POSIX_SUCCESS(csops(getpid(), CS_OPS_STATUS, &cs_status, sizeof(cs_status)), NUL…
/xnu-11215/bsd/sys/
H A Dcodesign.h71 int csops(pid_t pid, unsigned int ops, void * useraddr, size_t usersize);
/xnu-11215/bsd/kern/
H A Dkern_proc.c3181 csops(__unused proc_t p, struct csops_args *uap, __unused int32_t *retval) in csops() function