Home | History | Annotate | Download | only in kern

Lines Matching defs:own

434 			fn = (sysctlfn)sysctl_create; /* we own the rnode */
442 fn = (sysctlfn)sysctl_destroy; /* we own the rnode */
445 fn = (sysctlfn)sysctl_mmap; /* we own the rnode */
717 void *own;
722 own = NULL;
1007 * function to go with it and we can't own it.
1011 * l ptr own
1013 * 0 0 1 -> own
1017 * 1 0 1 -> own
1018 * 1 1 0 -> kptr, no own (fault on lookup)
1019 * 1 1 1 -> uptr, own
1024 own = malloc(sz, M_SYSCTLDATA, M_WAITOK);
1025 if (own == NULL)
1028 memset(own, 0, sz);
1031 nnode.sysctl_data, own, sz);
1033 free(own, M_SYSCTLDATA);
1089 own == NULL)
1098 if (l != NULL && own == NULL && type != CTLTYPE_NODE &&
1113 if (own != NULL)
1114 free(own, M_SYSCTLDATA);
1140 if (own != NULL)
1141 free(own, M_SYSCTLDATA);
1179 if (own) {
1180 node->sysctl_data = own;
1478 * set", then it needs its own function which should have been
1816 * node can "own", if need be.
1951 * existence before populating their own nodes, and to remove their
1952 * own
2286 * already own its own description...sigh. :)