Searched refs:ltype (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-12-stable/lib/libsecureboot/openpgp/
H A Ddecode.c84 decode_tag(unsigned char *ptr, int *isnew, int *ltype) argument
88 if (!ptr || !isnew || !ltype)
96 *ltype = -1; /* irrelevant */
99 *ltype = tag & OPENPGP_TAG_OLD_TYPE;
145 decode_len(unsigned char **pptr, int ltype) argument
150 if (ltype < 0)
158 switch (ltype) {
261 int isnew, ltype; local
268 tag = decode_tag(ptr, &isnew, &ltype);
274 len = rc = decode_len(&ptr, ltype);
[all...]
H A Ddecode.h52 int decode_tag(unsigned char *ptr, int *isnew, int *ltype);
H A Dopgp_key.c184 int isnew, ltype; local
186 tag = decode_tag(ptr, &isnew, &ltype);
/freebsd-12-stable/contrib/apr/file_io/unix/
H A Dflock.c62 int ltype; local
65 ltype = LOCK_SH;
67 ltype = LOCK_EX;
69 ltype |= LOCK_NB;
72 while ((rc = flock(thefile->filedes, ltype)) < 0 && errno == EINTR)
/freebsd-12-stable/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_lookup.c50 int error, ltype; local
55 ltype = VOP_ISLOCKED(startvp);
62 vn_lock(startvp, ltype | LK_RETRY);
/freebsd-12-stable/contrib/ntp/lib/isc/include/isc/
H A Devent.h34 #define ISC_EVENT_COMMON(ltype) \
44 ISC_LINK(ltype) ev_link
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dprocset.h137 #define setprocset(psp, op, ltype, lid, rtype, rid) \
139 (psp)->p_lidtype = (ltype); \
/freebsd-12-stable/cddl/contrib/opensolaris/common/ctf/
H A Dctf_types.c561 ctf_type_cmp(ctf_file_t *lfp, ctf_id_t ltype, ctf_file_t *rfp, ctf_id_t rtype) argument
565 if (ltype < rtype)
567 else if (ltype > rtype)
575 if (CTF_TYPE_ISPARENT(ltype) && lfp->ctf_parent != NULL)
597 ctf_type_compat(ctf_file_t *lfp, ctf_id_t ltype, argument
605 if (ctf_type_cmp(lfp, ltype, rfp, rtype) == 0)
608 ltype = ctf_type_resolve(lfp, ltype);
609 lkind = ctf_type_kind(lfp, ltype);
615 (ltp = ctf_lookup_by_id(&lfp, ltype))
[all...]
H A Dctf_create.c1094 ctf_id_t ltype = ctf_type_resolve(fp, lmd->dmd_type); local
1100 if (ctf_type_encoding(fp, ltype, &linfo) != CTF_ERR)
1102 else if ((lsize = ctf_type_size(fp, ltype)) != CTF_ERR)
/freebsd-12-stable/sys/fs/cd9660/
H A Dcd9660_lookup.c130 int ltype, reclen; local
405 ltype = cnp->cn_lkflags & LK_TYPE_MASK;
406 if (ltype != VOP_ISLOCKED(vdp)) {
407 if (ltype == LK_EXCLUSIVE)
409 else /* if (ltype == LK_SHARED) */
/freebsd-12-stable/contrib/one-true-awk/
H A Dawk.h215 long ltype; /* long avoids pointer warnings on 64-bit */ member in struct:rrow
H A Db.c365 f->re[info(v)].ltype = type(v);
890 if ((k = f->re[p[i]].ltype) != FINAL) {
971 if (f->re[i].ltype == CCL || f->re[i].ltype == NCCL)
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_ctldir.c598 zfsctl_relock_dot(vnode_t *dvp, int ltype) argument
601 if (ltype != VOP_ISLOCKED(dvp)) {
602 if (ltype == LK_EXCLUSIVE)
604 else /* if (ltype == LK_SHARED) */
635 int ltype; local
H A Dzfs_vnops.c1453 int ltype; local
1464 ltype = lkflags & LK_TYPE_MASK;
1465 if (ltype != VOP_ISLOCKED(dvp)) {
1466 if (ltype == LK_EXCLUSIVE)
1468 else /* if (ltype == LK_SHARED) */
1636 int ltype; local
1639 ltype = VOP_ISLOCKED(dvp);
1652 vn_lock(dvp, ltype | LK_RETRY);
5949 int ltype; local
5982 ltype
[all...]
/freebsd-12-stable/sys/fs/ext2fs/
H A Dext2_lookup.c346 int ltype; local
696 ltype = cnp->cn_lkflags & LK_TYPE_MASK;
697 if (ltype != VOP_ISLOCKED(vdp)) {
698 if (ltype == LK_EXCLUSIVE)
700 else /* if (ltype == LK_SHARED) */
/freebsd-12-stable/sys/kern/
H A Dvfs_cache.c1147 int ltype; local
1163 ltype = cnp->cn_lkflags & LK_TYPE_MASK;
1164 if (ltype != VOP_ISLOCKED(*vpp)) {
1165 if (ltype == LK_EXCLUSIVE) {
1306 int error, ltype; local
1397 ltype = 0; /* silence gcc warning */
1399 ltype = VOP_ISLOCKED(dvp);
1406 vn_lock(dvp, ltype | LK_RETRY);
H A Dvfs_vnops.c2108 int ltype, error; local
2112 ltype = VOP_ISLOCKED(vp);
2113 KASSERT(ltype == LK_EXCLUSIVE || ltype == LK_SHARED,
2120 vn_lock(vp, ltype | LK_RETRY);
2133 vn_lock(vp, ltype | LK_RETRY);
/freebsd-12-stable/sys/fs/udf/
H A Dudf_vnops.c1133 int fsize, lkflags, ltype, numdirpasses; local
1219 ltype = lkflags & LK_TYPE_MASK;
1220 if (ltype != VOP_ISLOCKED(dvp)) {
1221 if (ltype == LK_EXCLUSIVE)
1223 else /* if (ltype == LK_SHARED) */
/freebsd-12-stable/sys/ufs/ufs/
H A Dufs_lookup.c220 int ltype; local
721 ltype = cnp->cn_lkflags & LK_TYPE_MASK;
722 if (ltype != VOP_ISLOCKED(vdp)) {
723 if (ltype == LK_EXCLUSIVE)
725 else /* if (ltype == LK_SHARED) */
/freebsd-12-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_parser.c339 ctf_id_t ltype = lp->dn_type; local
344 ctf_id_t lbase = ctf_type_resolve(lfp, ltype);
359 ltype = lbase = DT_INT_TYPE(dtp);
398 *otype = ltype;
3911 ctf_id_t ltype, rtype; local
3917 ltype = ctf_type_resolve(lp->dn_ctfp, lp->dn_type);
3918 lkind = ctf_type_kind(lp->dn_ctfp, ltype);
4236 ctf_id_t ltype = ctf_type_resolve(lctfp, dnp->dn_type); local
4242 if (ctf_type_kind(lctfp, ltype) == CTF_K_POINTER) {
4243 ltype
[all...]
/freebsd-12-stable/sys/fs/smbfs/
H A Dsmbfs_smb.c94 u_char ltype = 0; local
98 ltype |= SMB_LOCKING_ANDX_SHARED_LOCK;
109 mb_put_uint8(mbp, ltype); /* locktype */
/freebsd-12-stable/sys/fs/nfsserver/
H A Dnfs_nfsdstate.c6056 int error = 0, ltype, oldltype; local
6059 ltype = F_WRLCK;
6061 ltype = F_RDLCK;
6063 ltype = F_UNLCK;
6070 if (ltype == oldltype || (oldltype == F_WRLCK && ltype == F_RDLCK))
6073 error = nfsvno_advlock(vp, ltype, first, end, p);
6085 } else if (ltype != F_UNLCK) {
/freebsd-12-stable/sys/fs/nfsclient/
H A Dnfs_clvnops.c1112 int error = 0, attrflag, dattrflag, ltype, ncticks; local
1297 ltype = NFSVOPISLOCKED(dvp);
1303 NFSVOPLOCK(dvp, ltype | LK_RETRY);
1319 NFSVOPLOCK(dvp, ltype | LK_RETRY);
/freebsd-12-stable/contrib/ofed/opensm/opensm/
H A Dosm_torus.c1142 uint8_t ltype, rtype; local
1201 ltype = osm_node_get_type(lphysp->p_node);
1205 if (lphysp->port_num == 0 && ltype == IB_NODE_TYPE_SWITCH) {
1217 if ((ltype != IB_NODE_TYPE_CA &&
1218 ltype != IB_NODE_TYPE_ROUTER) ||
1252 ltype = osm_node_get_type(lphysp->p_node);
1255 if (ltype != IB_NODE_TYPE_SWITCH ||
/freebsd-12-stable/contrib/gcc/
H A Dc-common.c6834 check_missing_format_attribute (tree ltype, tree rtype)
6836 tree const ttr = TREE_TYPE (rtype), ttl = TREE_TYPE (ltype);
6814 check_missing_format_attribute(tree ltype, tree rtype) argument

Completed in 445 milliseconds

12