Home
last modified time | relevance | path

Searched refs:c1 (Results 126 – 150 of 231) sorted by last modified time

12345678910

/PHP-7.4/ext/sodium/tests/
H A Dcrypto_secretstream.phpt21 $c1 = sodium_crypto_secretstream_xchacha20poly1305_push($stream, $msg1, $ad);
26 $r1 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c1, $ad);
38 $r1 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c1);
40 $r1 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c1, $ad);
45 $r1 = sodium_crypto_secretstream_xchacha20poly1305_pull($stream, $c1, $ad);
/PHP-7.4/ext/reflection/tests/
H A D021.phpt6 const c1 = 1;
9 var_dump($class->hasConstant("c1"));
H A D022.phpt6 const c1 = 1;
9 var_dump($class->getConstant("c1"));
/PHP-7.4/ext/pdo_oci/tests/
H A Dpecl_bug_6364.phpt17 $dbh->exec ("create table bug_6364_t (c1 varchar2(10), c2 varchar2(10), c3 varchar2(10), c4 varchar…
19 …rchar2, p4 OUT varchar2, p5 OUT varchar2) as begin insert into bug_6364_t (c1, c2, c3) values (p1,…
49 ["c1"]=>
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_string_utils.c104 PCRE2_UCHAR c1, c2; in PRIV() local
107 c1 = *str1++; in PRIV()
109 if (c1 != c2) return ((c1 > c2) << 1) - 1; in PRIV()
132 PCRE2_UCHAR c1, c2; in PRIV() local
135 c1 = *str1++; in PRIV()
137 if (c1 != c2) return ((c1 > c2) << 1) - 1; in PRIV()
159 PCRE2_UCHAR c1, c2; in PRIV() local
162 c1 = *str1++; in PRIV()
164 if (c1 != c2) return ((c1 > c2) << 1) - 1; in PRIV()
191 c1 = *str1++; in PRIV()
[all …]
/PHP-7.4/ext/oci8/tests/
H A Dedition_2.phpt92 if ($c1) {
94 oci_close($c1);
99 $c1 = get_conn(3);
105 $c1 = get_conn(1);
106 get_edit_attr($c1);
107 oci_close($c1);
115 $c1 = get_conn(3);
117 get_edit_attr($c1);
122 oci_commit($c1);
124 get_edit_attr($c1);
[all …]
H A Derror_parse.phpt18 $c1 = oci_connect($user,$password,$dbase);
21 $c1 = oci_connect($user,$password);
24 $s = @oci_parse($c1, "select ' from dual");
27 $m = oci_error($c1);
71 $m = oci_error($c1);
85 $s = @oci_new_collection($c1, "ABC");
86 $m = oci_error($c1);
H A Dlob_041.phpt17 "CREATE table lob_041_tab(c1 CLOB)",
H A Dpassword.phpt26 $c1 = oci_connect("testuser_pw", "testuserpwd", $dbase);
27 var_dump($c1);
28 $rn1 = (int)$c1;
30 oci_password_change($c1, "testuser_pw", "testuserpwd", "testuserpwd2");
32 // Second connect should return a new resource because the hash string will be different from $c1
45 var_dump($c1);
57 var_dump($c1);
H A Dpassword_2.phpt25 $c1 = oci_pconnect("testuser_pw2", "testuserpwd", $dbase);
26 var_dump($c1);
27 $rn1 = (int)$c1;
29 oci_password_change($c1, "testuser_pw2", "testuserpwd", "testuserpwd2");
31 // Second connect should return a new resource because the hash string will be different from $c1
44 var_dump($c1);
56 var_dump($c1);
H A Drefcur_prefetch_2.phpt27 "CREATE TABLE refcurtest (c1 NUMBER, c2 VARCHAR(20))",
31 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,c2 out varchar2);
36 open cur1 for select * from refcurtest order by c1;
38 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,
41 fetch cur1 into c1,c2;
49 $insert_sql = "INSERT INTO refcurtest (c1, c2) VALUES (:c1,:c2)";
56 oci_bind_by_name($s,':c1',$i);
75 $sql2 = "begin refcurpkg.fetch_ref_cur(:curs1,:c1,:c2); end;";
80 if (!oci_bind_by_name($s2, ":c1", $c1, -1, SQLT_INT)) {
128 var_dump($c1);
H A Drefcur_prefetch_3.phpt31 "create table nescurtest(c1 varchar2(10))"
37 $insert_sql = "INSERT INTO nescurtest (c1) VALUES (:c1)";
44 oci_bind_by_name($s,':c1',$val2);
H A Ddrcp_newconnect.phpt16 var_dump($c1 = oci_new_connect($user,$password,$dbase));
17 $rn1 = (int)$c1;
32 oci_close($c1);
H A Drefcur_prefetch_1.phpt27 "CREATE TABLE refcurtest (c1 NUMBER, c2 VARCHAR(20))",
31 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,c2 out varchar2);
36 open cur1 for select * from refcurtest order by c1;
38 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,
41 fetch cur1 into c1,c2;
49 $insert_sql = "INSERT INTO refcurtest (c1, c2) VALUES (:c1,:c2)";
56 oci_bind_by_name($s,':c1',$i);
93 $sql2 = "begin refcurpkg.fetch_ref_cur(:curs1,:c1,:c2); end;";
98 if (!oci_bind_by_name($s2,":c1",$c1,-1,SQLT_INT)) {
106 var_dump($c1);
H A Drefcur_prefetch_4.phpt28 "CREATE TABLE refcurtest (c1 NUMBER, c2 VARCHAR(20))",
33 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number, c2 out varchar2);
39 open cur1 for select * from refcurtest order by c1;
41 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number, c2 out varchar2) is
43 fetch cur1 into c1,c2;
51 $insert_sql = "INSERT INTO refcurtest (c1, c2) VALUES (:c1,:c2)";
58 oci_bind_by_name($s,':c1',$i);
77 $sql2 = "begin refcurpkg.fetch_ref_cur(:curs1,:c1,:c2); end;";
82 if (!oci_bind_by_name($s2, ":c1", $c1, -1, SQLT_INT)) {
98 var_dump($c1);
[all …]
H A Darray_bind_int1.phpt24 PROCEDURE iobind(c1 IN OUT ARRTYPE);
32 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
35 INSERT INTO bind_test VALUES (c1(i));
41 FETCH CUR INTO c1(i);
52 $statement = oci_parse($c, "BEGIN array_bind_int1_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 10, 5, SQLT_INT);
H A Darray_bind_str.phpt24 PROCEDURE iobind(c1 IN OUT ARRTYPE);
32 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
35 INSERT INTO bind_test VALUES (c1(i));
41 FETCH CUR INTO c1(i);
52 $statement = oci_parse($c, "BEGIN array_bind_str_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array, 5, 20, SQLT_CHR);
H A Dbind_char_1.phpt24 "create table bind_char_tab (id number, c1 char(10), c2 varchar2(10))",
39 $s = oci_parse($c, "select * from bind_char_tab where c1 = :bv");
74 $s = oci_parse($c, "select * from bind_char_tab where c1 = :bv");
H A Dbind_char_2_11gR1.phpt25 "create table bind_char_tab (id number, c1 date)",
36 $s = oci_parse($c, "select * from bind_char_tab where c1 = :bv");
H A Dbug40078.phpt16 PROCEDURE nullbind(c1 OUT ARRTYPE);
23 PROCEDURE nullbind(c1 OUT ARRTYPE) IS
25 c1(1) := 'one';
26 c1(2) := 'two';
27 c1(3) := '';
28 c1(4) := 'four';
29 c1(5) := 'five';
35 $statement = oci_parse($c, "BEGIN bug40078_pkg.nullbind(:c1); END;");
37 oci_bind_array_by_name($statement, ":c1", $array, 5, 20, SQLT_CHR);
H A Dbug42496_2.phpt18 "CREATE table bug42496_2_tab(c1 CLOB, c2 CLOB)",
H A Dbug51253.phpt24 PROCEDURE iobind(c1 IN OUT ARRTYPE);
32 PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
35 INSERT INTO bind_test VALUES (c1(i));
41 FETCH CUR INTO c1(i);
53 $statement = oci_parse($c, "BEGIN bug51253_pkg.iobind(:c1); END;");
56 oci_bind_array_by_name($statement, ":c1", $array2, 5, -1, SQLT_CHR);
64 $statement = oci_parse($c, "BEGIN bug51253_pkg.iobind(:c1); END;");
67 oci_bind_array_by_name($statement, ":c1", $array2, 5, -1, SQLT_CHR);
75 $statement = oci_parse($c, "BEGIN bug51253_pkg.iobind(:c1); END;");
78 oci_bind_array_by_name($statement, ":c1", $array1, 5, -1, SQLT_CHR);
H A Dconnect_1.phpt11 var_dump($c1 = oci_pconnect($user, $password, $dbase));
14 var_dump($c1 = oci_pconnect($user, $password));
24 var_dump(oci_close($c1));
H A Dconnect_1_old.phpt11 var_dump($c1 = ociplogon($user, $password, $dbase));
14 var_dump($c1 = ociplogon($user, $password));
24 var_dump(ocilogoff($c1));
H A Dconnect_scope2.phpt14 "create table connect_scope2_tab (c1 number)",
18 $c1 = oci_new_connect($user,$password,$dbase);
20 $c1 = oci_new_connect($user,$password);
22 oci8_test_sql_execute($c1, $stmtarray);
45 $s1 = oci_parse($c1, "select * from connect_scope2_tab");
55 $s1 = oci_parse($c1, "select * from connect_scope2_tab");
66 oci8_test_sql_execute($c1, $stmtarray);

Completed in 75 milliseconds

12345678910