Searched refs:sizep (Results 1 - 10 of 10) sorted by relevance

/darwin-on-arm/xnu/security/
H A Dmac_data.c60 void **valp, size_t *sizep)
66 error = mac_find_module_data(mpc->mpc_data, key, valp, sizep);
72 void **valp, size_t *sizep)
81 *sizep = (size_t)mmd->data[i].value_size;
59 mac_find_policy_data(const mac_policy_handle_t handle, const char *key, void **valp, size_t *sizep) argument
71 mac_find_module_data(struct mac_module_data *mmd, const char *key, void **valp, size_t *sizep) argument
H A Dmac_data.h122 void **valp, size_t *sizep);
124 void **valp, size_t *sizep);
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_pcsamples.c68 int pcsamples_control(int *name, u_int namelen, user_addr_t where, size_t *sizep);
230 pcsamples_control(int *name, __unused u_int namelen, user_addr_t where, size_t *sizep) argument
233 size_t size=*sizep;
313 ret = pcsamples_read(where, sizep);
344 *sizep = 0;
350 ret = pcsamples_read(where, sizep);
H A Dkern_newsysctl.c122 STATIC int sysctlnametomib(const char *name, int *mibp, size_t *sizep);
1647 sysctlnametomib(const char *name, int *mibp, size_t *sizep) argument
1664 *sizep *= sizeof(int);
1665 error = sysctl(oid, 2, mibp, sizep, non_const_name, strlen(name));
1666 *sizep /= sizeof(int);
H A Dkdebug.c1787 kdbg_control(int *name, u_int namelen, user_addr_t where, size_t *sizep) argument
1790 size_t size = *sizep;
1868 ret = kdbg_getentropy(where, sizep, value);
1989 ret = kdbg_read(where, sizep, NULL, NULL);
2008 if (*sizep) {
2009 ns = ((u_int64_t)*sizep) * (u_int64_t)(1000 * 1000);
2062 *sizep = number;
2100 ret = kdbg_readmap(where, sizep, NULL, NULL);
H A Dkern_sysctl.c203 kdbg_control(int *name, u_int namelen, user_addr_t where, size_t * sizep);
209 pcsamples_ops(int *name, u_int namelen, user_addr_t where, size_t *sizep,
215 size_t *sizep, proc_t cur_proc);
217 sysctl_procargsx(int *name, u_int namelen, user_addr_t where, size_t *sizep,
1788 * Return the top *sizep bytes of the user stack, or the entire area of the
1848 size_t *sizep, proc_t cur_proc, int argc_yes)
1851 int buflen = where != USER_ADDR_NULL ? *sizep : 0;
1874 /* when where (oldp from sysctl) is NULL and sizep (oldlenp from sysctl */
1908 if (sizep == NULL) {
1926 *sizep
1847 sysctl_procargsx(int *name, u_int namelen, user_addr_t where, size_t *sizep, proc_t cur_proc, int argc_yes) argument
[all...]
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_attrlist.c265 ssize_t *sizep, int is_64bit)
277 *sizep += sizeof(struct user64_timespec);
279 *sizep += sizeof(struct user32_timespec);
282 *sizep += tab->size;
298 getvolattrlist_setupvfsattr(struct attrlist *alp, struct vfs_attr *vsp, ssize_t *sizep, int is_64bit) argument
305 *sizep = sizeof(uint32_t); /* length count */
312 alp->commonattr, vsp, sizep,
318 (error = getvolattrlist_parsetab(getvolattrlist_vol_tab, alp->volattr, vsp, sizep, is_64bit)) != 0)
456 ssize_t *sizep, kauth_action_t *actionp, int is_64bit)
468 *sizep
264 getvolattrlist_parsetab(struct getvolattrlist_attrtab *tab, attrgroup_t attrs, struct vfs_attr *vsp, ssize_t *sizep, int is_64bit) argument
455 getattrlist_parsetab(struct getattrlist_attrtab *tab, attrgroup_t attrs, struct vnode_attr *vap, ssize_t *sizep, kauth_action_t *actionp, int is_64bit) argument
492 getattrlist_setupvattr(struct attrlist *alp, struct vnode_attr *vap, ssize_t *sizep, kauth_action_t *actionp, int is_64bit, int isdir) argument
[all...]
H A Dvfs_syscalls.c152 user_addr_t bufp, int *sizep, boolean_t is_64_bit,
9283 user_addr_t bufp, int *sizep, boolean_t is_64_bit,
9396 if (sizep != NULL) {
9397 *sizep = my_size;
9282 munge_statfs(struct mount *mp, struct vfsstatfs *sfsp, user_addr_t bufp, int *sizep, boolean_t is_64_bit, boolean_t partial_copy) argument
H A Dvfs_subr.c5069 vnode_size(vnode_t vp, off_t *sizep, vfs_context_t ctx) argument
5078 *sizep = va.va_data_size;
/darwin-on-arm/xnu/bsd/vm/
H A Dvm_unix.c1729 user_addr_t sizep = uap->size;
1746 error = copyin(sizep, &size64, sizeof(size64));
1750 error = copyin(sizep, &size32, sizeof(size32));
1768 error = copyout(&size64, sizep, sizeof(size64));
1771 error = copyout(&size32, sizep, sizeof(size32));

Completed in 223 milliseconds