Searched refs:doi (Results 1 - 22 of 22) sorted by relevance

/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dbpobj.c100 dmu_object_info_t doi; local
112 VERIFY3U(0, ==, dmu_object_info(os, bpo.bpo_phys->bpo_subobjs, &doi));
113 epb = doi.doi_data_block_size / sizeof (uint64_t);
151 dmu_object_info_t doi; local
154 err = dmu_object_info(os, object, &doi);
164 ASSERT3U(doi.doi_type, ==, DMU_OT_BPOBJ);
165 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_BPOBJ_HDR);
173 bpo->bpo_epb = doi.doi_data_block_size >> SPA_BLKPTRSHIFT;
174 bpo->bpo_havecomp = (doi.doi_bonus_size > BPOBJ_SIZE_V0);
175 bpo->bpo_havesubobj = (doi
202 dmu_object_info_t doi; local
395 dmu_object_info_t doi; local
412 dmu_object_info_t doi; local
[all...]
H A Ddsl_deadlist.c96 dmu_object_info_t doi; local
102 dmu_object_info_from_db(dl->dl_dbuf, &doi);
103 if (doi.doi_type == DMU_OT_BPOBJ) {
154 dmu_object_info_t doi; local
158 VERIFY3U(0, ==, dmu_object_info(os, dlobj, &doi));
159 if (doi.doi_type == DMU_OT_BPOBJ) {
461 dmu_object_info_t doi; local
463 VERIFY3U(0, ==, dmu_object_info(dl->dl_os, obj, &doi));
464 if (doi.doi_type == DMU_OT_BPOBJ) {
H A Dspa_history.c229 dmu_object_info_t doi; local
230 dmu_object_info_from_db(dbp, &doi);
231 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_SPA_HISTORY_OFFSETS);
369 dmu_object_info_t doi; local
370 dmu_object_info_from_db(dbp, &doi);
371 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_SPA_HISTORY_OFFSETS);
H A Dzfs_sa.c136 dmu_object_info_t doi; local
143 sa_object_info(zp->z_sa_hdl, &doi);
147 if (len <= doi.doi_bonus_size) {
169 dmu_object_info_t doi; local
173 sa_object_info(zp->z_sa_hdl, &doi);
176 if (len > doi.doi_bonus_size)
H A Ddmu.c1697 dmu_object_info_from_dnode(dnode_t *dn, dmu_object_info_t *doi) argument
1706 doi->doi_data_block_size = dn->dn_datablksz;
1707 doi->doi_metadata_block_size = dn->dn_indblkshift ?
1709 doi->doi_type = dn->dn_type;
1710 doi->doi_bonus_type = dn->dn_bonustype;
1711 doi->doi_bonus_size = dn->dn_bonuslen;
1712 doi->doi_indirection = dn->dn_nlevels;
1713 doi->doi_checksum = dn->dn_checksum;
1714 doi->doi_compress = dn->dn_compress;
1715 doi
1730 dmu_object_info(objset_t *os, uint64_t object, dmu_object_info_t *doi) argument
1749 dmu_object_info_from_db(dmu_buf_t *db_fake, dmu_object_info_t *doi) argument
1754 dmu_object_info_from_dnode(DB_DNODE(db), doi); local
[all...]
H A Dddt.c112 dmu_object_info_t doi; local
132 VERIFY(ddt_object_info(ddt, type, class, &doi) == 0);
139 ddo->ddo_dspace = doi.doi_physical_blocks_512 << 9;
140 ddo->ddo_mspace = doi.doi_fill_count * doi.doi_data_block_size;
151 dmu_object_info_t doi; local
164 VERIFY(ddt_object_info(ddt, type, class, &doi) == 0);
168 ddo->ddo_dspace = doi.doi_physical_blocks_512 << 9;
169 ddo->ddo_mspace = doi.doi_fill_count * doi
234 ddt_object_info(ddt_t *ddt, enum ddt_type type, enum ddt_class class, dmu_object_info_t *doi) argument
[all...]
H A Dzfs_znode.c1123 dmu_object_info_t doi; local
1145 dmu_object_info_from_db(db, &doi);
1146 if (doi.doi_bonus_type != DMU_OT_SA &&
1147 (doi.doi_bonus_type != DMU_OT_ZNODE ||
1148 (doi.doi_bonus_type == DMU_OT_ZNODE &&
1149 doi.doi_bonus_size < sizeof (znode_phys_t)))) {
1223 zp = zfs_znode_alloc(zfsvfs, db, doi.doi_data_block_size,
1224 doi.doi_bonus_type, NULL);
1252 dmu_object_info_t doi; local
1278 dmu_object_info_from_db(db, &doi);
1965 dmu_object_info_t doi; local
[all...]
H A Ddmu_traverse.c598 dmu_object_info_t doi; local
600 err = dmu_object_info(mos, obj, &doi);
608 if (doi.doi_type == DMU_OT_DSL_DATASET) {
H A Dzfs_dir.c476 dmu_object_info_t doi; local
492 zap.za_first_integer, &doi);
496 ASSERT((doi.doi_type == DMU_OT_PLAIN_FILE_CONTENTS) ||
497 (doi.doi_type == DMU_OT_DIRECTORY_CONTENTS));
H A Dzvol.c226 dmu_object_info_t doi; local
235 error = dmu_object_info(os, ZVOL_OBJ, &doi);
239 doi.doi_data_block_size);
486 dmu_object_info_t doi; local
575 error = dmu_object_info(os, ZVOL_OBJ, &doi);
577 zv->zv_volblocksize = doi.doi_data_block_size;
817 dmu_object_info_t doi; local
828 if ((error = dmu_object_info(os, ZVOL_OBJ, &doi)) != 0 ||
830 doi.doi_data_block_size)) != 0)
H A Dsa.c1372 dmu_object_info_t doi; local
1376 dmu_object_info_from_db(db, &doi);
1377 ASSERT(doi.doi_bonus_type == DMU_OT_SA ||
1378 doi.doi_bonus_type == DMU_OT_ZNODE);
1904 sa_object_info(sa_handle_t *hdl, dmu_object_info_t *doi) argument
1906 dmu_object_info_from_db((dmu_buf_t *)hdl->sa_bonus, doi);
H A Dzap_micro.c473 dmu_object_info_t doi; local
474 dmu_object_info_from_db(db, &doi);
475 ASSERT3U(DMU_OT_BYTESWAP(doi.doi_type), ==, DMU_BSWAP_ZAP);
597 dmu_object_info_t doi; local
598 dmu_object_info_from_db(db, &doi);
599 ASSERT3U(DMU_OT_BYTESWAP(doi.doi_type), ==, DMU_BSWAP_ZAP);
H A Ddsl_dir.c94 dmu_object_info_t doi; local
95 dmu_object_info_from_db(dbuf, &doi);
96 ASSERT3U(doi.doi_type, ==, DMU_OT_DSL_DIR);
97 ASSERT3U(doi.doi_bonus_size, >=, sizeof (dsl_dir_phys_t));
H A Ddsl_dataset.c350 dmu_object_info_t doi; local
359 dmu_object_info_from_db(dbuf, &doi);
360 if (doi.doi_type != DMU_OT_DSL_DATASET) {
/freebsd-10.0-release/contrib/tcpdump/
H A Dprint-isakmp.c120 u_int32_t doi, u_int32_t proto,
549 u_int32_t doi, sit, ident; local
558 doi = ntohl(sa.doi);
560 if (doi != 1) {
561 ND_PRINT((ndo," doi=%d", doi));
566 ND_PRINT((ndo," doi=ipsec"));
592 cp = ikev1_sub_print(ndo, ISAKMP_NPTYPE_P, ext, ep, phase, doi, proto0,
767 const u_char *ep, u_int32_t phase _U_, u_int32_t doi _U
1188 u_int32_t doi; local
1329 u_int32_t doi; local
2026 ikev2_e_print(netdissect_options *ndo, _U_ struct isakmp *base, u_char tpay, const struct isakmp_gen *ext, u_int item_len _U_, const u_char *ep _U_, _U_ u_int32_t phase, _U_ u_int32_t doi, _U_ u_int32_t proto, _U_ int depth) argument
2117 ike_sub0_print(netdissect_options *ndo, u_char np, const struct isakmp_gen *ext, const u_char *ep, u_int32_t phase, u_int32_t doi, u_int32_t proto, int depth) argument
2158 ikev1_sub_print(netdissect_options *ndo, u_char np, const struct isakmp_gen *ext, const u_char *ep, u_int32_t phase, u_int32_t doi, u_int32_t proto, int depth) argument
2294 ikev2_sub0_print(netdissect_options *ndo, struct isakmp *base, u_char np, int pcount, const struct isakmp_gen *ext, const u_char *ep, u_int32_t phase, u_int32_t doi, u_int32_t proto, int depth) argument
2345 ikev2_sub_print(netdissect_options *ndo, struct isakmp *base, u_char np, const struct isakmp_gen *ext, const u_char *ep, u_int32_t phase, u_int32_t doi, u_int32_t proto, int depth) argument
[all...]
H A Dipsec_doi.h115 u_int32_t doi; /* Domain of Interpretation */ member in struct:ipsecdoi_sa
H A Disakmp.h191 /* MAY NOT be used, because of being defined in ipsec-doi. */
204 u_int32_t doi; /* Domain of Interpretation */ member in struct:ikev1_pl_sa
247 /* MUST NOT to be used, because of being defined in ipsec-doi. */
319 u_int32_t doi; /* Domain of Interpretation */ member in struct:ikev1_pl_n
363 u_int32_t doi; /* Domain of Interpretation */ member in struct:ikev1_pl_d
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/zdb/
H A Dzdb.c722 dmu_object_info_t doi; local
726 error = ddt_object_info(ddt, type, class, &doi);
737 dspace = doi.doi_physical_blocks_512 << 9;
738 mspace = doi.doi_fill_count * doi.doi_data_block_size;
1564 dmu_object_info_t doi; local
1591 dmu_object_info_from_dnode(dn, &doi);
1593 zdb_nicenum(doi.doi_metadata_block_size, iblk);
1594 zdb_nicenum(doi.doi_data_block_size, dblk);
1595 zdb_nicenum(doi
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/ztest/
H A Dztest.c1282 dmu_object_info_t doi; local
1285 dmu_object_info_from_db(db, &doi);
1286 ASSERT3U(doi.doi_bonus_size, <=, db->db_size);
1287 ASSERT3U(doi.doi_bonus_size, >=, sizeof (*bt));
1288 bt = (void *)((char *)db->db_data + doi.doi_bonus_size - sizeof (*bt));
1495 dmu_object_info_t doi; local
1511 VERIFY3U(0, ==, dmu_object_info(os, object, &doi));
1524 if (doi.doi_type == DMU_OT_ZAP_OTHER) {
1550 dmu_object_info_t doi; local
1582 dmu_object_info_from_db(db, &doi);
1832 dmu_object_info_t doi; local
1952 dmu_object_info_t doi; local
2154 dmu_object_info_t doi; local
3190 dmu_object_info_t doi; local
3796 dmu_object_info_t doi; local
[all...]
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Ddmu.h668 * If doi is NULL, just indicates whether the object exists.
670 int dmu_object_info(objset_t *os, uint64_t object, dmu_object_info_t *doi);
672 void dmu_object_info_from_dnode(struct dnode *dn, dmu_object_info_t *doi);
674 void dmu_object_info_from_db(dmu_buf_t *db, dmu_object_info_t *doi);
/freebsd-10.0-release/sys/contrib/ipfilter/netinet/
H A Dfil.c1836 u_32_t doi; local
1844 doi = ipf_checkripso(s);
1845 secmsk = doi >> 16;
1846 auth = doi & 0xffff;
1855 doi = ipf_checkcipso(fin,
1857 secmsk = doi >> 16;
1858 auth = doi & 0xffff;
1924 /* Returns: u_32_t - 0 = failure, else the doi from the header */
1945 u_32_t doi; local
1960 bcopy(s + 2, &doi, sizeo
[all...]
/freebsd-10.0-release/contrib/ipfilter/tools/
H A Dipf_y.y1571 | IPFY_IPOPT_CIPSO doi { $$ = getoptbyvalue(IPOPT_CIPSO); }
1604 doi: IPFY_DOI YY_NUMBER { DOALL(fr->fr_doimask = 0xffffffff; \ label
1757 { "doi", IPFY_DOI },

Completed in 415 milliseconds