Searched refs:owner (Results 51 - 75 of 290) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/geom/bde/
H A Dg_bde_work.c164 sp->owner = wp;
227 sp->owner = wp;
251 sp->owner = wp;
277 KASSERT(wp == sp->owner, ("Releasing, not owner"));
278 sp->owner = NULL;
287 sp->owner = wp2;
292 KASSERT(wp2 != NULL, ("Failed to pick up owner for %p\n", sp));
344 if (sp->owner != wp)
421 KASSERT(sp->owner !
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cpp152 atomic_store(&m->owner, 0, memory_order_relaxed);
195 uptr owner = atomic_load(&m->owner, memory_order_relaxed); local
196 if (owner == (uptr)cb->lt) {
274 uptr owner = atomic_load(&m->owner, memory_order_relaxed); local
275 if (owner == (uptr)cb->lt) {
281 CHECK_EQ(owner, 0);
283 VPrintf(3, "#%llu: DD::MutexAfterLock set owner\n", cb->lt->ctx);
286 atomic_store(&m->owner, (upt
306 uptr owner = atomic_load(&m->owner, memory_order_relaxed); local
[all...]
H A Dsanitizer_deadlock_detector_interface.h41 atomic_uintptr_t owner;
/freebsd-11-stable/sys/dev/ow/
H A Dow.c57 device_t owner; /* bus owner, if != NULL */ member in struct:ow_softc
572 if (sc->owner != NULL) {
573 if (sc->owner == pdev)
581 while (sc->owner != NULL)
584 sc->owner = pdev;
598 if (sc->owner == NULL)
601 if (sc->owner != pdev)
604 device_get_nameunit(sc->owner));
605 sc->owner
[all...]
/freebsd-11-stable/sys/dev/iicbus/
H A Diiconf.c72 /* call owner's intr routine */
73 if (sc->owner)
74 IICBUS_INTR(sc->owner, event, buf);
117 if (sc->owner == NULL)
119 if ((how & IIC_RECURSIVE) && sc->owner == dev)
127 if (sc->owner == NULL) {
128 sc->owner = dev;
142 sc->owner = NULL;
166 if (sc->owner != dev) {
176 sc->owner
[all...]
H A Diicbus.h41 device_t owner; /* iicbus owner device structure */ member in struct:iicbus_softc
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_umtx.h148 uint32_t flags, owner; local
162 owner = mtx->m_owner;
163 if (__predict_false((owner & ~UMUTEX_CONTESTED) != id))
165 } while (__predict_false(!atomic_cmpset_rel_32(&mtx->m_owner, owner,
167 if ((owner & UMUTEX_CONTESTED) != 0) {
/freebsd-11-stable/share/mk/
H A Dbsd.own.mk3 # The include file <bsd.own.mk> set common variables for owner,
19 # BINOWN Binary owner. [root]
39 # LIBOWN Library owner. [${BINOWN}]
54 # KMODOWN Kernel and KLD owner. [${BINOWN}]
64 # SHAREOWN ASCII text file owner. [root]
73 # CONFOWN Configuration file owner. [root]
83 # DOCOWN Documentation owner. [${SHAREOWN}]
93 # INFOOWN Info owner. [${SHAREOWN}]
102 # MANOWN Manual owner. [${SHAREOWN}]
112 # NLSOWN National Language Support files owner
[all...]
/freebsd-11-stable/contrib/gcc/config/
H A Dvxlib.c123 int *owner; member in struct:tls_data
196 if (data && data->owner == &self_owner)
372 data->owner = &self_owner;
/freebsd-11-stable/contrib/netbsd-tests/fs/vfs/
H A Dt_unpriv.c45 atf_tc_skip("owner not supported by file system")
48 owner(const atf_tc_t *tc, const char *mp) function
225 ATF_TC_FSAPPLY(owner, "owner unprivileged checks");
233 ATF_TP_FSAPPLY(owner);
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Diidesc.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
143 iidesc_dup_rename(iidesc_t *src, char const *name, char const *owner) argument
150 tgt->ii_owner = owner ? xstrdup(owner) : NULL;
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-shmem.c113 smdr -> shmd[i].owner = CVMX_SHMEM_OWNER_NONE;
220 if (dscptr->owner == CVMX_SHMEM_OWNER_NONE)
255 if (dscptr->owner == CVMX_SHMEM_OWNER_NONE)
281 dscptr->owner = CVMX_SHMEM_OWNER_NONE;
410 dscptr->owner = cvmx_get_core_num();
720 if ((dscptr != NULL ) && (dscptr -> owner != CVMX_SHMEM_OWNER_NONE))
/freebsd-11-stable/contrib/binutils/ld/
H A Dldwrite.c51 ASSERT (output_section->owner == output_bfd);
134 ASSERT (output_section->owner == output_bfd);
187 ASSERT (output_section->owner == output_bfd);
204 if (rs->section->owner == output_bfd)
226 if (!((lang_input_statement_type *) i->owner->usrdata)->just_syms_flag
231 ASSERT (output_section->owner == output_bfd);
270 ASSERT (statement->padding_statement.output_section->owner
390 printf ("%8x %s\n", l->offset, l->u.indirect.section->owner->filename);
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_lock.c91 struct thread *owner = (struct thread *) local
105 if (other->thread == owner &&
/freebsd-11-stable/sys/kern/
H A Dkern_sx.c123 static int owner_sx(const struct lock_object *lock, struct thread **owner);
207 owner_sx(const struct lock_object *lock, struct thread **owner) argument
214 *owner = NULL;
216 ((*owner = (struct thread *)SX_OWNER(x)) != NULL));
550 volatile struct thread *owner; local
649 * If the lock is write locked and the owner is
650 * running on another CPU, spin until the owner stops
655 owner = lv_sx_owner(x);
656 if (!TD_IS_RUNNING(owner))
660 __func__, sx, owner);
928 volatile struct thread *owner; local
[all...]
H A Dkern_mutex.c105 struct thread **owner);
214 owner_mtx(const struct lock_object *lock, struct thread **owner) argument
221 *owner = (struct thread *)(x & ~MTX_FLAGMASK);
222 return (*owner != NULL);
473 struct thread *owner; local
559 * If the owner is running on another CPU, spin until the
560 * owner stops running or the state of the lock changes.
562 owner = lv_mtx_owner(v);
563 if (TD_IS_RUNNING(owner)) {
567 __func__, m, owner);
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dbreakpoint.c645 if (b->owner->type == bp_none)
647 b->owner->number);
768 if (!breakpoint_enabled (bpt->owner))
802 bpt->owner->number);
812 bpt->owner->number);
842 bpt->owner->enable_state = bp_shlib_disabled;
847 bpt->owner->number);
853 "breakpoint #%d\n", bpt->owner->number);
866 bpt->owner->number);
872 bpt->owner
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Dreloc16.c65 h = bfd_wrapped_link_hash_lookup (input_section->owner, link_info,
81 input_section->owner, input_section, reloc->address,
147 bfd *input_bfd = input_section->owner;
254 bfd *input_bfd = link_order->u.indirect.section->owner;
/freebsd-11-stable/contrib/top/
H A DConfigure8 set vars = (module LoadMax topn NominalTopn delay owner group mode random \
110 Owner $owner
189 "-o" for owner, "-g" for group, and "-m" for mode. A shell script
384 install top setuid root (owner root and mode 4711). In SunOS 5.6
411 set owner = $t_owner
416 ./getans "Owner" user "$owner" .$$
417 set owner = `cat .$$`
418 ./getans "Group owner" group "$group" .$$
515 -e "s|%owner%|$owner|" \
[all...]
/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dsnmpd.h52 struct lmodule *owner; /* who created the community */ member in struct:community
73 struct lmodule *owner; /* owner module */ member in struct:idrange
94 struct lmodule *owner; /* owner of the timer */ member in struct:timer
111 struct lmodule *owner; /* owner module of the file */ member in struct:fdesc
/freebsd-11-stable/usr.sbin/ppp/
H A Dhdlc.h74 struct lcp *owner; /* parent LCP */ member in struct:hdlc::__anon8858
H A Dprompt.c212 if (!p->owner)
337 p->owner = NULL;
346 p->owner = s;
523 if (arg->prompt->owner == NULL) {
535 if (!strcmp(arg->prompt->owner->cfg.passwd, pass))
560 } else if (!p->owner) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointSite.cpp22 const BreakpointLocationSP &owner,
31 m_owners.Add(owner);
125 void BreakpointSite::AddOwner(const BreakpointLocationSP &owner) { argument
127 m_owners.Add(owner);
21 BreakpointSite(BreakpointSiteList *list, const BreakpointLocationSP &owner, lldb::addr_t addr, bool use_hardware) argument
/freebsd-11-stable/contrib/unbound/validator/
H A Dval_nsec.c112 * Get next owner name from nsec record
301 /* If the nsec is proving that qname is an ENT, the nsec owner
347 /* See if the next owner name covers a wildcard
406 uint8_t* owner = nsec->rk.dname; local
412 /* If NSEC owner == qname, then this NSEC proves that qname exists. */
413 if(query_dname_compare(qname, owner) == 0) {
420 if(dname_subdomain_c(qname, owner) &&
428 if(query_dname_compare(owner, next) == 0) {
435 else if(dname_canonical_compare(owner, next) > 0) {
437 /* the names after the last (owner) nam
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/acl/
H A Dacl_common.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
352 * If the entity is not the owner and does not
1048 uid_t owner, gid_t group, boolean_t isdir)
1071 dest->a_id = owner;
1088 uid_t owner, gid_t group, boolean_t isdir)
1126 error = acevals_to_aent(&list->user_obj, aent, list, owner, group,
1140 error = acevals_to_aent(vals, aent, list, owner, group,
1151 error = acevals_to_aent(&list->group_obj, aent, list, owner, group,
1164 error = acevals_to_aent(vals, aent, list, owner, group,
1201 error = acevals_to_aent(&list->other_obj, aent, list, owner, grou
1047 acevals_to_aent(acevals_t *vals, aclent_t *dest, ace_list_t *list, uid_t owner, gid_t group, boolean_t isdir) argument
1087 ace_list_to_aent(ace_list_t *list, aclent_t **aclentp, int *aclcnt, uid_t owner, gid_t group, boolean_t isdir) argument
1266 ln_ace_to_aent(ace_t *ace, int n, uid_t owner, gid_t group, aclent_t **aclentp, int *aclcnt, aclent_t **dfaclentp, int *dfaclcnt, boolean_t isdir) argument
1463 convert_ace_to_aent(ace_t *acebufp, int acecnt, boolean_t isdir, uid_t owner, gid_t group, aclent_t **retaclentp, int *retaclcnt) argument
1505 acl_translate(acl_t *aclp, int target_flavor, boolean_t isdir, uid_t owner, gid_t group) argument
[all...]

Completed in 307 milliseconds

1234567891011>>