Home
last modified time | relevance | path

Searched refs:S (Results 1 – 25 of 269) sorted by relevance

1234567891011

/PHP-8.1/ext/pdo_mysql/
H A Dmysql_statement.c114 efree(S); in pdo_mysql_stmt_dtor()
152 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_fill_stmt_from_result()
173 S->result = mysqlnd_stmt_result_metadata(S->stmt); in pdo_mysql_stmt_after_execute_prepared()
175 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_after_execute_prepared()
186 S->result = mysql_stmt_result_metadata(S->stmt); in pdo_mysql_stmt_after_execute_prepared()
189 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_after_execute_prepared()
221 S->fields[i].max_length? S->fields[i].max_length: in pdo_mysql_stmt_after_execute_prepared()
240 S->bound_result[i].is_null = &S->out_null[i]; in pdo_mysql_stmt_after_execute_prepared()
241 S->bound_result[i].length = &S->out_length[i]; in pdo_mysql_stmt_after_execute_prepared()
272 if (mysql_stmt_bind_param(S->stmt, S->params) || mysql_stmt_execute(S->stmt)) { in pdo_mysql_stmt_execute_prepared_libmysql()
[all …]
/PHP-8.1/ext/pdo_pgsql/
H A Dpgsql_statement.c64 if (S->result) { in pgsql_stmt_dtor()
102 if (S->query) { in pgsql_stmt_dtor()
122 if(S->cols) { in pgsql_stmt_dtor()
123 efree(S->cols); in pgsql_stmt_dtor()
126 efree(S); in pgsql_stmt_dtor()
140 if(S->result) { in pgsql_stmt_execute()
182 S->result = PQprepare(H->server, S->stmt_name, ZSTR_VAL(S->query), in pgsql_stmt_execute()
217 S->result = PQexecPrepared(H->server, S->stmt_name, in pgsql_stmt_execute()
227 S->result = PQexecParams(H->server, ZSTR_VAL(S->query), in pgsql_stmt_execute()
446 S->result = PQexec(S->H->server, q); in pgsql_stmt_fetch()
[all …]
/PHP-8.1/ext/pdo_sqlite/
H A Dsqlite_statement.c34 if (S->stmt) { in pdo_sqlite_stmt_dtor()
36 S->stmt = NULL; in pdo_sqlite_stmt_dtor()
38 efree(S); in pdo_sqlite_stmt_dtor()
50 S->done = 0; in pdo_sqlite_stmt_execute()
61 S->done = 1; in pdo_sqlite_stmt_execute()
85 S->done = 1; in pdo_sqlite_stmt_param_hook()
207 if (!S->stmt) { in pdo_sqlite_stmt_fetch()
214 if (S->done) { in pdo_sqlite_stmt_fetch()
223 S->done = 1; in pdo_sqlite_stmt_fetch()
259 if (!S->stmt) { in pdo_sqlite_stmt_get_col()
[all …]
/PHP-8.1/ext/pcre/tests/
H A Dbug41148.phpt10 /* 0 */ "/\n(----+|____+)/S",
11 /* 1 */ "/\n-- */S",
12 /* 2 */ "/\n- */S",
13 /* 3 */ "/\n_ +/S",
14 /* 4 */ "/(^|[^{])[{][{][{]/S",
17 /* 7 */ "/[{][{]/S",
18 /* 8 */ "/[}][}]/S",
19 /* 9 */ "/[{]/S",
20 /* 10 */ "/[}]/S",
23 /* 13 */ "/<quote>/S",
[all …]
/PHP-8.1/ext/pdo_oci/
H A Doci_statement.c107 OCI_TEMPLOB_CLOSE(S->H->env, S->H->svc, S->H->err, in oci_stmt_dtor()
119 efree(S); in oci_stmt_dtor()
134 (S->stmt, OCI_HTYPE_STMT, &S->stmt_type, 0, OCI_ATTR_STMT_TYPE, S->err)); in oci_stmt_execute()
153 STMT_CALL(OCIStmtExecute, (S->H->svc, S->stmt, S->err, in oci_stmt_execute()
300 OCI_TEMPLOB_CLOSE(S->H->env, S->H->svc, S->H->err, P->thing); in oci_stmt_param_hook()
441 OCI_TEMPLOB_CLOSE(S->H->env, S->H->svc, S->H->err, P->thing); in oci_stmt_param_hook()
470 S->last_err = OCIStmtFetch2(S->stmt, S->err, 1, ociori, (sb4) offset, OCI_DEFAULT); in oci_stmt_fetch()
472 S->last_err = OCIStmtFetch(S->stmt, S->err, 1, OCI_FETCH_NEXT, OCI_DEFAULT); in oci_stmt_fetch()
594 STMT_CALL(OCIDefineByPos, (S->stmt, &S->cols[colno].def, S->err, colno+1, in oci_stmt_describe()
595 S->cols[colno].data, S->cols[colno].datalen, dtype, &S->cols[colno].indicator, in oci_stmt_describe()
[all …]
/PHP-8.1/ext/pdo_odbc/
H A Dodbc_stmt.c74 S->convbuf = erealloc(S->convbuf, S->convbufsize); in pdo_odbc_utf82ucs2()
121 if (S->cols) { in free_cols()
129 efree(S->cols); in free_cols()
130 S->cols = NULL; in free_cols()
131 S->col_count = 0; in free_cols()
147 free_cols(stmt, S); in odbc_stmt_dtor()
148 if (S->convbuf) { in odbc_stmt_dtor()
151 efree(S); in odbc_stmt_dtor()
199 SQLPutData(S->stmt, S->convbuf, ulen); in odbc_stmt_execute()
604 S->cols[colno].is_unicode = pdo_odbc_sqltype_is_unicode(S, S->cols[colno].coltype); in odbc_stmt_describe()
[all …]
/PHP-8.1/ext/standard/tests/file/
H A Dstream_rfc2397_007.phpt20 echo "===S:4,S===\n";
41 echo "===S:3,S===\n";
57 echo "===S:3,S===\n";
86 ===S:4,S===
107 ===S:3,S===
111 ===S:1,C===
115 ===S:-2,C===
123 ===S:3,S===
127 ===S:10,C===
135 ===S:0,E===
[all …]
/PHP-8.1/ext/pdo_firebird/
H A Dfirebird_statement.c95 if (S->in_sqlda) { in firebird_stmt_dtor()
101 efree(S); in firebird_stmt_dtor()
118 …if ((*S->name || S->cursor_open) && isc_dsql_free_statement(H->isc_status, &S->stmt, DSQL_close)) { in firebird_stmt_execute()
137 …if (isc_dsql_execute2(H->isc_status, &H->tr, &S->stmt, PDO_FB_SQLDA_VERSION, S->in_sqlda, &S->out_… in firebird_stmt_execute()
185 *S->name = 0; in firebird_stmt_execute()
186 S->cursor_open = S->out_sqlda.sqln && (S->statement_type != isc_info_sql_stmt_exec_procedure); in firebird_stmt_execute()
187 S->exhausted = !S->out_sqlda.sqln; /* There are data to fetch */ in firebird_stmt_execute()
546 XSQLDA *sqlda = param->is_param ? S->in_sqlda : &S->out_sqlda; in firebird_stmt_param_hook()
802 strlcpy(S->name, Z_STRVAL_P(val), sizeof(S->name)); in firebird_stmt_set_attribute()
833 …if ((*S->name || S->cursor_open) && isc_dsql_free_statement(S->H->isc_status, &S->stmt, DSQL_close… in firebird_stmt_cursor_closer()
[all …]
/PHP-8.1/ext/intl/tests/
H A Drbbiter_getBinaryRules_basic.phpt14 \$S = [.;,:];
18 \$S+ {42};
21 \$S+ {42};
36 string(128) "$LN = [[:letter:] [:number:]];$S = [.;,:];!!forward;$LN+ {1};$S+ {42};!!reverse;$LN+ {…
37 string(128) "$LN = [[:letter:] [:number:]];$S = [.;,:];!!forward;$LN+ {1};$S+ {42};!!reverse;$LN+ {…
H A Drbbiter_getBinaryRules_basic3.phpt14 \$S = [.;,:];
18 \$S+ {42};
21 \$S+ {42};
37 string(119) "$LN=[[:letter:][:number:]];$S=[.;,:];!!forward;$LN+{1};$S+{42};!!reverse;$LN+{1};$S+{4…
38 string(119) "$LN=[[:letter:][:number:]];$S=[.;,:];!!forward;$LN+{1};$S+{42};!!reverse;$LN+{1};$S+{4…
H A Drbbiter_getBinaryRules_basic2.phpt15 \$S = [.;,:];
19 \$S+ {42};
22 \$S+ {42};
38 $S = [.;,:];
41 $S+ {42};
44 $S+ {42};
48 $S = [.;,:];
51 $S+ {42};
54 $S+ {42};
H A Drbbiter_getRules_basic.phpt14 \$S = [.;,:];
18 \$S+ {42};
21 \$S+ {42};
30 string(128) "$LN = [[:letter:] [:number:]];$S = [.;,:];!!forward;$LN+ {1};$S+ {42};!!reverse;$LN+ {…
H A Drbbiter_getRules_basic3.phpt14 \$S = [.;,:];
18 \$S+ {42};
21 \$S+ {42};
31 string(119) "$LN=[[:letter:][:number:]];$S=[.;,:];!!forward;$LN+{1};$S+{42};!!reverse;$LN+{1};$S+{4…
H A Drbbiter_getRules_basic2.phpt15 \$S = [.;,:];
19 \$S+ {42};
22 \$S+ {42};
32 $S = [.;,:];
35 $S+ {42};
38 $S+ {42};
H A Ddateformat_timezone_arg_variations.phpt39 sábado%S 31 de diciembre de 2011 23:00:00 Hora%S de las Azores
40 domingo%S 1 de enero de 2012 01:00:00 Hora estándar de Europa Central
41 domingo%S 1 de enero de 2012 00:00:00 Hora%S de Europa Occidental
42 sábado%S 31 de diciembre de 2011 19:00:00 Hora estándar oriental
43 domingo%S 1 de enero de 2012 01:00:00 Hora estándar de Europa Central
44 domingo%S 1 de enero de 2012 00:00:00 Hora%S de Europa Occidental
45 domingo%S 1 de enero de 2012 01:00:00 Hora estándar de Europa Central
H A Ddateformat_timezone_arg_variations2.phpt39 sábado%S, 31 de diciembre de 2011 23:00:00 Hora estándar de las Azores
40 domingo%S, 1 de enero de 2012 01:00:00 Hora estándar de Europa central
41 domingo%S, 1 de enero de 2012 00:00:00 Hora%S de Europa occidental
42 sábado%S, 31 de diciembre de 2011 19:00:00 Hora estándar oriental
43 domingo%S, 1 de enero de 2012 01:00:00 Hora estándar de Europa central
44 domingo%S, 1 de enero de 2012 00:00:00 Hora%S de Europa occidental
45 domingo%S, 1 de enero de 2012 01:00:00 Hora estándar de Europa central
H A Ddateformat_timezone_arg_variations3.phpt40 sábado%S 31 de diciembre de 2011, 23:00:00 (Hora estándar de las Azores)
41 domingo%S 1 de enero de 2012, 1:00:00 (Hora estándar de Europa central)
42 domingo%S 1 de enero de 2012, 0:00:00 (Hora%S estándar de Europa occidental)
43 sábado%S 31 de diciembre de 2011, 19:00:00 (Hora estándar oriental)
44 domingo%S 1 de enero de 2012, 1:00:00 (Hora estándar de Europa central)
45 domingo%S 1 de enero de 2012, 0:00:00 (Hora%S estándar de Europa occidental)
46 domingo%S 1 de enero de 2012, 1:00:00 (Hora estándar de Europa central)
/PHP-8.1/Zend/tests/
H A Dgh10709_3.phpt6 class S {
11 return 'S';
13 throw new \Exception('Thrown from S');
18 const S = new S();
21 public $prop = A::C . S;
38 Fatal error: Uncaught Exception: Thrown from S in %s:%d
40 #0 %s(%d): S->__toString()
/PHP-8.1/ext/pcre/pcre2lib/sljit/
H A DsljitNativeMIPS_32.c81 return push_inst(compiler, ADDU | S(src2) | TA(0) | D(dst), DR(dst)); in emit_single_op()
96 return push_inst(compiler, ANDI | S(src2) | T(dst) | IMM(0xff), DR(dst)); in emit_single_op()
127 FAIL_IF(push_inst(compiler, NOR | S(src2) | T(src2) | D(dst), DR(dst))); in emit_single_op()
136 FAIL_IF(push_inst(compiler, CLZ | S(src2) | T(dst) | D(dst), DR(dst))); in emit_single_op()
149 FAIL_IF(push_inst(compiler, ADDIU | S(dst) | T(dst) | IMM(1), DR(dst))); in emit_single_op()
150 FAIL_IF(push_inst(compiler, BGEZ | S(TMP_REG1) | IMM(-2), UNMOVABLE_INS)); in emit_single_op()
372 return push_inst(compiler, MUL | S(src1) | T(src2) | D(dst), DR(dst)); in emit_single_op()
374 FAIL_IF(push_inst(compiler, MULT | S(src1) | T(src2), MOVABLE_INS)); in emit_single_op()
380 FAIL_IF(push_inst(compiler, MUL | S(src1) | T(src2) | D(dst), DR(dst))); in emit_single_op()
383 FAIL_IF(push_inst(compiler, MULT | S(src1) | T(src2), MOVABLE_INS)); in emit_single_op()
[all …]
H A DsljitNativeMIPS_64.c135 FAIL_IF(push_inst(compiler, op_norm | S(src1) | T(src2) | D(dst), DR(dst))); \
157 FAIL_IF(push_inst(compiler, ins | S(src2) | T(src1) | D(dst), DR(dst))); \
182 return push_inst(compiler, ANDI | S(src2) | T(dst) | IMM(0xff), DR(dst)); in emit_single_op()
197 return push_inst(compiler, ANDI | S(src2) | T(dst) | IMM(0xffff), DR(dst)); in emit_single_op()
218 FAIL_IF(push_inst(compiler, NOR | S(src2) | T(src2) | D(dst), DR(dst))); in emit_single_op()
241 FAIL_IF(push_inst(compiler, BGEZ | S(TMP_REG1) | IMM(-2), UNMOVABLE_INS)); in emit_single_op()
466 return push_inst(compiler, MUL | S(src1) | T(src2) | D(dst), DR(dst)); in emit_single_op()
467 FAIL_IF(push_inst(compiler, DMULT | S(src1) | T(src2), MOVABLE_INS)); in emit_single_op()
522 return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst)); in emit_const()
596 ins = DADDU | S(word_arg_count) | TA(0) | D(arg_count); in call_with_args()
[all …]
H A DsljitNativePPC_64.c86 return push_inst(compiler, ORI | S(reg) | A(reg) | tmp2); in load_immediate()
113 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)); in load_immediate()
118 (RLDICL | S(src) | A(dst) | ((from) << 6) | (1 << 5))
123 FAIL_IF(push_inst(compiler, EXTSW | S(src2) | A(TMP_REG2))); \
153 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
161 return push_inst(compiler, EXTSW | S(src2) | A(dst)); in emit_single_op()
174 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
178 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
189 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
218 return push_inst(compiler, CNTLZW | S(src2) | A(dst)); in emit_single_op()
[all …]
H A DsljitNativePPC_32.c35 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm)); in load_immediate()
42 (RLWINM | S(src) | A(dst) | ((from) << 6) | (31 << 1))
54 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
62 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
66 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
77 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
96 return push_inst(compiler, CNTLZW | S(src2) | A(dst)); in emit_single_op()
189 return push_inst(compiler, ANDI | S(src1) | A(dst) | compiler->imm); in emit_single_op()
200 return push_inst(compiler, ORI | S(src1) | A(dst) | compiler->imm); in emit_single_op()
204 return push_inst(compiler, ORIS | S(src1) | A(dst) | compiler->imm); in emit_single_op()
[all …]
/PHP-8.1/ext/pdo_dblib/
H A Ddblib_stmt.c97 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_cursor_closer()
111 pdo_dblib_err_dtor(&S->err); in pdo_dblib_stmt_dtor()
113 efree(S); in pdo_dblib_stmt_dtor()
121 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_next_rowset_no_cancel()
153 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_next_rowset()
174 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_execute()
203 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_fetch()
222 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_describe()
261 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_should_stringify_col()
347 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_get_col()
[all …]
/PHP-8.1/ext/pdo_firebird/tests/
H A Dbug_72931.phpt14 $S = $dbh->prepare('insert into tablea (id) values (1) returning id');
15 $S->execute();
16 $D = $S->fetch(PDO::FETCH_NUM);
18 unset($S);
/PHP-8.1/sapi/fuzzer/corpus/unserialize/
H A Dleak_176391 a:7:{i:6;i:0;S:1:" ";i:1;i:6;a:8:{i:0;i:4;S:1:" ";i:2;i:9;R:4;S:1:" ";a:2:{i:5;O:13:"RegexIterator"…

Completed in 65 milliseconds

1234567891011