Home
last modified time | relevance | path

Searched full:create (Results 1 – 25 of 10261) sorted by relevance

12345678910>>...411

/illumos-gate/usr/src/tools/smatch/src/smatch_data/db/
H A Dbuild_early_index.sh14 CREATE INDEX caller_fn_idx on caller_info (function, call_id);
15 CREATE INDEX caller_ff_idx on caller_info (file, function, call_id);
16 CREATE INDEX common_fn_idx on common_caller_info (function, call_id);
17 CREATE INDEX common_ff_idx on common_caller_info (file, function, call_id);
18 CREATE INDEX call_implies_fn_idx on call_implies (function);
19 CREATE INDEX call_implies_ff_idx on call_implies (file, function);
20 CREATE INDEX return_implies_fn_idx on return_implies (function);
21 CREATE INDEX return_implies_ff_idx on return_implies (file, function);
22 CREATE INDEX data_file_info_idx on data_info (file, data);
23 CREATE INDEX data_info_idx on data_info (data);
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_user/misc/
H A Dzpool_create_001_neg.ksh38 # Verify that 'zpool create' fails as a non-root user.
41 # 1. Create an array of options.
56 set -A args "create" "create -f" "create -n" \
57 "create $TESTPOOL" "create -f $TESTPOOL" "create -n $TESTPOOL" \
58 "create -fn $TESTPOOL" "create -nf $TESTPOOL" \
59 "create $TESTPOOL $ADD_DISK" "create -f $TESTPOOL $ADD_DISK"
61 set -A args "create" "create -f" "create -n" \
62 "create $TESTPOOL" "create -f $TESTPOOL" "create -n $TESTPOOL" \
63 "create -fn $TESTPOOL" "create -nf $TESTPOOL" \
64 "create $TESTPOOL $ADD_DISK" "create -f $TESTPOOL $ADD_DISK" \
[all …]
H A Dsetup.ksh47 # Create a default setup that includes a volume
55 # create a snapshot and a clone to test clone promote
58 # create a file in the filesystem that isn't in the above snapshot
62 # create a non-default property and a child we can use to test inherit
63 log_must zfs create $TESTPOOL/$TESTFS/$TESTFS2
67 # create an unmounted filesystem to test unmount
68 log_must zfs create $TESTPOOL/$TESTFS/$TESTFS2.unmounted
81 # create a filesystem that has particular properties to test set/get
82 log_must zfs create -o version=1 $TESTPOOL/$TESTFS/prop
95 # create a filesystem we don't mind renaming
[all …]
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dtrigger1.test14 # 1. CREATE and DROP TRIGGER tests
23 # trig-1.9: Ensure that we cannot create a trigger on sqlite_master
36 CREATE TRIGGER trig UPDATE ON no_such_table BEGIN
43 CREATE TEMP TRIGGER trig UPDATE ON no_such_table BEGIN
50 CREATE TABLE t1(a);
53 CREATE TRIGGER tr1 INSERT ON t1 BEGIN
59 CREATE TRIGGER tr1 DELETE ON t1 BEGIN
68 CREATE TRIGGER tr2 INSERT ON t1 BEGIN
71 CREATE TRIGGER tr2 INSERT ON t1 BEGIN
79 CREATE TRIGGER tr1 DELETE ON t1 BEGIN
[all …]
H A Dtable.test13 # focus of this file is testing the CREATE TABLE statement.
20 # Create a basic table and verify it is added to sqlite_master
24 CREATE TABLE test1 (
32 } {{CREATE TABLE test1 (
72 execsql {CREATE TABLE "create" (f1 int)}
74 } {create}
76 execsql {DROP TABLE "create"}
80 execsql {CREATE TABLE test1("f1 ho" int)}
93 execsql {CREATE TABLE TEST2(one text)}
94 set v [catch {execsql {CREATE TABLE test2(two text)}} msg]
[all …]
H A Dmain.test76 CREATE TABLE abc(x,y);
81 CREATE TRIGGER xyz AFTER DELETE abc BEGIN UPDATE pqr;
86 CREATE TRIGGER xyz AFTER DELETE abc BEGIN UPDATE pqr; END;
91 CREATE TRIGGER xyz AFTER DELETE abc BEGIN
98 CREATE TRIGGER xyz AFTER DELETE backend BEGIN
104 CREATE TRIGGER xyz AFTER DELETE end BEGIN
110 CREATE TRIGGER xyz AFTER DELETE end BEGIN
117 CREATE TRIGGER xyz AFTER DELETE end BEGIN
125 CREATE TRIGGER xyz AFTER DELETE [;end;] BEGIN
131 CREATE TRIGGER xyz AFTER DELETE backend BEGIN
[all …]
H A Dtrigger2.test57 {CREATE TEMP TABLE tbl (a, b);}
58 {CREATE TABLE tbl (a, b);}
59 {CREATE TABLE tbl (a INTEGER PRIMARY KEY, b);}
60 {CREATE TEMPORARY TABLE tbl (a INTEGER PRIMARY KEY, b);}
61 {CREATE TABLE tbl (a, b PRIMARY KEY);}
62 {CREATE TABLE tbl (a, b); CREATE INDEX tbl_idx ON tbl(b);}
63 {CREATE TEMP TABLE tbl (a, b); CREATE INDEX tbl_idx ON tbl(b);}
80 CREATE TABLE rlog (idx, old_a, old_b, db_sum_a, db_sum_b, new_a, new_b);
81 CREATE TABLE clog (idx, old_a, old_b, db_sum_a, db_sum_b, new_a, new_b);
83 CREATE TRIGGER before_update_row BEFORE UPDATE ON tbl FOR EACH ROW
[all …]
/titanic_44/usr/src/lib/libsqlite/test/
H A Dtrigger1.test16 # 1. CREATE and DROP TRIGGER tests
25 # trig-1.9: Ensure that we cannot create a trigger on sqlite_master
38 CREATE TRIGGER trig UPDATE ON no_such_table BEGIN
45 CREATE TEMP TRIGGER trig UPDATE ON no_such_table BEGIN
52 CREATE TABLE t1(a);
55 CREATE TRIGGER tr1 INSERT ON t1 BEGIN
61 CREATE TRIGGER tr1 DELETE ON t1 BEGIN
70 CREATE TRIGGER tr2 INSERT ON t1 BEGIN
73 CREATE TRIGGER tr2 INSERT ON t1 BEGIN
81 CREATE TRIGGER tr1 DELETE ON t1 BEGIN
[all …]
H A Dtable.test15 # focus of this file is testing the CREATE TABLE statement.
22 # Create a basic table and verify it is added to sqlite_master
26 CREATE TABLE test1 (
34 } {{CREATE TABLE test1 (
74 execsql {CREATE TABLE "create" (f1 int)}
76 } {create}
78 execsql {DROP TABLE "create"}
82 execsql {CREATE TABLE test1("f1 ho" int)}
95 execsql {CREATE TABLE TEST2(one text)}
96 set v [catch {execsql {CREATE TABLE test2(two text)}} msg]
[all …]
H A Dmain.test78 CREATE TABLE abc(x,y);
83 CREATE TRIGGER xyz AFTER DELETE abc BEGIN UPDATE pqr;
88 CREATE TRIGGER xyz AFTER DELETE abc BEGIN UPDATE pqr; END;
93 CREATE TRIGGER xyz AFTER DELETE abc BEGIN
100 CREATE TRIGGER xyz AFTER DELETE backend BEGIN
106 CREATE TRIGGER xyz AFTER DELETE end BEGIN
112 CREATE TRIGGER xyz AFTER DELETE end BEGIN
119 CREATE TRIGGER xyz AFTER DELETE end BEGIN
127 CREATE TRIGGER xyz AFTER DELETE [;end;] BEGIN
133 CREATE TRIGGER xyz AFTER DELETE backend BEGIN
[all …]
H A Dtrigger2.test59 {CREATE TEMP TABLE tbl (a, b);}
60 {CREATE TABLE tbl (a, b);}
61 {CREATE TABLE tbl (a INTEGER PRIMARY KEY, b);}
62 {CREATE TEMPORARY TABLE tbl (a INTEGER PRIMARY KEY, b);}
63 {CREATE TABLE tbl (a, b PRIMARY KEY);}
64 {CREATE TABLE tbl (a, b); CREATE INDEX tbl_idx ON tbl(b);}
65 {CREATE TEMP TABLE tbl (a, b); CREATE INDEX tbl_idx ON tbl(b);}
82 CREATE TABLE rlog (idx, old_a, old_b, db_sum_a, db_sum_b, new_a, new_b);
83 CREATE TABLE clog (idx, old_a, old_b, db_sum_a, db_sum_b, new_a, new_b);
85 CREATE TRIGGER before_update_row BEFORE UPDATE ON tbl FOR EACH ROW
[all …]
/freebsd/tests/sys/fs/fusefs/
H A Dcreate.cc40 class Create: public FuseTest { class
53 in.body.create.mode == mode && in expect_create()
54 in.body.create.umask == mask && in expect_create()
64 class Create_7_8: public Create {
68 Create::SetUp(); in SetUp()
78 in.body.create.mode == mode && in expect_create()
102 in.body.create.mode == mode && in expect_create()
116 TEST_F(Create, attr_cache) in TEST_F() argument
128 SET_OUT_HEADER_LEN(out, create); in TEST_F()
129 out.body.create.entry.attr.mode = mode; in TEST_F()
[all …]
/freebsd/tools/regression/zfs/zpool/create/
H A Doption-f_inuse.t11 expect_ok ${ZPOOL} create ${name0} ${disk0}
18 expect "${exp}" ${ZPOOL} create ${name1} ${disk0}
20 expect_ok ${ZPOOL} create -f ${name1} ${disk0}
24 expect_ok ${ZPOOL} create ${name0} mirror ${disk0} ${disk1}
31 expect "${exp}" ${ZPOOL} create ${name1} mirror ${disk0} ${disk1}
33 expect_ok ${ZPOOL} create -f ${name1} mirror ${disk0} ${disk1}
37 expect_ok ${ZPOOL} create ${name0} raidz1 ${disk0} ${disk1} ${disk2}
44 expect "${exp}" ${ZPOOL} create ${name1} raidz1 ${disk0} ${disk1} ${disk2}
46 expect_ok ${ZPOOL} create -f ${name1} raidz1 ${disk0} ${disk1} ${disk2}
50 expect_ok ${ZPOOL} create ${name0} raidz2 ${disk0} ${disk1} ${disk2} ${disk3}
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_create/
H A Dzfs_create_encrypted.ksh29 # ZFS should create datasets only if they have a valid combination of
65 # 1. Attempt to create a dataset using all combinations of encryption
80 log_assert "ZFS should create datasets only if they have a valid" \
84 log_must zfs create $TESTPOOL/$TESTFS1
85 log_mustnot zfs create -o keyformat=passphrase $TESTPOOL/$TESTFS1/c1
86 log_mustnot zfs create -o keylocation=prompt $TESTPOOL/$TESTFS1/c1
87 log_mustnot zfs create -o keyformat=passphrase -o keylocation=prompt \
90 log_must zfs create -o encryption=off $TESTPOOL/$TESTFS1/c1
91 log_mustnot zfs create -o encryption=off -o keylocation=prompt \
93 log_mustnot zfs create -o encryption=off -o keyformat=passphrase \
[all …]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_create/
H A Dzfs_create_encrypted.ksh28 # ZFS should create datasets only if they have a valid combination of
64 # 1. Attempt to create a dataset using all combinations of encryption
79 log_assert "ZFS should create datasets only if they have a valid" \
83 log_must zfs create $TESTPOOL/$TESTFS1
84 log_mustnot zfs create -o keyformat=passphrase $TESTPOOL/$TESTFS1/c1
85 log_mustnot zfs create -o keylocation=prompt $TESTPOOL/$TESTFS1/c1
86 log_mustnot zfs create -o keyformat=passphrase -o keylocation=prompt \
89 log_must zfs create -o encryption=off $TESTPOOL/$TESTFS1/c1
90 log_mustnot zfs create -o encryption=off -o keylocation=prompt \
92 log_mustnot zfs create -o encryption=off -o keyformat=passphrase \
[all …]
/freebsd/usr.sbin/ctladm/tests/
H A Dport.sh51 if [ -e port-create.txt ]; then
54 PORTNUM=`awk '/port:/ {print $2}' port-create.txt`
58 TARGET=`awk '/target:/ {print $2}' port-create.txt`
68 atf_set "descr" "ctladm can create a new ioctl port"
76 atf_check -o save:port-create.txt ctladm port -c -d "ioctl"
77 atf_check egrep -q "Port created successfully" port-create.txt
78 atf_check egrep -q "frontend: *ioctl" port-create.txt
79 atf_check egrep -q "port: *[0-9]+" port-create.txt
80 portnum=`awk '/port:/ {print $2}' port-create.txt`
100 atf_check -o save:port-create.txt ctladm port -c -d "ioctl"
[all …]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_user/misc/
H A Dzpool_create_001_neg.ksh37 # Verify that 'zpool create' fails as a non-root user.
40 # 1. Create an array of options.
53 set -A args "create" "create -f" "create -n" \
54 "create $TESTPOOL" "create -f $TESTPOOL" "create -n $TESTPOOL" \
55 "create -fn $TESTPOOL" "create -nf $TESTPOOL" \
56 "create $TESTPOOL $ADD_DISK" "create -f $TESTPOOL $ADD_DISK" \
57 "create -n $TESTPOOL $ADD_DISK" \
58 "create -fn $TESTPOOL $ADD_DISK" \
59 "create -nf $TESTPOOL $ADD_DISK"
61 log_assert "zpool create [-fn] pool_name vdev"
[all …]
H A Dsetup.ksh46 # Create a default setup that includes a volume
54 # create a snapshot and a clone to test clone promote
57 # create a file in the filesystem that isn't in the above snapshot
61 # create a non-default property and a child we can use to test inherit
62 log_must zfs create $TESTPOOL/$TESTFS/$TESTFS2
66 # create an unmounted filesystem to test unmount
67 log_must zfs create $TESTPOOL/$TESTFS/$TESTFS2.unmounted
80 # create a filesystem that has particular properties to test set/get
81 log_must zfs create -o version=1 $TESTPOOL/$TESTFS/prop
94 # create a filesystem we don't mind renaming
[all …]
/titanic_44/usr/src/test/zfs-tests/tests/functional/cli_user/misc/
H A Dzpool_create_001_neg.ksh37 # Verify that 'zpool create' fails as a non-root user.
40 # 1. Create an array of options.
53 set -A args "create" "create -f" "create -n" \
54 "create $TESTPOOL" "create -f $TESTPOOL" "create -n $TESTPOOL" \
55 "create -fn $TESTPOOL" "create -nf $TESTPOOL" \
56 "create $TESTPOOL $ADD_DISK" "create -f $TESTPOOL $ADD_DISK" \
57 "create -n $TESTPOOL $ADD_DISK" \
58 "create -fn $TESTPOOL $ADD_DISK" \
59 "create -nf $TESTPOOL $ADD_DISK"
61 log_assert "zpool create [-fn] pool_name vdev"
[all …]
H A Dsetup.ksh46 # Create a default setup that includes a volume
54 # create a snapshot and a clone to test clone promote
57 # create a file in the filesystem that isn't in the above snapshot
61 # create a non-default property and a child we can use to test inherit
62 log_must $ZFS create $TESTPOOL/$TESTFS/$TESTFS2
66 # create an unmounted filesystem to test unmount
67 log_must $ZFS create $TESTPOOL/$TESTFS/$TESTFS2.unmounted
80 # create a filesystem that has particular properties to test set/get
81 log_must $ZFS create -o version=1 $TESTPOOL/$TESTFS/prop
94 # create a filesystem we don't mind renaming
[all …]
/freebsd/tests/sys/cddl/zfs/tests/cli_user/misc/
H A Dsetup.ksh40 # Create a default setup that includes a volume
48 # create a snapshot and a clone to test clone promote
51 # create a file in the filesystem that isn't in the above snapshot
55 # create a non-default property and a child we can use to test inherit
56 log_must $ZFS create $TESTPOOL/$TESTFS/$TESTFS2
60 # create an unmounted filesystem to test unmount
61 log_must $ZFS create $TESTPOOL/$TESTFS/$TESTFS2.unmounted
74 # create a filesystem that has particular properties to test set/get
75 log_must $ZFS create -o version=1 $TESTPOOL/$TESTFS/prop
89 # create a filesystem we don't mind renaming
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_create/
H A Dzpool_create_encrypted.ksh27 # 'zpool create' should create an encrypted dataset only if it has a valid
54 # 1. Attempt to create a dataset using all combinations of encryption
66 log_assert "'zpool create' should create an encrypted dataset only if it" \
69 log_mustnot zpool create -O keylocation=prompt $TESTPOOL $DISKS
70 log_mustnot zpool create -O keyformat=passphrase $TESTPOOL $DISKS
71 log_mustnot zpool create -O keyformat=passphrase -O keylocation=prompt \
74 log_must zpool create -O encryption=off $TESTPOOL $DISKS
77 log_mustnot zpool create -O encryption=off -O keylocation=prompt \
79 log_mustnot zpool create -O encryption=off -O keyformat=passphrase \
81 log_mustnot zpool create -O encryption=off -O keyformat=passphrase \
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/
H A Dzvol_misc_hierarchy.ksh30 # 1. Create a filesystem and a ZVOL
34 # 5. Verify 'zfs create' cannot create datasets under a ZVOL
55 # 1. Create filesystems and ZVOLs
58 log_must zpool create -O mountpoint=none "$poolname" "$vdevfile"
59 log_must zfs create "$poolname/sendfs"
60 log_must zfs create -V 1M -s "$poolname/sendvol"
70 log_must zfs create "$poolname/fs"
71 log_must zfs create "$poolname/fs/subfs"
77 log_must zfs create -V 1M -s "$poolname/volume"
81 # 5. Verify 'zfs create' cannot create datasets under a ZVOL
[all …]
/titanic_44/usr/src/man/man1m/
H A Dbeadm.1m10 \fBbeadm\fR \fBcreate\fR [\fB-a\fR] [\fB-d\fR \fIdescription\fR]
18 \fBbeadm\fR \fBcreate\fR [\fB-v\fR] \fIbeName@snapshot\fR
73 Create a new BE, based on the active BE.
79 Create a new BE, based on an inactive BE.
85 Create a snapshot of an existing BE.
91 Create a new BE, based on an existing snapshot.
97 Create a new BE, and copy it to a different zpool.
165 \fBbeadm\fR \fBcreate\fR [\fB-a\fR] [\fB-d\fR \fIdescription\fR]
201 Create a new BE with a description associated with it.
210 Create a new BE from an existing inactive BE.
[all …]
/illumos-gate/usr/src/man/man8/
H A Dbeadm.810 \fBbeadm\fR \fBcreate\fR [\fB-a\fR | \fB-t\fR] [\fB-d\fR \fIdescription\fR]
18 \fBbeadm\fR \fBcreate\fR [\fB-v\fR] \fIbeName@snapshot\fR
73 Create a new BE, based on the active BE.
79 Create a new BE, based on an inactive BE.
85 Create a snapshot of an existing BE.
91 Create a new BE, based on an existing snapshot.
97 Create a new BE, and copy it to a different zpool.
165 \fBbeadm\fR \fBcreate\fR [\fB-a\fR | \fB-t\fR] [\fB-d\fR \fIdescription\fR]
198 Create a new BE with a description associated with it.
207 Create a new BE from an existing inactive BE.
[all …]

12345678910>>...411