Home
last modified time | relevance | path

Searched refs:newtype (Results 1 – 14 of 14) sorted by relevance

/freebsd-14.2/tests/sys/cddl/zfs/tests/slog/
H A Dslog_003_pos.ksh68 for newtype in "" "mirror"; do
71 log_must $ZPOOL add $TESTPOOL log $newtype $LDEV2
74 log_must verify_slog_device $TESTPOOL $ldev ONLINE $newtype
/freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/slog/
H A Dslog_003_pos.ksh57 for newtype in "" "mirror"
62 log $newtype $LDEV2
67 $TESTPOOL $ldev 'ONLINE' $newtype
/freebsd-14.2/usr.sbin/kldxref/
H A Dkldxref.c374 char *word, *ctx, newtype; in parse_pnp_list() local
383 char newtype; in parse_pnp_list() local
386 newtype = 'J'; in parse_pnp_list()
388 newtype = 'G'; in parse_pnp_list()
390 newtype = 'L'; in parse_pnp_list()
392 newtype = 'M'; in parse_pnp_list()
394 newtype = 'I'; in parse_pnp_list()
396 newtype = 'D'; in parse_pnp_list()
398 newtype = 'Z'; in parse_pnp_list()
400 newtype = 'T'; in parse_pnp_list()
[all …]
/freebsd-14.2/crypto/heimdal/appl/ftp/ftp/
H A Dcmds.c267 changetype(int newtype, int show) in changetype() argument
272 if (newtype == 0) in changetype()
273 newtype = TYPE_I; in changetype()
274 if (newtype == curtype) in changetype()
279 if (newtype == p->t_type) in changetype()
282 printf("ftp: internal error: unknown type %d\n", newtype); in changetype()
285 if (newtype == TYPE_L && bytename[0] != '\0') in changetype()
290 curtype = newtype; in changetype()
/freebsd-14.2/sys/contrib/openzfs/include/sys/
H A Ddsl_dir.h177 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx);
180 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx);
/freebsd-14.2/contrib/tnftp/src/
H A Dcmds.c281 changetype(int newtype, int show) in changetype() argument
286 if (newtype == 0) in changetype()
287 newtype = TYPE_I; in changetype()
288 if (newtype == curtype) in changetype()
293 if (newtype == p->t_type) in changetype()
296 errx(1, "changetype: unknown type %d", newtype); in changetype()
298 if (newtype == TYPE_L && bytename[0] != '\0') in changetype()
303 curtype = newtype; in changetype()
/freebsd-14.2/sys/contrib/openzfs/module/zfs/
H A Ddsl_dir.c1594 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx) in dsl_dir_transfer_space() argument
1598 ASSERT(newtype < DD_USED_NUM); in dsl_dir_transfer_space()
1609 ddp->dd_used_breakdown[newtype] >= -delta); in dsl_dir_transfer_space()
1612 ddp->dd_used_breakdown[newtype] += delta; in dsl_dir_transfer_space()
1619 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx) in dsl_dir_diduse_transfer_space() argument
1625 ASSERT(newtype < DD_USED_NUM); in dsl_dir_diduse_transfer_space()
1644 ddp->dd_used_breakdown[newtype] >= -tonew); in dsl_dir_diduse_transfer_space()
1646 ddp->dd_used_breakdown[newtype] += tonew; in dsl_dir_diduse_transfer_space()
H A Ddnode.c528 dnode_setbonus_type(dnode_t *dn, dmu_object_type_t newtype, dmu_tx_t *tx) in dnode_setbonus_type() argument
533 dn->dn_bonustype = newtype; in dnode_setbonus_type()
/freebsd-14.2/sbin/fsdb/
H A Dfsdb.c166 CMDFUNC(newtype); /* change type */
204 { "chtype", "Change type of current inode to TYPE", 2, 2, FL_CWR, newtype },
937 CMDFUNCSTART(newtype) in CMDFUNCSTART() argument
/freebsd-14.2/sys/ufs/ufs/
H A Dufs_lookup.c1228 ufs_dirrewrite(struct inode *dp, struct inode *oip, ino_t newinum, int newtype, in ufs_dirrewrite() argument
1270 ep->d_type = newtype; in ufs_dirrewrite()
/freebsd-14.2/contrib/sendmail/src/
H A Dqueue.c8762 int newtype; local
8975 newtype = (reason == NULL ? NORMQF_LETTER : QUARQF_LETTER);
8976 if (oldtype == newtype)
8984 (void) sm_strlcpy(newqf, queuename(e, newtype), sizeof(newqf));
9005 if (oldtype == newtype)
9037 if (!failing && oldtype != newtype)
/freebsd-14.2/crypto/openssh/
H A Dsshkey.c2149 int newtype; in sshkey_to_certified() local
2151 if ((newtype = sshkey_type_certified(k->type)) == -1) in sshkey_to_certified()
2155 k->type = newtype; in sshkey_to_certified()
/freebsd-14.2/sys/ufs/ffs/
H A Dffs_softdep.c1201 workitem_reassign(struct worklist *item, int newtype) in workitem_reassign() argument
1211 ump->softdep_curdeps[newtype] += 1; in workitem_reassign()
1216 dep_current[newtype]++; in workitem_reassign()
1218 if (dep_current[newtype] > dep_highuse[newtype]) in workitem_reassign()
1219 dep_highuse[newtype] = dep_current[newtype]; in workitem_reassign()
1220 dep_total[newtype]++; in workitem_reassign()
1222 item->wk_type = newtype; in workitem_reassign()
1224 LIST_INSERT_HEAD(&ump->softdep_alldeps[newtype], item, wk_all); in workitem_reassign()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp8156 QualType newtype = S.Context.getFunctionType(FnTy->getReturnType(), in handleFunctionTypeAttr() local
8158 type = unwrapped.wrap(S, newtype->getAs<FunctionType>()); in handleFunctionTypeAttr()