Home
last modified time | relevance | path

Searched refs:exclusive (Results 1 – 25 of 149) sorted by relevance

123456

/freebsd/sys/nlm/
H A Dnlm_prot_server.c74 dst->exclusive = src->exclusive; in nlm_convert_to_nlm_holder()
85 dst->exclusive = src->exclusive; in nlm_convert_to_nlm4_holder()
136 args4.exclusive = argp->exclusive; in nlm_test_1_svc()
161 args4.exclusive = argp->exclusive; in nlm_lock_1_svc()
182 args4.exclusive = argp->exclusive; in nlm_cancel_1_svc()
217 args4.exclusive = argp->exclusive; in nlm_granted_1_svc()
237 args4.exclusive = argp->exclusive; in nlm_test_msg_1_svc()
270 args4.exclusive = argp->exclusive; in nlm_lock_msg_1_svc()
300 args4.exclusive = argp->exclusive; in nlm_cancel_msg_1_svc()
353 args4.exclusive = argp->exclusive; in nlm_granted_msg_1_svc()
[all …]
H A Dnlm_advlock.c551 dst->exclusive = src->exclusive; in nlm_convert_to_nlm4_holder()
577 args1.exclusive = args->exclusive; in nlm_test_rpc()
609 args1.exclusive = args->exclusive; in nlm_lock_rpc()
638 args1.exclusive = args->exclusive; in nlm_cancel_rpc()
769 int retry, block, exclusive; in nlm_setlock() local
777 exclusive = (fl->l_type == F_WRLCK); in nlm_setlock()
784 args.exclusive = exclusive; in nlm_setlock()
867 cancel.exclusive = exclusive; in nlm_setlock()
1042 int exclusive; in nlm_getlock() local
1050 exclusive = (fl->l_type == F_WRLCK); in nlm_getlock()
[all …]
H A Dnlm_prot_xdr.c24 if (!xdr_bool(xdrs, &objp->exclusive)) in xdr_nlm_holder()
112 if (!xdr_bool(xdrs, &objp->exclusive)) in xdr_nlm_lockargs()
131 if (!xdr_bool(xdrs, &objp->exclusive)) in xdr_nlm_cancargs()
144 if (!xdr_bool(xdrs, &objp->exclusive)) in xdr_nlm_testargs()
256 if (!xdr_bool(xdrs, &objp->exclusive)) in xdr_nlm4_holder()
339 if (!xdr_bool(xdrs, &objp->exclusive)) in xdr_nlm4_testargs()
365 if (!xdr_bool(xdrs, &objp->exclusive)) in xdr_nlm4_lockargs()
384 if (!xdr_bool(xdrs, &objp->exclusive)) in xdr_nlm4_cancargs()
H A Dnlm_prot.h29 bool_t exclusive; member
75 bool_t exclusive; member
85 bool_t exclusive; member
92 bool_t exclusive; member
173 bool_t exclusive; member
216 bool_t exclusive; member
230 bool_t exclusive; member
240 bool_t exclusive; member
H A Dnlm_prot_impl.c595 granted.exclusive = af->af_granted.exclusive; in nlm_lock_callback()
1889 accmode = argp->exclusive ? VWRITE : VREAD; in nlm_do_test()
1901 if (argp->exclusive) in nlm_do_test()
1915 result->stat.nlm4_testrply_u.holder.exclusive = in nlm_do_test()
1996 accmode = argp->exclusive ? VWRITE : VREAD; in nlm_do_lock()
2008 if (argp->exclusive) in nlm_do_lock()
2065 af->af_granted.exclusive = argp->exclusive; in nlm_do_lock()
2187 if (argp->exclusive) in nlm_do_cancel()
/freebsd/include/rpcsvc/
H A Dnlm_prot.x27 bool exclusive; member
67 bool exclusive; member
76 bool exclusive; member
82 bool exclusive; member
158 bool exclusive; member
196 bool exclusive; member
208 bool exclusive; member
217 bool exclusive; member
H A Dklm_prot.x69 bool exclusive; /* FALSE if shared lock */ member
99 bool exclusive; member
107 bool exclusive; member
/freebsd/usr.sbin/pmc/
H A Dcmd_pmc_filter.cc198 char *events, char *processes, char *threads, bool exclusive, bool json, int infd, in pmc_filter_handler() argument
260 if ((i == pidcount) == exclusive) in pmc_filter_handler()
267 if ((i == lwpcount) == exclusive) in pmc_filter_handler()
284 if ((i == eventcount) == exclusive) in pmc_filter_handler()
288 pmc_find_name(pidmap, ev.pl_u.pl_cc.pl_pid, proclist, proccount) == exclusive) in pmc_filter_handler()
291 pmc_find_name(tidmap, ev.pl_u.pl_cc.pl_tid, threadlist, threadcount) == exclusive) in pmc_filter_handler()
305 bool exclusive, json; in cmd_pmc_filter() local
309 json = exclusive = false; in cmd_pmc_filter()
331 exclusive = !exclusive; in cmd_pmc_filter()
357 processes, threads, exclusive, json, prelogfd, postlogfd); in cmd_pmc_filter()
/freebsd/usr.sbin/rpc.lockd/
H A Dlockd_lock.c128 int exclusive; member
163 const bool_t exclusive, struct nlm4_holder *dest);
170 const bool_t exclusive, const int32_t svid,
335 fl->client.exclusive, fl->client.svid, in dump_filelock()
356 const bool_t exclusive, struct nlm4_holder *dest) in copy_nlm4_lock_to_nlm4_holder() argument
359 dest->exclusive = exclusive; in copy_nlm4_lock_to_nlm4_holder()
426 const bool_t exclusive, const int32_t svid, in fill_file_lock() argument
432 fl->client.exclusive = exclusive; in fill_file_lock()
821 if (!(fl->client.exclusive || ifl->client.exclusive)) in test_nfslock()
825 fl->client.exclusive, in test_nfslock()
[all …]
H A Dlock_proc.c436 holder = testlock(&arg4, arg->exclusive, 0); in nlm_test_1_svc()
474 holder = testlock(&arg4, arg->exclusive, 0); in nlm_test_msg_1_svc()
520 arg4.exclusive = arg->exclusive; in nlm_lock_1_svc()
543 arg4.exclusive = arg->exclusive; in nlm_lock_msg_1_svc()
898 (arg->exclusive ? "true" : "false")); in nlm4_test_4_svc()
901 holder = testlock(&arg->alock, arg->exclusive, LOCK_V4); in nlm4_test_4_svc()
935 holder = testlock(&arg->alock, arg->exclusive, LOCK_V4); in nlm4_test_msg_4_svc()
993 syslog(LOG_DEBUG, "Exclusive: %s\n", (arg->exclusive ? "true" : "false")); in nlm4_lock_4_svc()
H A Dlockd_lock.h5 struct nlm4_holder * testlock(struct nlm4_lock *lock, bool_t exclusive,
H A Dkern.c271 arg4.exclusive = msg->lm_fl.l_type == F_WRLCK ? 1 : 0; in test_request()
295 arg.exclusive = msg->lm_fl.l_type == F_WRLCK ? 1 : 0; in test_request()
341 arg4.exclusive = msg->lm_fl.l_type == F_WRLCK ? 1 : 0; in lock_request()
366 arg.exclusive = msg->lm_fl.l_type == F_WRLCK ? 1 : 0; in lock_request()
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dnumeric.cppm
/freebsd/crypto/openssl/crypto/
H A Dthreads_win.c36 int exclusive; member
89 rwlock->exclusive = 1; in CRYPTO_THREAD_write_lock()
101 if (rwlock->exclusive) { in CRYPTO_THREAD_unlock()
102 rwlock->exclusive = 0; in CRYPTO_THREAD_unlock()
/freebsd/crypto/heimdal/lib/krb5/
H A Dfcache.c72 _krb5_xlock(krb5_context context, int fd, krb5_boolean exclusive, in _krb5_xlock() argument
81 l.l_type = exclusive ? F_WRLCK : F_RDLCK; in _krb5_xlock()
85 ret = flock(fd, exclusive ? LOCK_EX : LOCK_SH); in _krb5_xlock()
175 int fd, krb5_boolean exclusive) in fcc_lock() argument
177 return _krb5_xlock(context, fd, exclusive, fcc_get_name(context, id)); in fcc_lock()
386 krb5_boolean exclusive = ((flags | O_WRONLY) == flags || in fcc_open() local
408 if((ret = fcc_lock(context, id, fd, exclusive)) != 0) { in fcc_open()
/freebsd/sys/dev/ow/
H A Down_if.m52 # Grab exclusive use of the bus (advisory)
61 # Release exclusive use of the bus (advisory)
/freebsd/sys/contrib/device-tree/Bindings/i2c/
H A Di2c-ocores.txt16 Mutually exclusive with opencores,ip-clock-frequency
18 see the note below. Mutually exclusive with clocks
/freebsd/sys/dev/clk/
H A Dclkdev_if.m126 # Get exclusive access to underlying device
133 # Release exclusive access to underlying device
/freebsd/sys/contrib/zlib/
H A Dgzlib.c95 int exclusive = 0; in gz_open() local
143 exclusive = 1; in gz_open()
226 (exclusive ? O_EXCL : 0) | in gz_open()
/freebsd/contrib/libucl/src/
H A Ducl_schema.c309 bool ret = true, exclusive = false; in ucl_schema_validate_number() local
337 exclusive = ucl_object_toboolean (test); in ucl_schema_validate_number()
340 if (val > constraint || (exclusive && val >= constraint)) { in ucl_schema_validate_number()
353 exclusive = ucl_object_toboolean (test); in ucl_schema_validate_number()
356 if (val < constraint || (exclusive && val <= constraint)) { in ucl_schema_validate_number()
/freebsd/sys/contrib/device-tree/src/arm/qcom/
H A Dqcom-ipq8064-v2.0.dtsi37 * On ipq806x designs gsbi4 i2c is meant for exclusive
/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dgzlib.c106 int exclusive = 0; local
154 exclusive = 1;
237 (exclusive ? O_EXCL : 0) |
/freebsd/sys/contrib/device-tree/src/arm64/ti/
H A Dk3-j721s2-evm-pcie1-ep.dtso20 * Since Root Complex and Endpoint modes are mutually exclusive
H A Dk3-j721e-evm-pcie0-ep.dtso20 * Since Root Complex and Endpoint modes are mutually exclusive
/freebsd/sys/contrib/device-tree/src/arm64/amlogic/
H A Dmeson-gxm-q200.dts43 /* Q200 has exclusive choice between internal or external PHY */

123456