Home
last modified time | relevance | path

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

1234567

/PHP-5.3/ext/pdo_mysql/
H A Dmysql_statement.c113 if (!S->stmt && S->current_data) { in pdo_mysql_stmt_dtor()
118 efree(S); in pdo_mysql_stmt_dtor()
157 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_fill_stmt_from_result()
176 if (mysql_stmt_bind_param(S->stmt, S->params) || mysql_stmt_execute(S->stmt)) { in pdo_mysql_stmt_execute_prepared_libmysql()
192 S->result = mysql_stmt_result_metadata(S->stmt); in pdo_mysql_stmt_execute_prepared_libmysql()
195 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_execute_prepared_libmysql()
255 S->bound_result[i].is_null = &S->out_null[i]; in pdo_mysql_stmt_execute_prepared_libmysql()
306 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_execute_prepared_mysqlnd()
395 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_next_rowset()
656 if (!S->stmt && S->current_data) {
[all …]
H A Dmysql_driver.c69 einfo = &S->einfo; in _pdo_mysql_error()
76 if (S && S->stmt) { in _pdo_mysql_error()
117 if (S && S->stmt) { in _pdo_mysql_error()
148 einfo = &S->einfo; in pdo_mysql_fetch_error_func()
201 S->H = H; in mysql_handle_preparer()
254 S->num_params = mysql_stmt_param_count(S->stmt); in mysql_handle_preparer()
256 if (S->num_params) { in mysql_handle_preparer()
259 S->params = NULL; in mysql_handle_preparer()
261 S->params = ecalloc(S->num_params, sizeof(MYSQL_BIND)); in mysql_handle_preparer()
262 S->in_null = ecalloc(S->num_params, sizeof(my_bool)); in mysql_handle_preparer()
[all …]
/PHP-5.3/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()
405 S->result = PQexec(S->H->server, q); in pgsql_stmt_fetch()
444 S->cols[colno].pgsql_type = PQftype(S->result, colno); in pgsql_stmt_describe()
[all …]
/PHP-5.3/ext/pdo_dblib/
H A Ddblib_stmt.c42 pdo_dblib_colval *val = &S->rows[i*S->ncols] + j; in free_rows()
51 S->nrows = 0; in free_rows()
58 if (S->rows) { in pdo_dblib_stmt_dtor()
61 if (S->cols) { in pdo_dblib_stmt_dtor()
64 efree(S); in pdo_dblib_stmt_dtor()
112 S->cols = ecalloc(S->ncols, sizeof(pdo_dblib_col));
149 S->rows = erealloc(S->rows, arows * size);
152 pdo_dblib_colval *val = &S->rows[S->nrows * S->ncols + i];
213 S->nrows++;
245 if (++S->current < S->nrows) {
[all …]
/PHP-5.3/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()
186 if (!S->stmt) { in pdo_sqlite_stmt_fetch()
193 if (S->done) { in pdo_sqlite_stmt_fetch()
202 S->done = 1; in pdo_sqlite_stmt_fetch()
246 if (!S->stmt) { in pdo_sqlite_stmt_get_col()
[all …]
/PHP-5.3/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()
450 S->last_err = OCIStmtFetch2(S->stmt, S->err, 1, ociori, offset, OCI_DEFAULT); in oci_stmt_fetch()
452 S->last_err = OCIStmtFetch(S->stmt, S->err, 1, OCI_FETCH_NEXT, OCI_DEFAULT); in oci_stmt_fetch()
589 STMT_CALL(OCIDefineByPos, (S->stmt, &S->cols[colno].def, S->err, colno+1, in oci_stmt_describe()
590 S->cols[colno].data, S->cols[colno].datalen, dtype, &S->cols[colno].indicator, in oci_stmt_describe()
[all …]
H A Doci_driver.c46 if (S->einfo.errmsg) { in pdo_oci_fetch_error_func()
47 einfo = &S->einfo; in pdo_oci_fetch_error_func()
66 pdo_oci_stmt *S = NULL; in _oci_error() local
70 S = (pdo_oci_stmt*)stmt->driver_data; in _oci_error()
71 einfo = &S->einfo; in _oci_error()
252 pdo_oci_stmt *S = ecalloc(1, sizeof(*S)); in oci_handle_preparer() local
263 S->exec_type = OCI_DEFAULT; in oci_handle_preparer()
266 S->H = H; in oci_handle_preparer()
277 efree(S); in oci_handle_preparer()
297 efree(S); in oci_handle_preparer()
[all …]
/PHP-5.3/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));
H A Ddollar_endonly.phpt6 var_dump(preg_match_all('/^\S+.+$/', "aeiou\n", $m));
9 var_dump(preg_match_all('/^\S+.+$/D', "aeiou\n", $m));
12 var_dump(preg_match_all('/^\S+\s$/D', "aeiou\n", $m));
H A D004.phpt6 …*(?:(=)[^,;]+)?((?:\s*,\s*\**\s*\w+(?:\[\s*\w*\s*\])?\s*(?:=[^,;]+)?)*)\s*;/S', 'unsigned int xpto…
9 var_dump(preg_match_all('/(?:\([^)]+\))?(&?)([\w>.()-]+(?:\[\w+\])?)\s*,?((?:\)*\s*=)?)/S', '&a, b,…
12 …se_parameters(?:_ex\s*\([^,]+,[^,]+|\s*\([^,]+),\s*"([^"]*)"\s*,\s*([^{;]*)/S', 'zend_parse_parame…
15 var_dump(preg_replace(array('@//.*@S', '@/\*.*\*/@SsUe'), array('', 'preg_replace("/[^\r\n]+/S", ""…
17 var_dump(preg_split('/PHP_(?:NAMED_)?(?:FUNCTION|METHOD)\s*\((\w+(?:,\s*\w+)?)\)/S', "PHP_FUNCTION(…
H A Dbug42298.phpt6 preg_match_all('/\S\S/u', $str, $m); var_dump($m);
7 preg_match_all('/\S{2}/u', $str, $m); var_dump($m);
/PHP-5.3/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()
551 rc = SQLDescribeCol(S->stmt, colno+1, S->cols[colno].colname, in odbc_stmt_describe()
577 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.3/ext/standard/tests/file/
H A Dstream_rfc2397_007.phpt20 echo "===S:4,S===\n";
40 echo "===S:3,S===\n";
56 echo "===S:3,S===\n";
87 ===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-5.3/ext/pdo_firebird/
H A Dfirebird_statement.c59 if (isc_dsql_free_statement(S->H->isc_status, &S->stmt, DSQL_drop)) { in firebird_stmt_dtor()
70 efree(S->fetch_buf); in firebird_stmt_dtor()
76 if (S->in_sqlda) { in firebird_stmt_dtor()
82 efree(S); in firebird_stmt_dtor()
99 …if ((*S->name || S->cursor_open) && isc_dsql_free_statement(H->isc_status, &S->stmt, DSQL_close)) { in firebird_stmt_execute()
143 *S->name = 0; in firebird_stmt_execute()
145 S->exhausted = !S->cursor_open; in firebird_stmt_execute()
456 XSQLDA *sqlda = param->is_param ? S->in_sqlda : &S->out_sqlda; in firebird_stmt_param_hook()
649 strlcpy(S->name, Z_STRVAL_P(val), sizeof(S->name)); in firebird_stmt_set_attribute()
680 …if ((*S->name || S->cursor_open) && isc_dsql_free_statement(S->H->isc_status, &S->stmt, DSQL_close… in firebird_stmt_cursor_closer()
[all …]
H A Dfirebird_driver.c141 pdo_firebird_stmt *S = NULL; in firebird_handle_preparer() local
162 S = ecalloc(1, sizeof(*S)-sizeof(XSQLDA) + XSQLDA_LENGTH(num_sqlda.sqld)); in firebird_handle_preparer()
163 S->H = H; in firebird_handle_preparer()
164 S->stmt = s; in firebird_handle_preparer()
168 S->named_params = np; in firebird_handle_preparer()
175 S->statement_type = result[3]; in firebird_handle_preparer()
198 stmt->driver_data = S; in firebird_handle_preparer()
211 if (S) { in firebird_handle_preparer()
212 if (S->in_sqlda) { in firebird_handle_preparer()
213 efree(S->in_sqlda); in firebird_handle_preparer()
[all …]
/PHP-5.3/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.3/ext/sqlite/
H A Dpdo_sqlite2.c67 if (S->vm) { in pdo_sqlite2_stmt_dtor()
73 S->vm = NULL; in pdo_sqlite2_stmt_dtor()
78 efree(S); in pdo_sqlite2_stmt_dtor()
95 S->einfo.errcode = sqlite_compile(S->H->db, stmt->active_query_string, &tail, &S->vm, &errmsg); in pdo_sqlite2_stmt_execute()
101 S->done = 0; in pdo_sqlite2_stmt_execute()
102 S->einfo.errcode = sqlite_step(S->vm, &S->ncols, &S->rowdata, &S->colnames); in pdo_sqlite2_stmt_execute()
112 S->einfo.errcode = sqlite_reset(S->vm, &errmsg); in pdo_sqlite2_stmt_execute()
140 if (!S->vm) { in pdo_sqlite2_stmt_fetch()
151 S->einfo.errcode = sqlite_step(S->vm, &S->ncols, &S->rowdata, &S->colnames); in pdo_sqlite2_stmt_fetch()
158 S->einfo.errcode = sqlite_reset(S->vm, &errmsg); in pdo_sqlite2_stmt_fetch()
[all …]
/PHP-5.3/ext/intl/tests/
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
/PHP-5.3/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)));
H A Dconvert_uuencode_basic.phpt46 string(8) "#,3(S
58 string(82) "M2&5R92!I<R!A('-I;7!L92!S=')I;F<@=&\@=&5S="!C;VYV97)T7W5U96YC
63 string(74) "M"2!4:&ES(%-T<FEN9R!C;VYT86EN<R`)"2!S;VUE(&-O;G1R;VP@8VAA<F%C
72 string(8) "#,3(S
84 string(82) "M7'0@5&AI<R!3=')I;F<@8V]N=&%I;G,@7'1<="!S;VUE(&-O;G1R;VP@8VAA
/PHP-5.3/ext/sqlite3/tests/
H A Dsqlite3_25_create_aggregate.phpt34 $db->createAggregate('S', 'sum_list_step', 'sum_list_finalize', 1);
36 print_r($db->querySingle("SELECT S(a), S(b) FROM test", true));
53 [S(a)] => 1,3,6,10,14
54 [S(b)] => -1,-3,-6,-10,-14
/PHP-5.3/ext/standard/
H A Dcrypt_blowfish.c77 BF_word S[4][0x100]; member
469 tmp1 = data.ctx.S[3][tmp1]; \
470 tmp2 = data.ctx.S[2][tmp2]; \
471 tmp3 = data.ctx.S[1][tmp3]; \
472 tmp3 += data.ctx.S[0][tmp4]; \
479 #define BF_INDEX(S, i) \ argument
539 ptr = data.ctx.S[0]; \
545 } while (ptr < &data.ctx.S[3][0xFF]);
701 memcpy(data.ctx.S, BF_init_state.S, sizeof(data.ctx.S)); in BF_crypt()
712 ptr = data.ctx.S[0]; in BF_crypt()
[all …]
/PHP-5.3/Zend/tests/
H A Doffset_string.phpt29 string(1) "S"
30 string(1) "S"
31 string(1) "S"
33 string(1) "S"

Completed in 66 milliseconds

1234567