Home
last modified time | relevance | path

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

/titanic_41/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_upgrade/
H A Dzfs_upgrade_003_pos.ksh74 typeset newv
75 for newv in "" "current" $ZFS_ALL_VERSIONS; do
80 if [[ -n $newv ]]; then
81 opt="-V $newv"
82 if [[ $newv == current ]]; then
83 newv=$ZFS_VERSION
86 newv=$ZFS_VERSION
89 if (( newv >= oldv )); then
91 log_must check_fs_version $fs $newv
H A Dzfs_upgrade_004_pos.ksh82 typeset newv
83 for newv in "" "current" $ZFS_VERSION; do
86 if [[ -n $newv ]]; then
87 opt="-V $newv"
88 if [[ $newv == current ]]; then
89 newv=$ZFS_VERSION
92 newv=$ZFS_VERSION
98 log_must check_fs_version $fs $newv
H A Dzfs_upgrade_005_pos.ksh82 typeset newv
83 for newv in "" "current" $ZFS_VERSION; do
85 if [[ -n $newv ]]; then
86 opt="-V $newv"
87 if [[ $newv == current ]]; then
88 newv=$ZFS_VERSION
91 newv=$ZFS_VERSION
99 log_must check_fs_version $fs $newv
H A Dzfs_upgrade.kshlib122 typeset newv
128 for newv in "" $ZFS_VERSION; do
130 if [[ -n $newv ]]; then
131 opt="-V $newv"
133 newv=$ZFS_VERSION
140 if (( newv == zpl_version )); then
157 log_must check_fs_version $fs $newv
/titanic_41/usr/src/cmd/csh/
H A Dsh.misc.c151 tchar **newv = in saveblk() local
154 tchar **onewv = newv; in saveblk()
157 *newv++ = savestr(*v++); in saveblk()
H A Dsh.c1192 tchar **newv = in strblktotsblk() local
1194 tchar **onewv = newv; in strblktotsblk()
1197 *newv++ = strtots(NOSTR, *v++); in strblktotsblk()
1198 *newv = 0; in strblktotsblk()
/titanic_41/usr/src/lib/libnisdb/
H A Ddb_dictionary.cc1329 vers * newv = db_update_version.nextmajor(); // get next version in checkpoint() local
1330 db_update_version.assign(newv); // update version in checkpoint()
1331 delete newv; in checkpoint()
1625 vers *newv = db_update_version.nextminor(); in log_action() local
1626 db_dictlog_entry le(action, newv, tab, tobj); in log_action()
1629 delete newv; in log_action()
1638 delete newv; in log_action()
1644 db_update_version.assign(newv); in log_action()
1645 delete newv; in log_action()
/titanic_41/usr/src/uts/common/fs/
H A Dfem.c3400 fsem_t *newv; in fsem_create() local
3402 newv = fsem_alloc(); in fsem_create()
3403 newv->name = (const char *)name; in fsem_create()
3404 newv->templ = templ; in fsem_create()
3406 e = fs_build_vector(newv, &unused_ops, fsem_opdef, templ); in fsem_create()
3411 fsem_free(newv); in fsem_create()
3413 *actual = newv; in fsem_create()