Home
last modified time | relevance | path

Searched refs:objid (Results 1 – 11 of 11) sorted by relevance

/freebsd-12.1/sys/dev/bwi/
H A Dbwimac.h74 #define MOBJ_WRITE_2(mac, objid, ofs, val) \ argument
76 #define MOBJ_WRITE_4(mac, objid, ofs, val) \ argument
78 #define MOBJ_READ_2(mac, objid, ofs) \ argument
79 bwi_memobj_read_2((mac), (objid), (ofs))
80 #define MOBJ_READ_4(mac, objid, ofs) \ argument
81 bwi_memobj_read_4((mac), (objid), (ofs))
83 #define MOBJ_SETBITS_4(mac, objid, ofs, bits) \ argument
84 MOBJ_WRITE_4((mac), (objid), (ofs), \
86 #define MOBJ_CLRBITS_4(mac, objid, ofs, bits) \ argument
87 MOBJ_WRITE_4((mac), (objid), (ofs), \
[all …]
H A Dif_bwireg.h182 #define BWI_MOBJ_CTRL_VAL(objid, ofs) ((objid) << 16 | (ofs)) argument
/freebsd-12.1/crypto/heimdal/lib/asn1/
H A Dasn1parse.y56 static struct objid *new_objid(const char *label, int value);
57 static void add_oid_to_tail(struct objid *, struct objid *);
78 struct objid *objid; member
222 %type <objid> objid objid_list objid_element objid_opt
824 objid_opt : objid
828 objid : '{' objid_list '}'
936 ObjectIdentifierValue: objid
969 static struct objid *
972 struct objid *s; in new_objid()
981 add_oid_to_tail(struct objid *head, struct objid *tail) in add_oid_to_tail()
[all …]
H A Dasn1parse.c271 static void add_oid_to_tail(struct objid *, struct objid *);
313 struct objid *objid; member
2436 (yyval.objid) = (yyvsp[(2) - (3)].objid);
2443 (yyval.objid) = NULL;
2451 (yyval.objid) = (yyvsp[(2) - (2)].objid);
2452 add_oid_to_tail((yyvsp[(2) - (2)].objid), (yyvsp[(1) - (2)].objid));
2454 (yyval.objid) = (yyvsp[(1) - (2)].objid);
2792 static struct objid *
2795 struct objid *s; in new_objid()
2804 add_oid_to_tail(struct objid *head, struct objid *tail) in add_oid_to_tail()
[all …]
H A Dsymbol.h83 struct objid *objectidentifiervalue;
142 struct objid { struct
145 struct objid *next; argument
H A Dasn1parse.h233 struct objid *objid; member
H A Dgen.c408 struct objid *o, **list; in generate_constant()
/freebsd-12.1/stand/libsa/zfs/
H A Dzfs.c802 uint64_t objid; in zfs_list() local
821 rv = zfs_lookup_dataset(spa, dsname, &objid); in zfs_list()
825 return (zfs_list_dataset(spa, objid)); in zfs_list()
862 uint64_t objid; in zfs_bootenv_initial() local
879 rv = zfs_lookup_dataset(spa, dsname, &objid); in zfs_bootenv_initial()
882 rv = zfs_callback_dataset(spa, objid, zfs_belist_add); in zfs_bootenv_initial()
913 uint64_t objid; in zfs_bootenv() local
942 rv = zfs_lookup_dataset(spa, dsname, &objid); in zfs_bootenv()
945 rv = zfs_callback_dataset(spa, objid, zfs_belist_add); in zfs_bootenv()
H A Dzfsimpl.c138 static int zfs_get_root(const spa_t *spa, uint64_t *objid);
2689 zfs_get_root(const spa_t *spa, uint64_t *objid) in zfs_get_root() argument
2694 *objid = 0; in zfs_get_root()
2712 *objid = bootfs; in zfs_get_root()
2729 *objid = dd->dd_head_dataset_obj; in zfs_get_root()
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_replay.c284 uint64_t objid; in zfs_replay_create_acl() local
311 objid = LR_FOID_GET_OBJ(lr->lr_foid); in zfs_replay_create_acl()
316 lr->lr_mode, lr->lr_uid, lr->lr_gid, lr->lr_rdev, objid); in zfs_replay_create_acl()
455 uint64_t objid = LR_FOID_GET_OBJ(lr->lr_foid); in zfs_replay_create() local
460 lr->lr_mode, lr->lr_uid, lr->lr_gid, lr->lr_rdev, objid); in zfs_replay_create()
474 error = dmu_object_info(zfsvfs->z_os, objid, NULL); in zfs_replay_create()
H A Dsa.c1409 sa_handle_get(objset_t *objset, uint64_t objid, void *userp, in sa_handle_get() argument
1415 if (error = dmu_bonus_hold(objset, objid, NULL, &db)) in sa_handle_get()