| /netbsd-src/crypto/dist/ipsec-tools/src/racoon/ |
| H A D | algorithm.c | 302 alg_oakley_hashdef(doi) in alg_oakley_hashdef() argument 303 int doi; in alg_oakley_hashdef() 308 if (doi == oakley_hashdef[i].doi) { 317 alg_oakley_hashdef_ok(doi) in alg_oakley_hashdef_ok() argument 318 int doi; in alg_oakley_hashdef_ok() 322 f = alg_oakley_hashdef(doi); 337 res = oakley_hashdef[i].doi; 344 alg_oakley_hashdef_hashlen(doi) in alg_oakley_hashdef_hashlen() argument 345 int doi; in alg_oakley_hashdef_hashlen() 349 f = alg_oakley_hashdef(doi); [all …]
|
| H A D | algorithm.h | 133 int doi; member 144 int doi; member 155 int doi; member 167 int doi; member 175 int doi; member
|
| H A D | isakmp.h | 189 u_int32_t doi; /* Domain of Interpretation */ 308 u_int32_t doi; /* Domain of Interpretation */ member 372 u_int32_t doi; /* Domain of Interpretation */ member 416 u_int32_t doi; /* Domain of Interpretation */ member
|
| H A D | isakmp_inf.c | 460 if (ntohl(delete->doi) != IPSEC_DOI) { 463 ntohl(delete->doi)); 470 ISAKMP_CFG_VENDORID_UNITY) == 0) || (delete->doi != 0)) 598 d->doi = htonl(IPSEC_DOI); 662 d->doi = htonl(IPSEC_DOI); 739 n->doi = htonl(IPSEC_DOI); 801 n->doi = htonl(iph1->rmconf->doitype); 851 n->doi = htonl(IPSEC_DOI); /* IPSEC DOI (1) */ 1059 n->doi = htonl(IPSEC_DOI); /* IPSEC DOI (1) */ 1405 ru_ack->doi = htonl(IPSEC_DOI); [all …]
|
| H A D | cfparse.y | 2499 int doi; variable 2502 doi = algtype2doi($1, $2); 2503 if (doi == -1) { 2514 s_attr_isakmp_enc(doi)); 2521 s_attr_isakmp_enc(doi)); 2526 cur_rmconf->spspec->algclass[algclass_isakmp_enc] = doi; 2545 cur_rmconf->spspec->algclass[algclass_isakmp_hash] = doi; 2548 cur_rmconf->spspec->algclass[algclass_isakmp_ameth] = doi;
|
| H A D | ipsec_doi.c | 1165 if (check_doi(ntohl(sab->doi)) < 0) 1168 *doitype = ntohl(sab->doi); 1460 ((struct ipsecdoi_sa_b *)bp)->doi = htonl(doitype); 1791 check_doi(doi) in check_doi() argument 1792 u_int32_t doi; in check_doi() 1794 switch (doi) { 1799 "invalid value of DOI 0x%08x.\n", doi); 2623 ((struct ipsecdoi_sa_b *)mysa->v)->doi = htonl(rmconf->doitype); 3138 sab->doi = htonl(IPSEC_DOI); 4767 doi2idtype(doi) in doi2idtype() argument [all …]
|
| /netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| H A D | bpobj.c | 98 dmu_object_info_t doi; in bpobj_free() local 110 VERIFY3U(0, ==, dmu_object_info(os, bpo.bpo_phys->bpo_subobjs, &doi)); in bpobj_free() 111 epb = doi.doi_data_block_size / sizeof (uint64_t); in bpobj_free() 149 dmu_object_info_t doi; in bpobj_open() local 152 err = dmu_object_info(os, object, &doi); in bpobj_open() 162 ASSERT3U(doi.doi_type, ==, DMU_OT_BPOBJ); in bpobj_open() 163 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_BPOBJ_HDR); in bpobj_open() 171 bpo->bpo_epb = doi.doi_data_block_size >> SPA_BLKPTRSHIFT; in bpobj_open() 172 bpo->bpo_havecomp = (doi.doi_bonus_size > BPOBJ_SIZE_V0); in bpobj_open() 173 bpo->bpo_havesubobj = (doi.doi_bonus_size > BPOBJ_SIZE_V1); in bpobj_open() [all …]
|
| H A D | zfs_znode.c | 829 dmu_object_info_t doi; in zfs_loadvnode() local 849 dmu_object_info_from_db(db, &doi); in zfs_loadvnode() 850 if (doi.doi_bonus_type != DMU_OT_SA && in zfs_loadvnode() 851 (doi.doi_bonus_type != DMU_OT_ZNODE || in zfs_loadvnode() 852 (doi.doi_bonus_type == DMU_OT_ZNODE && in zfs_loadvnode() 853 doi.doi_bonus_size < sizeof (znode_phys_t)))) { in zfs_loadvnode() 858 blksz = doi.doi_data_block_size; in zfs_loadvnode() 859 obj_type = doi.doi_bonus_type; in zfs_loadvnode() 1305 dmu_object_info_t doi; in zfs_zget_cleaner() local 1312 dmu_object_info_from_db(db, &doi); in zfs_zget_cleaner() [all …]
|
| H A D | space_map.c | 406 dmu_object_info_t doi; in space_map_truncate() local 411 dmu_object_info_from_db(sm->sm_dbuf, &doi); in space_map_truncate() 422 doi.doi_bonus_size != sizeof (space_map_phys_t)) || in space_map_truncate() 423 doi.doi_data_block_size != space_map_blksz) { in space_map_truncate() 426 spa_name(spa), doi.doi_bonus_size, doi.doi_data_block_size); in space_map_truncate() 497 dmu_object_info_t doi; in space_map_free() local 499 dmu_object_info_from_db(sm->sm_dbuf, &doi); in space_map_free() 500 if (doi.doi_bonus_size != SPACE_MAP_SIZE_V0) { in space_map_free()
|
| H A D | dsl_deadlist.c | 98 dmu_object_info_t doi; in dsl_deadlist_open() local 104 dmu_object_info_from_db(dl->dl_dbuf, &doi); in dsl_deadlist_open() 105 if (doi.doi_type == DMU_OT_BPOBJ) { in dsl_deadlist_open() 158 dmu_object_info_t doi; in dsl_deadlist_free() local 162 VERIFY3U(0, ==, dmu_object_info(os, dlobj, &doi)); in dsl_deadlist_free() 163 if (doi.doi_type == DMU_OT_BPOBJ) { in dsl_deadlist_free() 466 dmu_object_info_t doi; in dsl_deadlist_merge() local 468 VERIFY3U(0, ==, dmu_object_info(dl->dl_os, obj, &doi)); in dsl_deadlist_merge() 469 if (doi.doi_type == DMU_OT_BPOBJ) { in dsl_deadlist_merge()
|
| H A D | zfs_sa.c | 135 dmu_object_info_t doi; in zfs_sa_get_scanstamp() local 142 sa_object_info(zp->z_sa_hdl, &doi); in zfs_sa_get_scanstamp() 146 if (len <= doi.doi_bonus_size) { in zfs_sa_get_scanstamp() 168 dmu_object_info_t doi; in zfs_sa_set_scanstamp() local 172 sa_object_info(zp->z_sa_hdl, &doi); in zfs_sa_set_scanstamp() 175 if (len > doi.doi_bonus_size) in zfs_sa_set_scanstamp()
|
| H A D | spa_history.c | 232 dmu_object_info_t doi; in spa_history_log_sync() local 233 dmu_object_info_from_db(dbp, &doi); in spa_history_log_sync() 234 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_SPA_HISTORY_OFFSETS); in spa_history_log_sync() 372 dmu_object_info_t doi; in spa_history_get() local 373 dmu_object_info_from_db(dbp, &doi); in spa_history_get() 374 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_SPA_HISTORY_OFFSETS); in spa_history_get()
|
| H A D | ddt.c | 112 dmu_object_info_t doi; in ddt_object_load() local 132 VERIFY(ddt_object_info(ddt, type, class, &doi) == 0); in ddt_object_load() 139 ddo->ddo_dspace = doi.doi_physical_blocks_512 << 9; in ddt_object_load() 140 ddo->ddo_mspace = doi.doi_fill_count * doi.doi_data_block_size; in ddt_object_load() 150 dmu_object_info_t doi; in ddt_object_sync() local 163 VERIFY(ddt_object_info(ddt, type, class, &doi) == 0); in ddt_object_sync() 167 ddo->ddo_dspace = doi.doi_physical_blocks_512 << 9; in ddt_object_sync() 168 ddo->ddo_mspace = doi.doi_fill_count * doi.doi_data_block_size; in ddt_object_sync() 234 dmu_object_info_t *doi) in ddt_object_info() argument 240 doi)); in ddt_object_info()
|
| H A D | dmu.c | 2162 dmu_object_info_from_dnode(dnode_t *dn, dmu_object_info_t *doi) in dmu_object_info_from_dnode() argument 2171 doi->doi_data_block_size = dn->dn_datablksz; in dmu_object_info_from_dnode() 2172 doi->doi_metadata_block_size = dn->dn_indblkshift ? in dmu_object_info_from_dnode() 2174 doi->doi_type = dn->dn_type; in dmu_object_info_from_dnode() 2175 doi->doi_bonus_type = dn->dn_bonustype; in dmu_object_info_from_dnode() 2176 doi->doi_bonus_size = dn->dn_bonuslen; in dmu_object_info_from_dnode() 2177 doi->doi_indirection = dn->dn_nlevels; in dmu_object_info_from_dnode() 2178 doi->doi_checksum = dn->dn_checksum; in dmu_object_info_from_dnode() 2179 doi->doi_compress = dn->dn_compress; in dmu_object_info_from_dnode() 2180 doi->doi_nblkptr = dn->dn_nblkptr; in dmu_object_info_from_dnode() [all …]
|
| H A D | zfs_dir.c | 259 dmu_object_info_t doi; in zfs_unlinked_drain() local 275 zap.za_first_integer, &doi); in zfs_unlinked_drain() 279 ASSERT((doi.doi_type == DMU_OT_PLAIN_FILE_CONTENTS) || in zfs_unlinked_drain() 280 (doi.doi_type == DMU_OT_DIRECTORY_CONTENTS)); in zfs_unlinked_drain()
|
| H A D | dsl_dir.c | 176 dmu_object_info_t doi; in dsl_dir_hold_obj() local 177 dmu_object_info_from_db(dbuf, &doi); in dsl_dir_hold_obj() 178 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_DSL_DIR); in dsl_dir_hold_obj() 179 ASSERT3U(doi.doi_bonus_size, >=, sizeof (dsl_dir_phys_t)); in dsl_dir_hold_obj() 2002 dmu_object_info_t doi; in dsl_dir_is_zapified() local 2004 dmu_object_info_from_db(dd->dd_dbuf, &doi); in dsl_dir_is_zapified() 2005 return (doi.doi_type == DMU_OTN_ZAP_METADATA); in dsl_dir_is_zapified()
|
| H A D | zap_micro.c | 487 dmu_object_info_t doi; in zap_lockdir_impl() local 488 dmu_object_info_from_db(db, &doi); in zap_lockdir_impl() 489 ASSERT3U(DMU_OT_BYTESWAP(doi.doi_type), ==, DMU_BSWAP_ZAP); in zap_lockdir_impl() 656 dmu_object_info_t doi; in mzap_create_impl() local 657 dmu_object_info_from_db(db, &doi); in mzap_create_impl() 658 ASSERT3U(DMU_OT_BYTESWAP(doi.doi_type), ==, DMU_BSWAP_ZAP); in mzap_create_impl()
|
| /netbsd-src/external/mit/isl/dist/doc/ |
| H A D | isl.bib | 22 doi = "10.1007/BFb0014196", 33 doi = {10.1007/978-3-642-02026-1_9}, 54 doi = "10.1137/0201010", 91 doi = {10.1023/A:1007500431910}, 118 doi = "10.1007/BF01407931", 146 doi = "10.1007/BFb0057861", 160 doi = "10.1007/b107108", 172 doi = {10.1145/1066100.1066102}, 195 doi = "10.1090/S0894-0347-03-00428-4", 214 doi = "10.1007/978-3-540-25960-2_19", [all …]
|
| /netbsd-src/external/cddl/osnet/dist/cmd/zdb/ |
| H A D | zdb.c | 485 dmu_object_info_t doi; in dump_bpobj_subobjs() local 487 VERIFY0(dmu_object_info(os, object, &doi)); in dump_bpobj_subobjs() 488 uint64_t *subobjs = kmem_alloc(doi.doi_max_offset, KM_SLEEP); in dump_bpobj_subobjs() 490 int err = dmu_read(os, object, 0, doi.doi_max_offset, subobjs, 0); in dump_bpobj_subobjs() 493 kmem_free(subobjs, doi.doi_max_offset); in dump_bpobj_subobjs() 498 for (uint64_t i = 0; i < doi.doi_max_offset / 8; i++) { in dump_bpobj_subobjs() 506 kmem_free(subobjs, doi.doi_max_offset); in dump_bpobj_subobjs() 940 dmu_object_info_t doi; in dump_ddt() local 944 error = ddt_object_info(ddt, type, class, &doi); in dump_ddt() 955 dspace = doi.doi_physical_blocks_512 << 9; in dump_ddt() [all …]
|
| /netbsd-src/crypto/dist/ipsec-tools/src/racoon/samples/ |
| H A D | racoon.conf.in | 56 doi ipsec_doi; 78 doi ipsec_doi;
|
| H A D | racoon.conf.sample-inherit | 12 doi ipsec_doi;
|
| /netbsd-src/external/cddl/osnet/dist/cmd/ztest/ |
| H A D | ztest.c | 1293 dmu_object_info_t doi; in ztest_bt_bonus() local 1296 dmu_object_info_from_db(db, &doi); in ztest_bt_bonus() 1297 ASSERT3U(doi.doi_bonus_size, <=, db->db_size); in ztest_bt_bonus() 1298 ASSERT3U(doi.doi_bonus_size, >=, sizeof (*bt)); in ztest_bt_bonus() 1299 bt = (void *)((char *)db->db_data + doi.doi_bonus_size - sizeof (*bt)); in ztest_bt_bonus() 1505 dmu_object_info_t doi; in ztest_replay_remove() local 1521 VERIFY3U(0, ==, dmu_object_info(os, object, &doi)); in ztest_replay_remove() 1534 if (doi.doi_type == DMU_OT_ZAP_OTHER) { in ztest_replay_remove() 1560 dmu_object_info_t doi; in ztest_replay_write() local 1592 dmu_object_info_from_db(db, &doi); in ztest_replay_write() [all …]
|
| /netbsd-src/crypto/dist/ipsec-tools/src/setkey/ |
| H A D | parse.y | 79 u_int8_t doi; member 601 sec_ctx.doi = $2; 907 sec_ctx.doi = $2; 1052 if (sec_ctx.doi) { in setkeymsg_spdaddr() 1064 m_sec_ctx.sadb_x_ctx_doi = sec_ctx.doi; in setkeymsg_spdaddr() 1387 if (sec_ctx.doi) { in setkeymsg_add() 1397 m_sec_ctx.sadb_x_ctx_doi = sec_ctx.doi; in setkeymsg_add()
|
| /netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/ |
| H A D | dmu.h | 818 int dmu_object_info(objset_t *os, uint64_t object, dmu_object_info_t *doi); 820 void dmu_object_info_from_dnode(dnode_t *dn, dmu_object_info_t *doi); 822 void dmu_object_info_from_db(dmu_buf_t *db, dmu_object_info_t *doi);
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/doc/ |
| H A D | iso-639-2.texi | 27 @item doi
|