Home
last modified time | relevance | path

Searched refs:holder (Results 1 – 25 of 128) sorted by relevance

123456

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Drefcount.c147 ref->ref_holder = holder; in zfs_refcount_add_many()
162 return (zfs_refcount_add_many(rc, 1, holder)); in zfs_refcount_add()
172 (void) zfs_refcount_add(rc, holder); in zfs_refcount_add_few()
178 const void *holder) in zfs_refcount_remove_many() argument
189 s.ref_holder = holder; in zfs_refcount_remove_many()
224 return (zfs_refcount_remove_many(rc, 1, holder)); in zfs_refcount_remove()
234 (void) zfs_refcount_remove(rc, holder); in zfs_refcount_remove_few()
319 s.ref_holder = holder; in zfs_refcount_held()
326 res = ref && ref->ref_holder == holder; in zfs_refcount_held()
347 s.ref_holder = holder; in zfs_refcount_not_held()
[all …]
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Drefcount.h123 #define zfs_refcount_add(rc, holder) atomic_inc_64_nv(&(rc)->rc_count)
124 #define zfs_refcount_remove(rc, holder) atomic_dec_64_nv(&(rc)->rc_count)
125 #define zfs_refcount_add_few(rc, number, holder) \
127 #define zfs_refcount_remove_few(rc, number, holder) \
129 #define zfs_refcount_add_many(rc, number, holder) \
131 #define zfs_refcount_remove_many(rc, number, holder) \
140 #define zfs_refcount_held(rc, holder) (zfs_refcount_count(rc) > 0)
141 #define zfs_refcount_not_held(rc, holder) (B_TRUE)
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/
H A Dipsecalgs.c543 char *holder = NULL; in parse_intlist() local
545 while ((holder = strtok((holder == NULL) ? args : NULL, comma)) != in parse_intlist()
551 rc[(*num_args) - 1] = atoi(holder); in parse_intlist()
566 char *holder = NULL; in new_alg() local
614 while ((holder = strtok((holder == NULL) ? flag_string : NULL, in new_alg()
616 alg_flags = parse_flag(holder, 0); in new_alg()
618 warnx(gettext("Invalid flag: %s\n"), holder); in new_alg()
624 while ((holder = strtok((holder == NULL) ? alg_names_string : NULL, in new_alg()
630 newbie.a_names[num_names - 1] = holder; in new_alg()
650 *holder = '\0'; in new_alg()
[all …]
/illumos-gate/usr/src/data/hwdata/
H A DTHIRDPARTYLICENSE.pciids.tmpl3 below. For the purposes of this license, "copyright holder" should be
7 * Copyright (c) <year>, <copyright holder>
21 * THIS SOFTWARE IS PROVIDED BY <copyright holder> ``AS IS'' AND ANY
24 * DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY
/illumos-gate/usr/src/uts/sun4u/io/i2c/clients/
H A Dlm75.c225 int8_t holder; in lm75_get16() local
255 holder = (temp16 & LM75_COMP_MASK_UPPER); in lm75_get16()
256 holder = -holder; in lm75_get16()
257 holder = holder/2; in lm75_get16()
258 temp16 = 0 - holder; in lm75_get16()
/illumos-gate/usr/src/cmd/sendmail/db/lock/
H A Dlock.c148 lp->holder = txn->parent->txnid;
155 if (lp->holder != locker) {
474 newl->holder = locker;
511 if (locker == lp->holder ||
512 __lock_is_parent(lp->holder, txn)) {
553 locker != lp->holder)
691 if (lp->holder == locker && lp->mode == mode)
765 (u_long)lp->holder, mode, (u_long)lp->refcount, status);
903 if (__lock_getobj(lt, lockp->holder, NULL, DB_LOCK_LOCKER, &sh_locker)
996 lp_h->holder != lp_w->holder &&
H A Dlock_deadlock.c292 if (__lock_getobj(lt, lp->holder,
298 id_array[lockerp->dd_id].id = lp->holder;
318 if (__lock_getobj(lt, lp->holder,
324 id_array[lockerp->dd_id].id = lp->holder;
/illumos-gate/usr/src/lib/libbsm/
H A Daudit_event.txt70 3:AUE_OPEN:open(2) - place holder:no
131 63:AUE_SEMSYS:semsys(2) - place holder:no
133 64:AUE_MSGSYS:msgsys(2) - place holder:no
135 65:AUE_SHMSYS:shmsys(2) - place holder:no
136 66:AUE_BSMSYS:bsmsys(2) - place holder:no
137 67:AUE_RFSSYS:rfssys(2) - place holder:no
140 70:AUE_VPIXSYS:vpixsys(2) - place holder:no
197 136:AUE_AUDITSVC:auditsvc(2) - place holder:no
199 138:AUE_AUDITON:auditon(2) - place holder:no
264 220:AUE_AUDITSYS:audit system calls place holder:no
[all …]
/illumos-gate/usr/src/lib/libtecla/
H A DTHIRDPARTYLICENSE25 * Except as contained in this notice, the name of a copyright holder
28 * of the copyright holder.
/illumos-gate/usr/src/lib/libipsecutil/common/
H A Dalgs.c487 struct ipsecalgent *clone, **holder; in addipsecalg() local
552 holder = realloc(current_proto->proto_algs, in addipsecalg()
554 if (holder == NULL) { in addipsecalg()
560 free(holder); in addipsecalg()
565 current_proto->proto_algs = holder; in addipsecalg()
H A Dipsec_util.c702 char ibuf[IBUF_SIZE], holder[IBUF_SIZE]; in do_interactive() local
746 (void) strcpy(holder, ibuf); in do_interactive()
747 hptr = &(holder[strlen(holder)]); in do_interactive()
759 (size_t)(&(holder[IBUF_SIZE]) - hptr)); in do_interactive()
760 if (holder[IBUF_SIZE - 1] != '\0') { in do_interactive()
779 (void) strcpy(ibuf, holder); in do_interactive()
3338 if (holder != NULL) in rparsealg()
3339 freeipsecalgent(holder); in rparsealg()
3341 holder = getipsecalgbynum(alg, proto_num, NULL); in rparsealg()
3342 if (holder == NULL) { in rparsealg()
[all …]
/illumos-gate/usr/src/lib/iconv_modules/
H A DTHIRDPARTYLICENSE.icu28 Except as contained in this notice, the name of a copyright holder
31 of the copyright holder.
/illumos-gate/usr/src/uts/common/sys/
H A DTHIRDPARTYLICENSE.icu29 Except as contained in this notice, the name of a copyright holder
32 of the copyright holder.
/illumos-gate/usr/src/lib/libmalloc/common/
H A Dmalloc.c415 lblk->header.holder = (struct holdblk *)SETALL(holdblk); in malloc_unlocked()
437 lblk->header.holder = (struct holdblk *)SETALL(newhold); in malloc_unlocked()
441 assert(((struct holdblk *)CLRALL(lblk->header.holder))->blksz >= in malloc_unlocked()
668 holdblk = lblk->header.holder; in free_unlocked()
754 header.holder)) { in realloc_unlocked()
770 CLRALL(lblk->header.holder))->blksz; in realloc_unlocked()
H A Dmallint.h81 struct holdblk *holder; member
/illumos-gate/usr/src/uts/common/rpcsvc/
H A Dnlm_prot.x82 struct nlm_holder holder; variable
233 struct nlm4_holder holder; variable
/illumos-gate/usr/src/lib/libdladm/common/
H A Dlibdllink.c421 datalink_id_t holder; member
439 hold_arg->holder = aggrid; in i_dladm_aggr_link_hold()
458 hold_arg->holder = vlanid; in i_dladm_vlan_link_hold()
489 arg.holder = DATALINK_INVALID_LINKID; in i_dladm_rename_link_c2()
493 if (arg.holder != DATALINK_INVALID_LINKID) in i_dladm_rename_link_c2()
499 if (arg.holder != DATALINK_INVALID_LINKID) in i_dladm_rename_link_c2()
H A Dlibdlflow.c512 char *holder, *lasts; in i_dladm_flow_create_db() local
519 holder = strtok_r(line, " \t", &lasts); in i_dladm_flow_create_db()
520 if (holder == NULL) in i_dladm_flow_create_db()
524 if (strcmp(holder, attr->fi_flowname) == 0) { in i_dladm_flow_create_db()
/illumos-gate/usr/src/data/locale/data/
H A DTHIRDPARTYLICENSE54 Except as contained in this notice, the name of a copyright holder
57 written authorization of the copyright holder.
/illumos-gate/usr/src/uts/common/klm/
H A Dnlm_rpc_clnt.c112 &res->stat.nlm4_testrply_u.holder, in nlm_test_rpc()
113 &res1.stat.nlm_testrply_u.holder); in nlm_test_rpc()
H A Dnlm_rpc_svc.c178 &resp->stat.nlm_testrply_u.holder, in nlm_test_1_svc()
179 &res4.stat.nlm4_testrply_u.holder); in nlm_test_1_svc()
356 &res1.stat.nlm_testrply_u.holder, in nlm_test_res_1_cb()
357 &res4->stat.nlm4_testrply_u.holder); in nlm_test_res_1_cb()
/illumos-gate/usr/src/common/crypto/aes/amd64/
H A DTHIRDPARTYLICENSE.gladman15 3. the name of the copyright holder is not used to endorse products
/illumos-gate/usr/src/lib/iconv_modules/utf-8/common/tbls/
H A Ducs4_to_cp720.tbl55 * Except as contained in this notice, the name of a copyright holder
58 * of the copyright holder.
H A Dutf8_to_cp720.tbl55 * Except as contained in this notice, the name of a copyright holder
58 * of the copyright holder.
/illumos-gate/usr/src/cmd/fwflash/plugins/hdrs/
H A Dtavor_ib.h53 uint32_t holder; member

123456