Lines Matching defs:entry
663 struct extmnttab entry;
679 while ((ret = getextmntent(hdl->libzfs_mnttab, &entry, 0)) == 0) {
680 if (makedevice(entry.mnt_major, entry.mnt_minor) ==
689 if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0) {
695 return (zfs_open(hdl, entry.mnt_special, ZFS_TYPE_FILESYSTEM));
1257 zprop_list_t *entry;
1265 * When no property table entry can be found, return failure if
1280 if ((entry = zfs_alloc(hdl, sizeof (zprop_list_t))) == NULL)
1283 entry->pl_prop = prop;
1285 if ((entry->pl_user_prop = zfs_strdup(hdl, propname)) ==
1287 free(entry);
1290 entry->pl_width = strlen(propname);
1292 entry->pl_width = zprop_width(prop, &entry->pl_fixed,
1296 *listp = entry;
1410 zprop_list_t *entry;
1413 if ((entry = zfs_alloc(edp->hdl, sizeof (zprop_list_t))) == NULL)
1416 entry->pl_prop = prop;
1417 entry->pl_width = zprop_width(prop, &entry->pl_fixed, edp->type);
1418 entry->pl_all = B_TRUE;
1420 *(edp->last) = entry;
1421 edp->last = &entry->pl_next;
1429 zprop_list_t *entry;
1453 if ((entry = zfs_alloc(hdl, sizeof (zprop_list_t))) == NULL)
1456 entry->pl_prop = (type == ZFS_TYPE_POOL) ? ZPOOL_PROP_NAME :
1458 entry->pl_width = zprop_width(entry->pl_prop,
1459 &entry->pl_fixed, type);
1460 entry->pl_all = B_TRUE;
1461 entry->pl_next = *plp;
1462 *plp = entry;