Home
last modified time | relevance | path

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

12345678910

/PHP-5.5/ext/pdo_mysql/
H A Dmysql_statement.c107 if (!S->stmt && S->current_data) { in pdo_mysql_stmt_dtor()
112 efree(S); in pdo_mysql_stmt_dtor()
151 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_fill_stmt_from_result()
170 if (mysql_stmt_bind_param(S->stmt, S->params) || mysql_stmt_execute(S->stmt)) { in pdo_mysql_stmt_execute_prepared_libmysql()
186 S->result = mysql_stmt_result_metadata(S->stmt); in pdo_mysql_stmt_execute_prepared_libmysql()
189 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_execute_prepared_libmysql()
249 S->bound_result[i].is_null = &S->out_null[i]; in pdo_mysql_stmt_execute_prepared_libmysql()
300 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_execute_prepared_mysqlnd()
385 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_next_rowset()
633 if (!S->stmt && S->current_data) {
[all …]
/PHP-5.5/ext/pdo_pgsql/
H A Dpgsql_statement.c51 if (S->result) { in pgsql_stmt_dtor()
90 if (S->query) { in pgsql_stmt_dtor()
109 if(S->cols) { in pgsql_stmt_dtor()
110 efree(S->cols); in pgsql_stmt_dtor()
113 efree(S); in pgsql_stmt_dtor()
125 if(S->result) { in pgsql_stmt_execute()
168 S->result = PQprepare(H->server, S->stmt_name, S->query, in pgsql_stmt_execute()
203 S->result = PQexecPrepared(H->server, S->stmt_name, in pgsql_stmt_execute()
406 S->result = PQexec(S->H->server, q); in pgsql_stmt_fetch()
445 S->cols[colno].pgsql_type = PQftype(S->result, colno); in pgsql_stmt_describe()
[all …]
/PHP-5.5/ext/pdo_sqlite/
H A Dsqlite_statement.c38 if (S->stmt) { in pdo_sqlite_stmt_dtor()
40 S->stmt = NULL; in pdo_sqlite_stmt_dtor()
42 efree(S); in pdo_sqlite_stmt_dtor()
54 S->done = 0; in pdo_sqlite_stmt_execute()
65 S->done = 1; in pdo_sqlite_stmt_execute()
87 S->done = 1; in pdo_sqlite_stmt_param_hook()
192 if (!S->stmt) { in pdo_sqlite_stmt_fetch()
199 if (S->done) { in pdo_sqlite_stmt_fetch()
208 S->done = 1; in pdo_sqlite_stmt_fetch()
252 if (!S->stmt) { in pdo_sqlite_stmt_get_col()
[all …]
/PHP-5.5/ext/pdo_oci/
H A Doci_statement.c64 if (S->stmt) { in oci_stmt_dtor()
73 if (S->err) { in oci_stmt_dtor()
96 if (S->cols) { in oci_stmt_dtor()
112 efree(S); in oci_stmt_dtor()
127 (S->stmt, OCI_HTYPE_STMT, &S->stmt_type, 0, OCI_ATTR_STMT_TYPE, S->err)); in oci_stmt_execute()
146 STMT_CALL(OCIStmtExecute, (S->H->svc, S->stmt, S->err, in oci_stmt_execute()
456 S->last_err = OCIStmtFetch2(S->stmt, S->err, 1, ociori, offset, OCI_DEFAULT); in oci_stmt_fetch()
458 S->last_err = OCIStmtFetch(S->stmt, S->err, 1, OCI_FETCH_NEXT, OCI_DEFAULT); in oci_stmt_fetch()
595 STMT_CALL(OCIDefineByPos, (S->stmt, &S->cols[colno].def, S->err, colno+1, in oci_stmt_describe()
596 S->cols[colno].data, S->cols[colno].datalen, dtype, &S->cols[colno].indicator, in oci_stmt_describe()
[all …]
/PHP-5.5/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 …]
H A Dstudy.phpt6 var_dump(preg_match('/(?:(?:(?:(?:(?:(.))))))/ S', 'aeiou', $dump));
11 var_dump(preg_match('/(?>..)((?:(?>.)|.|.|.|u))/S', 'aeiou', $dump));
15 var_dump(preg_match('/^aeiou$/S', 'aeiou', $dump));
17 var_dump(preg_match('/aeiou/S', 'aeiou', $dump));
/PHP-5.5/ext/pdo_odbc/
H A Dodbc_stmt.c78 S->convbuf = erealloc(S->convbuf, S->convbufsize); in pdo_odbc_utf82ucs2()
110 S->convbuf = erealloc(S->convbuf, S->convbufsize); in pdo_odbc_ucs22utf8()
128 if (S->cols) { in free_cols()
136 efree(S->cols); in free_cols()
137 S->cols = NULL; in free_cols()
154 if (S->convbuf) { in odbc_stmt_dtor()
157 efree(S); in odbc_stmt_dtor()
199 SQLPutData(S->stmt, S->convbuf, ulen); in odbc_stmt_execute()
557 rc = SQLDescribeCol(S->stmt, colno+1, S->cols[colno].colname, in odbc_stmt_describe()
583 S->cols[colno].is_unicode = pdo_odbc_sqltype_is_unicode(S, S->cols[colno].coltype); in odbc_stmt_describe()
[all …]
H A Dodbc_driver.c38 pdo_odbc_stmt *S = NULL; in pdo_odbc_fetch_error_func() local
43 einfo = &S->einfo; in pdo_odbc_fetch_error_func()
67 pdo_odbc_stmt *S = NULL; in pdo_odbc_error() local
73 einfo = &S->einfo; in pdo_odbc_error()
78 statement = S->stmt; in pdo_odbc_error()
149 pdo_odbc_stmt *S = ecalloc(1, sizeof(*S)); in odbc_handle_preparer() local
155 S->H = H; in odbc_handle_preparer()
156 S->assume_utf8 = H->assume_utf8; in odbc_handle_preparer()
169 efree(S); in odbc_handle_preparer()
176 efree(S); in odbc_handle_preparer()
[all …]
/PHP-5.5/ext/pdo_firebird/
H A Dfirebird_statement.c57 if (isc_dsql_free_statement(S->H->isc_status, &S->stmt, DSQL_drop)) { in firebird_stmt_dtor()
68 efree(S->fetch_buf); in firebird_stmt_dtor()
74 if (S->in_sqlda) { in firebird_stmt_dtor()
80 efree(S); in firebird_stmt_dtor()
97 …if ((*S->name || S->cursor_open) && isc_dsql_free_statement(H->isc_status, &S->stmt, DSQL_close)) { in firebird_stmt_execute()
141 *S->name = 0; in firebird_stmt_execute()
143 S->exhausted = !S->cursor_open; in firebird_stmt_execute()
454 XSQLDA *sqlda = param->is_param ? S->in_sqlda : &S->out_sqlda; in firebird_stmt_param_hook()
647 strlcpy(S->name, Z_STRVAL_P(val), sizeof(S->name)); in firebird_stmt_set_attribute()
678 …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-5.5/ext/zip/lib/
H A Dzip_err_str.c44 #define S ZIP_ET_SYS macro
50 S,
51 S,
52 S,
53 S,
54 S,
59 S,
60 S,
70 S,
/PHP-5.5/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";
88 ===S:4,S===
109 ===S:3,S===
113 ===S:1,C===
117 ===S:-2,C===
125 ===S:3,S===
129 ===S:10,C===
137 ===S:0,E===
[all …]
/PHP-5.5/ext/intl/tests/
H A Drbbiter_getBinaryRules_basic.phpt13 \$S = [.;,:];
17 \$S+ {42};
20 \$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_getRules_basic.phpt14 \$S = [.;,:];
18 \$S+ {42};
21 \$S+ {42};
31 string(128) "$LN = [[:letter:] [:number:]];$S = [.;,:];!!forward;$LN+ {1};$S+ {42};!!reverse;$LN+ {…
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)
H A Dcollation_customization.phpt42 $res .= cmp_array( $coll, array( 'di Silva', 'Di Silva', 'diSilva', 'U.S.A.', 'USA' ) );
46 $res .= cmp_array( $coll, array( 'di Silva', 'diSilva', 'Di Silva', 'U.S.A.', 'USA' ) );
50 $res .= cmp_array( $coll, array( 'di Silva', 'diSilva', 'Di Silva', 'U.S.A.', 'USA' ) );
68 di Silva < Di Silva < diSilva < U.S.A. < USA
69 di Silva = diSilva < Di Silva < U.S.A. = USA
70 di Silva < diSilva < Di Silva < U.S.A. < USA
H A Ddateformat_create_cal_arg.phpt46 domingo%S 1 de enero de 2012 00:00:00 GMT
47 domingo%S 8 de Safar de 1433 00:00:00 GMT
48 domingo%S 1 de enero de 2012 01:00:00 Hora estándar de Europa Central
49 sábado%S 31 de diciembre de 2011 d.C. 23:00:00 Hora %Sde las Azores
50 sábado%S 7 de Safar de 1433 AH 23:00:00 Hora %Sde las Azores
51 domingo%S 8 de Safar de 1433 AH 00:00:00 GMT
52 domingo%S 1 de enero de 2012 00:00:00 GMT
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeMIPS_32.c66 FAIL_IF(push_inst(compiler, op_v | S(src2) | T(src1) | D(dst), DR(dst))); \
79 return push_inst(compiler, ADDU | S(src2) | TA(0) | D(dst), DR(dst)); in emit_single_op()
94 return push_inst(compiler, ANDI | S(src2) | T(dst) | IMM(0xff), DR(dst)); in emit_single_op()
123 FAIL_IF(push_inst(compiler, NOR | S(src2) | T(src2) | D(dst), DR(dst))); in emit_single_op()
132 FAIL_IF(push_inst(compiler, CLZ | S(src2) | T(dst) | D(dst), DR(dst))); in emit_single_op()
145 FAIL_IF(push_inst(compiler, ADDIU | S(dst) | T(dst) | IMM(1), DR(dst))); in emit_single_op()
146 FAIL_IF(push_inst(compiler, BGEZ | S(TMP_REG1) | IMM(-2), UNMOVABLE_INS)); in emit_single_op()
212 FAIL_IF(push_inst(compiler, ADDU | S(src1) | T(src2) | D(dst), DR(dst))); in emit_single_op()
303 return push_inst(compiler, MUL | S(src1) | T(src2) | D(dst), DR(dst)); in emit_single_op()
305 FAIL_IF(push_inst(compiler, MULT | S(src1) | T(src2), MOVABLE_INS)); in emit_single_op()
[all …]
H A DsljitNativePPC_64.c89 return push_inst(compiler, ORI | S(reg) | A(reg) | tmp2); in load_immediate()
116 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)); in load_immediate()
121 (RLDICL | S(src) | A(dst) | ((from) << 6) | (1 << 5))
126 FAIL_IF(push_inst(compiler, EXTSW | S(src2) | A(TMP_REG2))); \
156 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
164 return push_inst(compiler, EXTSW | S(src2) | A(dst)); in emit_single_op()
177 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
181 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
192 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
246 return push_inst(compiler, MTXER | S(0)); in emit_single_op()
[all …]
H A DsljitNativeMIPS_64.c129 FAIL_IF(push_inst(compiler, op_imm | S(src1) | T(dst) | IMM(src2), DR(dst))); \
135 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))); \
181 return push_inst(compiler, ANDI | S(src2) | T(dst) | IMM(0xff), DR(dst)); in emit_single_op()
195 return push_inst(compiler, ANDI | S(src2) | T(dst) | IMM(0xffff), DR(dst)); in emit_single_op()
215 FAIL_IF(push_inst(compiler, NOR | S(src2) | T(src2) | D(dst), DR(dst))); in emit_single_op()
233 FAIL_IF(push_inst(compiler, BEQ | S(TMP_REG1) | TA(0) | IMM(5), UNMOVABLE_INS)); in emit_single_op()
238 FAIL_IF(push_inst(compiler, BGEZ | S(TMP_REG1) | IMM(-2), UNMOVABLE_INS)); in emit_single_op()
396 return push_inst(compiler, MUL | S(src1) | T(src2) | D(dst), DR(dst)); in emit_single_op()
397 FAIL_IF(push_inst(compiler, DMULT | S(src1) | T(src2), MOVABLE_INS)); 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()
95 return push_inst(compiler, CNTLZW | RC(flags) | S(src2) | A(dst)); in emit_single_op()
125 return push_inst(compiler, MTXER | S(0)); in emit_single_op()
160 return push_inst(compiler, MTXER | S(0)); in emit_single_op()
185 return push_inst(compiler, ORI | S(src1) | A(dst) | compiler->imm); in emit_single_op()
[all …]
/PHP-5.5/ext/pdo_dblib/
H A Ddblib_stmt.c100 pdo_dblib_stmt *S = (pdo_dblib_stmt*)stmt->driver_data; in pdo_dblib_stmt_cursor_closer() local
101 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_cursor_closer()
114 pdo_dblib_stmt *S = (pdo_dblib_stmt*)stmt->driver_data; in pdo_dblib_stmt_dtor() local
119 efree(S); in pdo_dblib_stmt_dtor()
127 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_next_rowset()
150 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_execute()
153 dbsetuserdata(H->link, (BYTE*) &S->err); in pdo_dblib_stmt_execute()
180 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_fetch()
199 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_describe()
220 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_get_col()
[all …]
/PHP-5.5/ext/snmp/tests/
H A Dsnmp-object.phpt158 string(%d) "%S"
165 string(%d) "%S"
168 string(%d) "%S"
169 string(%d) "%S"
178 string(%d) "%S"
179 string(%d) "%S"
184 string(%d) "%S"
185 string(%d) "%S"
190 string(%d) "%S"
191 string(%d) "%S"
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dpack.phpt43 print_r(unpack("S", pack("S", 65534)));
44 print_r(unpack("S", pack("S", 65537)));
45 print_r(unpack("S", pack("S", 0)));
46 print_r(unpack("S", pack("S", -1000)));
47 print_r(unpack("S", pack("S", -64434)));
48 print_r(unpack("S", pack("S", -65535)));

Completed in 70 milliseconds

12345678910