Searched refs:scInt (Results 1 – 2 of 2) sorted by relevance
| /sbin/sysctl/ |
| D | sysctl.c | 43 SysCtlInt scInt; in PrintVal() local 45 OSSysCtl(SYSCTLTable[idx].path, &scInt, NULL); in PrintVal() 46 printf("%s: %ld\n", SYSCTLTable[idx].path, scInt.value); in PrintVal() 75 SysCtlInt scInt; in UpdateVal() local 77 scInt.value = atoi(val); in UpdateVal() 78 printf("%ld\n", scInt.value); in UpdateVal() 79 OSSysCtl(SYSCTLTable[idx].path, NULL, &scInt); in UpdateVal()
|
| /sys/kern/ |
| D | syscall.c | 597 SysCtlInt *scInt = SysCtl_GetObject(node); in Syscall_SysCtl() local 598 status = Copy_Out(scInt, user_oldval, sizeof(*scInt)); in Syscall_SysCtl() 628 SysCtlInt scInt; in Syscall_SysCtl() local 629 status = Copy_In(user_newval, &scInt, sizeof(scInt)); in Syscall_SysCtl() 633 status = SysCtl_SetObject(node, (void *)&scInt); in Syscall_SysCtl()
|