| /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| D | refcount.c | 129 zfs_refcount_add_many(zfs_refcount_t *rc, uint64_t number, void *holder) in zfs_refcount_add_many() argument 136 ref->ref_holder = holder; in zfs_refcount_add_many() 151 zfs_refcount_add(zfs_refcount_t *rc, void *holder) in zfs_refcount_add() argument 153 return (zfs_refcount_add_many(rc, 1, holder)); in zfs_refcount_add() 157 zfs_refcount_remove_many(zfs_refcount_t *rc, uint64_t number, void *holder) in zfs_refcount_remove_many() argument 174 if (ref->ref_holder == holder && ref->ref_number == number) { in zfs_refcount_remove_many() 199 panic("No such hold %p on refcount %llx", holder, in zfs_refcount_remove_many() 205 zfs_refcount_remove(zfs_refcount_t *rc, void *holder) in zfs_refcount_remove() argument 207 return (zfs_refcount_remove_many(rc, 1, holder)); in zfs_refcount_remove() 272 zfs_refcount_held(zfs_refcount_t *rc, void *holder) in zfs_refcount_held() argument [all …]
|
| /freebsd-12-stable/usr.sbin/rpc.lockd/ |
| D | lock_proc.c | 431 struct nlm4_holder *holder; in nlm_test_1_svc() local 437 holder = testlock(&arg4, arg->exclusive, 0); in nlm_test_1_svc() 446 if (holder == NULL) { in nlm_test_1_svc() 450 memcpy(&res.stat.nlm_testrply_u.holder, holder, in nlm_test_1_svc() 452 res.stat.nlm_testrply_u.holder.l_offset = holder->l_offset; in nlm_test_1_svc() 453 res.stat.nlm_testrply_u.holder.l_len = holder->l_len; in nlm_test_1_svc() 468 struct nlm4_holder *holder; in nlm_test_msg_1_svc() local 475 holder = testlock(&arg4, arg->exclusive, 0); in nlm_test_msg_1_svc() 478 if (holder == NULL) { in nlm_test_msg_1_svc() 482 memcpy(&res.stat.nlm_testrply_u.holder, holder, in nlm_test_msg_1_svc() [all …]
|
| /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ |
| D | refcount.h | 101 #define zfs_refcount_add(rc, holder) atomic_inc_64_nv(&(rc)->rc_count) 102 #define zfs_refcount_remove(rc, holder) atomic_dec_64_nv(&(rc)->rc_count) 103 #define zfs_refcount_add_many(rc, number, holder) \ 105 #define zfs_refcount_remove_many(rc, number, holder) \ 113 #define zfs_refcount_held(rc, holder) ((rc)->rc_count > 0) 114 #define zfs_refcount_not_held(rc, holder) (B_TRUE)
|
| /freebsd-12-stable/sys/nlm/ |
| D | nlm_prot_server.c | 149 &result->stat.nlm_testrply_u.holder, in nlm_test_1_svc() 150 &res4.stat.nlm4_testrply_u.holder); in nlm_test_1_svc() 251 &res.stat.nlm_testrply_u.holder, in nlm_test_msg_1_svc() 252 &res4.stat.nlm4_testrply_u.holder); in nlm_test_msg_1_svc() 382 &args4.stat.nlm4_testrply_u.holder, in nlm_test_res_1_svc() 383 &argp->stat.nlm_testrply_u.holder); in nlm_test_res_1_svc()
|
| D | nlm_prot_xdr.c | 49 if (!xdr_nlm_holder(xdrs, &objp->nlm_testrply_u.holder)) in xdr_nlm_testrply() 317 if (!xdr_nlm4_holder(xdrs, &objp->nlm4_testrply_u.holder)) in xdr_nlm4_testrply()
|
| D | nlm_prot.h | 41 struct nlm_holder holder; member 204 struct nlm4_holder holder; member
|
| D | nlm_advlock.c | 591 &res->stat.nlm4_testrply_u.holder, in nlm_test_rpc() 592 &res1.stat.nlm_testrply_u.holder); in nlm_test_rpc() 1099 &res.stat.nlm4_testrply_u.holder; in nlm_getlock()
|
| D | nlm_prot_impl.c | 1900 result->stat.nlm4_testrply_u.holder.exclusive = in nlm_do_test() 1902 result->stat.nlm4_testrply_u.holder.svid = fl.l_pid; in nlm_do_test() 1925 result->stat.nlm4_testrply_u.holder.l_offset = fl.l_start; in nlm_do_test() 1926 result->stat.nlm4_testrply_u.holder.l_len = fl.l_len; in nlm_do_test()
|
| /freebsd-12-stable/contrib/wpa/src/p2p/ |
| D | p2p_build.c | 529 u8 holder[sizeof(u32) + sizeof(u16) + sizeof(u8)]; in p2p_buf_add_service_info() local 531 WPA_PUT_LE32(holder, adv_id); in p2p_buf_add_service_info() 532 WPA_PUT_BE16(&holder[sizeof(u32)], config_methods); in p2p_buf_add_service_info() 533 holder[sizeof(u32) + sizeof(u16)] = svc_len; in p2p_buf_add_service_info() 536 wpabuf_put_data(buf, holder, front); in p2p_buf_add_service_info() 541 wpabuf_put_data(buf, &holder[front], back); in p2p_buf_add_service_info()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| D | Sparc.td | 133 // TO DO: Place-holder: Processor specific features will be added *very* soon here. 138 // TO DO: Place-holder: Processor specific features will be added *very* soon here. 162 // TO DO: Place-holder: Processor specific features will be added *very* soon here.
|
| /freebsd-12-stable/include/rpcsvc/ |
| D | nlm_prot.x | 43 struct nlm_holder holder; variable 191 struct nlm4_holder holder; variable
|
| D | klm_prot.x | 97 struct klm_holder holder; variable
|
| /freebsd-12-stable/crypto/openssl/ |
| D | AUTHORS | 4 # some cases, their employer may be the copyright holder. To see the full list
|
| D | LICENSE | 81 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
| /freebsd-12-stable/contrib/subversion/subversion/libsvn_subr/utf8proc/ |
| D | LICENSE.md | 86 Except as contained in this notice, the name of a copyright holder shall 89 authorization of the copyright holder.
|
| /freebsd-12-stable/contrib/wpa/ |
| D | README | 42 3. Neither the name(s) of the above-listed copyright holder(s) nor the
|
| /freebsd-12-stable/contrib/ntp/sntp/libopts/ |
| D | COPYING.gplv3 | 416 license from a particular copyright holder is reinstated (a) 417 provisionally, unless and until the copyright holder explicitly and 419 holder fails to notify you of the violation by some reasonable means 422 Moreover, your license from a particular copyright holder is 423 reinstated permanently if the copyright holder notifies you of the 426 copyright holder, and you cure the violation prior to 30 days after 473 A "contributor" is a copyright holder who authorizes use under this 586 author or copyright holder as a result of your choosing to follow a
|
| /freebsd-12-stable/contrib/openbsm/etc/ |
| D | audit_event | 214 220:AUE_AUDITSYS:audit system calls place holder:no 236 242:AUE_MODCTL:modctl(2) system call place holder:no 247 253:AUE_DOORFS:doorfs(2) - system call place holder:no 263 269:AUE_FSAT:fsat(2) - place holder:no
|
| /freebsd-12-stable/contrib/googletest/googletest/include/gtest/internal/ |
| D | gtest-port.h | 2214 ThreadLocalValueHolderBase* const holder = 2216 if (holder != NULL) { 2217 return CheckedDowncastToActualType<ValueHolder>(holder)->pointer();
|
| /freebsd-12-stable/contrib/gcclibs/libcpp/ |
| D | Makefile.in | 234 --copyright-holder="Free Software Foundation, Inc." \
|
| /freebsd-12-stable/contrib/dialog/package/debian/ |
| D | copyright | 98 copyright holder(s) not be used in advertising or publicity pertaining
|
| /freebsd-12-stable/crypto/openssl/doc/man3/ |
| D | OSSL_STORE_INFO.pod | 56 B<OSSL_STORE_INFO> is an opaque type that's just an intermediary holder for
|
| /freebsd-12-stable/contrib/googletest/googlemock/include/gmock/ |
| D | gmock-spec-builders.h | 1602 scoped_ptr<ResultHolder> holder( in InvokeWith() 1604 return holder->Unwrap(); in InvokeWith()
|
| /freebsd-12-stable/contrib/byacc/package/debian/ |
| D | copyright | 107 copyright holder(s) not be used in advertising or publicity pertaining
|
| /freebsd-12-stable/usr.bin/compress/doc/ |
| D | NOTES | 124 money into the patent holder coffers...
|