| /src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/ |
| dmu_zfetch.h | 41 struct dnode; /* so we can reference dnode */ 61 struct dnode *zf_dnode; /* dnode that owns this zfetch */ 67 void dmu_zfetch_init(zfetch_t *, struct dnode *);
|
| dbuf.h | 73 * to find all dbufs in a range of a dnode and must be less than any other 74 * dbuf_states_t (see comment on dn_dbufs in dnode.h). 86 struct dnode; 166 * handle to safely access the dnode we belong to (NULL when evicted) 171 * our parent buffer; if the dnode points to us directly, 273 uint64_t dbuf_whichblock(struct dnode *di, int64_t level, uint64_t offset); 275 dmu_buf_impl_t *dbuf_create_tlib(struct dnode *dn, char *data); 276 void dbuf_create_bonus(struct dnode *dn); 278 void dbuf_spill_hold(struct dnode *dn, dmu_buf_impl_t **dbp, void *tag); 280 void dbuf_rm_spill(struct dnode *dn, dmu_tx_t *tx) [all...] |
| dmu_tx.h | 44 struct dnode; 103 struct dnode *txh_dnode;
|
| dmu_impl.h | 36 #include <sys/dnode.h> 82 * protects structure of dnode (eg. nlevels)
|
| dmu_objset.h | 38 #include <sys/dnode.h>
|
| dsl_pool.h | 35 #include <sys/dnode.h>
|
| /src/sys/ufs/chfs/ |
| chfs_write.c | 286 struct chfs_flash_data_node *dnode; local 295 dnode = chfs_alloc_flash_dnode(); 296 if (!dnode) 302 size = sizeof(*dnode) + len; 304 dnode->magic = htole16(CHFS_FS_MAGIC_BITMASK); 305 dnode->type = htole16(CHFS_NODETYPE_DATA); 306 dnode->length = htole32(CHFS_PAD(size)); 307 dnode->hdr_crc = htole32(crc32(0, (uint8_t *)dnode, 309 dnode->vno = htole64(ip->ino) [all...] |
| chfs_readinode.c | 290 chfs_remove_and_obsolete(chmp, vc, td->node->nref, &vc->dnode); 724 chfs_remove_and_obsolete(chmp, vc, this->node->nref, &vc->dnode); 792 struct chfs_flash_data_node *dnode; local 798 dnode = kmem_alloc(len, KM_SLEEP); 799 nref = chfs_first_valid_data_ref(ip->chvc->dnode); 808 dnode = (struct chfs_flash_data_node*)buf; 811 crc = crc32(0, (uint8_t *)dnode, CHFS_NODE_HDR_SIZE - 4); 812 if (crc != le32toh(dnode->hdr_crc)) { 813 chfs_err("CRC check failed. calc: 0x%x orig: 0x%x\n", crc, le32toh(dnode->hdr_crc)); 818 if (le16toh(dnode->magic) != CHFS_FS_MAGIC_BITMASK) 1109 struct chfs_flash_data_node *dnode; local [all...] |
| chfs_scan.c | 359 struct chfs_flash_data_node *dnode = buf; local 362 crc = crc32(0, (uint8_t *)dnode, sizeof(struct chfs_flash_data_node) - 4); 363 if (crc != le32toh(dnode->node_crc)) { 364 err = chfs_update_eb_dirty(chmp, cheb, le32toh(dnode->length)); 381 vno = le64toh(dnode->vno); 391 chfs_add_node_to_list(chmp, vc, nref, &vc->dnode); 394 dbg("chmpfree: %u, chebfree: %u, dnode: %u\n", chmp->chm_free_size, cheb->free_size, dnode->length); 398 chfs_change_size_free(chmp, cheb, -dnode->length); 399 chfs_change_size_unchecked(chmp, cheb, dnode->length) [all...] |
| /src/external/gpl2/lvm2/dist/libdm/ |
| libdm-deptree.c | 514 static int _node_clear_table(struct dm_tree_node *dnode) 521 if (!(info = &dnode->info)) { 526 if (!(name = dm_tree_node_get_name(dnode))) { 571 struct dm_tree_node *dnode; local 577 if (!(dnode = dm_tree_find_node_by_uuid(dtree, uuid))) { 594 if (!(dnode = _create_dm_tree_node(dtree, name2, uuid2, &info, 599 if (!_add_to_toplevel(dnode) || !_add_to_bottomlevel(dnode)) 602 dnode->props.major = major; 603 dnode->props.minor = minor [all...] |
| libdevmapper.h | 320 int dm_tree_node_size_changed(struct dm_tree_node *dnode); 332 int dm_tree_deactivate_children(struct dm_tree_node *dnode, 339 int dm_tree_preload_children(struct dm_tree_node *dnode, 347 int dm_tree_activate_children(struct dm_tree_node *dnode, 355 int dm_tree_suspend_children(struct dm_tree_node *dnode, 364 void dm_tree_skip_lockfs(struct dm_tree_node *dnode); 374 void dm_tree_use_no_flush_suspend(struct dm_tree_node *dnode); 381 int dm_tree_children_use_uuid(struct dm_tree_node *dnode, 388 int dm_tree_node_add_snapshot_origin_target(struct dm_tree_node *dnode, 444 void dm_tree_node_set_read_ahead(struct dm_tree_node *dnode, [all...] |
| /src/sys/fs/tmpfs/ |
| tmpfs_subr.c | 188 tmpfs_node_t *node, *dnode; local 192 dnode = VP_TO_TMPFS_DIR(dvp); 193 if (dnode->tn_links == 0) 197 if (dnode->tn_links == LINK_MAX) 199 KASSERT(dnode->tn_links < LINK_MAX); 202 dnode = NULL; 248 KASSERT(dnode != NULL); 250 node->tn_gid = dnode->tn_gid; 372 tmpfs_node_t *dnode = VP_TO_TMPFS_DIR(dvp), *node; local 426 wde = tmpfs_dir_lookup(dnode, cnp) [all...] |
| tmpfs_vnops.c | 139 tmpfs_node_t *dnode, *tnode; local 146 dnode = VP_TO_TMPFS_DIR(dvp); 187 if (dnode->tn_links == 0) { 188 KASSERT(dnode->tn_size == 0); 203 KASSERT(dnode->tn_type == VDIR); 204 pnode = dnode->tn_spec.tn_dir.tn_parent; 229 de = tmpfs_dir_lookup(dnode, cnp); 271 if ((dnode->tn_mode & S_ISTXT) != 0) { 274 dnode->tn_vnode, genfs_can_sticky(dvp, cnp->cn_cred, 275 dnode->tn_uid, tnode->tn_uid)) 696 tmpfs_node_t *dnode, *node; local 779 tmpfs_node_t *dnode, *node; local 862 tmpfs_node_t *dnode = VP_TO_TMPFS_DIR(dvp); local 1328 tmpfs_node_t *dnode = VP_TO_TMPFS_DIR(dvp); local [all...] |
| tmpfs_rename.c | 388 tmpfs_node_t *dnode = VP_TO_TMPFS_DIR(dvp); local 407 tmpfs_dir_detach(dnode, *dep); 475 struct tmpfs_node *dnode; local 507 dnode = VP_TO_TMPFS_NODE(vp)->tn_spec.tn_dir.tn_parent; 510 * If dnode is null then vp has been rmdir'd, which is 513 KASSERT(dnode != NULL); 516 if (dnode == VP_TO_TMPFS_NODE(vp)) { 523 if (dnode == VP_TO_TMPFS_NODE(fdvp)) { 524 KASSERT(dnode->tn_vnode == fdvp); 534 error = vcache_get(mp, &dnode, sizeof(dnode), &vp) [all...] |
| /src/external/gpl2/xcvs/dist/src/ |
| find_names.c | 132 Node *dnode; local 137 dnode = getnode (); 138 dnode->type = DIRS; 139 dnode->key = xstrdup (entnode->user); 140 if (addnode (dirlist, dnode) != 0) 141 freenode (dnode);
|
| /src/external/gpl3/gcc/dist/gcc/analyzer/ |
| trimmed-graph.h | 57 class trimmed_node : public dnode<tg_traits>
|
| /src/external/gpl3/gcc.old/dist/gcc/analyzer/ |
| trimmed-graph.h | 57 class trimmed_node : public dnode<tg_traits>
|
| /src/external/gpl2/lvm2/dist/include/ |
| libdevmapper.h | 320 int dm_tree_node_size_changed(struct dm_tree_node *dnode); 332 int dm_tree_deactivate_children(struct dm_tree_node *dnode, 339 int dm_tree_preload_children(struct dm_tree_node *dnode, 347 int dm_tree_activate_children(struct dm_tree_node *dnode, 355 int dm_tree_suspend_children(struct dm_tree_node *dnode, 364 void dm_tree_skip_lockfs(struct dm_tree_node *dnode); 374 void dm_tree_use_no_flush_suspend(struct dm_tree_node *dnode); 381 int dm_tree_children_use_uuid(struct dm_tree_node *dnode, 388 int dm_tree_node_add_snapshot_origin_target(struct dm_tree_node *dnode, 444 void dm_tree_node_set_read_ahead(struct dm_tree_node *dnode, [all...] |
| /src/external/gpl2/lvm2/dist/lib/activate/ |
| dev_manager.c | 867 struct dm_tree_node *dnode, 875 if (!dm_tree_node_add_snapshot_origin_target(dnode, lv->size, real_dlid)) 882 struct dm_tree_node *dnode, 903 if (!dm_tree_node_add_snapshot_target(dnode, size, origin_dlid, cow_dlid, 1, snap_seg->chunk_size)) 910 struct dm_tree_node *dnode, 923 dnode, 933 struct dm_tree_node *dnode, 982 if (!_add_origin_target_to_dtree(dm, dnode, seg->lv)) 985 if (!_add_snapshot_target_to_dtree(dm, dnode, seg->lv)) 987 } else if (!_add_target_to_dtree(dm, dnode, seg) 1004 struct dm_tree_node *dnode; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| digraph.h | 42 class dnode class 48 virtual ~dnode () {}
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| digraph.h | 42 class dnode class 48 virtual ~dnode () {}
|
| /src/sys/netatalk/ |
| ddp_output.c | 131 uint8_t dnode = dst->sat_addr.s_node; local 139 dnode == aa->aa_addr.sat_addr.s_node) { 145 dnode == 255) {
|
| /src/sys/kern/ |
| kern_sysctl.c | 1720 struct sysctlnode dnode; local 1749 error = sysctl_cvt_in(l, &v, newp, newlen, &dnode); 1752 if (dnode.sysctl_desc != NULL) { 1777 if (node[i].sysctl_num == dnode.sysctl_num) 1788 if (dnode.sysctl_ver != 0 && 1789 dnode.sysctl_ver != node->sysctl_ver) { 1831 dnode.sysctl_flags & CTLFLAG_OWNDESC) { 1839 error = sysctl_copyinstr(l, dnode.sysctl_desc, 1852 dnode.sysctl_flags |= CTLFLAG_OWNDESC; 1853 dnode.sysctl_desc = nd 1978 struct sysctlnode nnode, onode, *dnode; local 2224 struct sysctlnode dnode, *onode; local [all...] |
| /src/external/cddl/osnet/dist/uts/common/ |
| Makefile.files | 52 dnode.o \
|
| /src/external/mpl/bind/dist/lib/isc/ |
| ht.c | 531 isc_ht_node_t *dnode = NULL; local 540 dnode = it->cur; 545 dresult = isc__ht_delete(ht, dnode->key, dnode->keysize, dnode->hashval,
|