Home
last modified time | relevance | path

Searched refs:newv (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_upgrade/
H A Dzfs_upgrade_003_pos.ksh78 typeset newv
79 for newv in "" "current" $ZFS_ALL_VERSIONS; do
84 if [[ -n $newv ]]; then
85 opt="-V $newv"
86 if [[ $newv == current ]]; then
87 newv=$ZFS_VERSION
90 newv=$ZFS_VERSION
93 if (( newv >= oldv )); then
95 log_must check_fs_version $fs $newv
H A Dzfs_upgrade_004_pos.ksh86 typeset newv
87 for newv in "" "current" $ZFS_VERSION; do
90 if [[ -n $newv ]]; then
91 opt="-V $newv"
92 if [[ $newv == current ]]; then
93 newv=$ZFS_VERSION
96 newv=$ZFS_VERSION
102 log_must check_fs_version $fs $newv
H A Dzfs_upgrade_005_pos.ksh86 typeset newv
87 for newv in "" "current" $ZFS_VERSION; do
89 if [[ -n $newv ]]; then
90 opt="-V $newv"
91 if [[ $newv == current ]]; then
92 newv=$ZFS_VERSION
95 newv=$ZFS_VERSION
103 log_must check_fs_version $fs $newv
H A Dzfs_upgrade.kshlib127 typeset newv
133 for newv in "" $ZFS_VERSION; do
135 if [[ -n $newv ]]; then
136 opt="-V $newv"
138 newv=$ZFS_VERSION
145 if (( newv == zpl_version )); then
162 log_must check_fs_version $fs $newv
/illumos-gate/usr/src/cmd/csh/
H A Dsh.misc.c149 tchar **newv = in saveblk() local
152 tchar **onewv = newv; in saveblk()
155 *newv++ = savestr(*v++); in saveblk()
H A Dsh.c1195 tchar **newv = in strblktotsblk() local
1197 tchar **onewv = newv; in strblktotsblk()
1200 *newv++ = strtots(NOSTR, *v++); in strblktotsblk()
1201 *newv = 0; in strblktotsblk()
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_dictionary.cc1330 vers * newv = db_update_version.nextmajor(); // get next version in checkpoint() local
1331 db_update_version.assign(newv); // update version in checkpoint()
1332 delete newv; in checkpoint()
1626 vers *newv = db_update_version.nextminor(); in log_action() local
1627 db_dictlog_entry le(action, newv, tab, tobj); in log_action()
1630 delete newv; in log_action()
1639 delete newv; in log_action()
1645 db_update_version.assign(newv); in log_action()
1646 delete newv; in log_action()
/illumos-gate/usr/src/uts/common/fs/
H A Dfem.c3405 fsem_t *newv; in fsem_create() local
3407 newv = fsem_alloc(); in fsem_create()
3408 newv->name = (const char *)name; in fsem_create()
3409 newv->templ = templ; in fsem_create()
3411 e = fs_build_vector(newv, &unused_ops, fsem_opdef, templ); in fsem_create()
3416 fsem_free(newv); in fsem_create()
3418 *actual = newv; in fsem_create()