Home
last modified time | relevance | path

Searched refs:PHP_STREAM_COPY_ALL (Results 1 – 25 of 26) sorted by relevance

12

/PHP-5.5/main/streams/
H A Dcast.c282 int retcopy = php_stream_copy_to_stream_ex(stream, newstream, PHP_STREAM_COPY_ALL, NULL); in _php_stream_cast()
406 if (php_stream_copy_to_stream_ex(origstream, *newstream, PHP_STREAM_COPY_ALL, NULL) != SUCCESS) { in _php_stream_make_seekable()
H A Dstreams.c1438 if (maxlen == PHP_STREAM_COPY_ALL) { in _php_stream_copy_to_mem()
1514 if (maxlen == PHP_STREAM_COPY_ALL) { in _php_stream_copy_to_stream_ex()
/PHP-5.5/ext/dba/libinifile/
H A Dinifile.c500 if (!php_stream_copy_to_stream_ex(dba->fp, fp_tmp, PHP_STREAM_COPY_ALL, NULL)) { in inifile_delete_replace_append()
541 if (!php_stream_copy_to_stream_ex(fp_tmp, dba->fp, PHP_STREAM_COPY_ALL, NULL)) { in inifile_delete_replace_append()
/PHP-5.5/ext/phar/
H A Dtar.c1013 len = PHP_STREAM_COPY_ALL; in phar_tar_flush()
1314 phar_stream_copy_to_stream(newfile, phar->fp, PHP_STREAM_COPY_ALL, NULL); in phar_tar_flush()
1323 phar_stream_copy_to_stream(newfile, phar->fp, PHP_STREAM_COPY_ALL, NULL); in phar_tar_flush()
1334 phar_stream_copy_to_stream(newfile, phar->fp, PHP_STREAM_COPY_ALL, NULL); in phar_tar_flush()
1341 phar_stream_copy_to_stream(newfile, phar->fp, PHP_STREAM_COPY_ALL, NULL); in phar_tar_flush()
H A Dphar.c1640 if (SUCCESS != phar_stream_copy_to_stream(fp, temp, PHP_STREAM_COPY_ALL, NULL)) {
1682 if (SUCCESS != phar_stream_copy_to_stream(fp, temp, PHP_STREAM_COPY_ALL, NULL)) {
2652 len = PHP_STREAM_COPY_ALL;
3278 phar_stream_copy_to_stream(newfile, phar->fp, PHP_STREAM_COPY_ALL, NULL);
3287 phar_stream_copy_to_stream(newfile, phar->fp, PHP_STREAM_COPY_ALL, NULL);
3294 phar_stream_copy_to_stream(newfile, phar->fp, PHP_STREAM_COPY_ALL, NULL);
H A Dzip.c1240 len = PHP_STREAM_COPY_ALL; in phar_zip_flush()
1436 int ret = phar_stream_copy_to_stream(pass.centralfp, pass.filefp, PHP_STREAM_COPY_ALL, &clen); in phar_zip_flush()
1506 phar_stream_copy_to_stream(pass.filefp, phar->fp, PHP_STREAM_COPY_ALL, NULL); in phar_zip_flush()
H A Dutil.c1562 …if (!pfp || !(pubkey_len = php_stream_copy_to_mem(pfp, (void **) &pubkey, PHP_STREAM_COPY_ALL, 0))…
1564 …if (!pfp || !(pubkey_len = php_stream_copy_to_mem(pfp, &pubkey, PHP_STREAM_COPY_ALL, 0)) || !pubke…
H A Dfunc_interceptors.c103 long maxlen = PHP_STREAM_COPY_ALL; in PHAR_FUNC()
H A Dphar_object.c1711 phar_stream_copy_to_stream(fp, p_obj->fp, PHP_STREAM_COPY_ALL, &contents_len); in phar_build()
3662 phar_stream_copy_to_stream(contents_file, data->fp, PHP_STREAM_COPY_ALL, &contents_len); in phar_add_file()
/PHP-5.5/ext/pdo_sqlite/
H A Dsqlite_statement.c136 &Z_STRVAL_P(param->parameter), PHP_STREAM_COPY_ALL, 0); in pdo_sqlite_stmt_param_hook()
/PHP-5.5/ext/standard/
H A Dexec.c550 total_readbytes = php_stream_copy_to_mem(stream, &ret, PHP_STREAM_COPY_ALL, 0);
H A Dfile.c524 long maxlen = PHP_STREAM_COPY_ALL; in PHP_FUNCTION()
626 if (php_stream_copy_to_stream_ex(srcstream, stream, PHP_STREAM_COPY_ALL, &len) != SUCCESS) { in PHP_FUNCTION()
755 if ((target_len = php_stream_copy_to_mem(stream, &target_buf, PHP_STREAM_COPY_ALL, 0))) { in PHP_FUNCTION()
1730 ret = php_stream_copy_to_stream_ex(srcstream, deststream, PHP_STREAM_COPY_ALL, NULL); in php_copy_file_ctx()
H A Dstreamsfuncs.c408 long maxlen = PHP_STREAM_COPY_ALL, in PHP_FUNCTION()
459 long maxlen = PHP_STREAM_COPY_ALL, pos = 0; in PHP_FUNCTION()
H A Dimage.c222 slength = php_stream_copy_to_mem(stream, &bufz, PHP_STREAM_COPY_ALL, 0); in php_handle_swc()
/PHP-5.5/
H A DREADME.STREAMS110 PHP_STREAM_COPY_ALL as the maxlen parameter, otherwise maxlen indicates the
123 data remaining on the stream if you set maxlen to PHP_STREAM_COPY_ALL.
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_auth.c551 if ((len = php_stream_copy_to_mem(stream, &key_str, PHP_STREAM_COPY_ALL, 0)) >= 0 ) { in mysqlnd_sha256_get_rsa_key()
/PHP-5.5/ext/pdo_pgsql/
H A Dpgsql_statement.c327 …if ((len = php_stream_copy_to_mem(stm, &Z_STRVAL_P(param->parameter), PHP_STREAM_COPY_ALL, 0)) > 0… in pgsql_stmt_param_hook()
/PHP-5.5/ext/pdo/
H A Dpdo_sql_parser.c568 len = php_stream_copy_to_mem(stm, &buf, PHP_STREAM_COPY_ALL, 0); in pdo_parse_params()
H A Dpdo_sql_parser.re210 len = php_stream_copy_to_mem(stm, &buf, PHP_STREAM_COPY_ALL, 0);
H A Dpdo_stmt.c602 len = php_stream_copy_to_mem((php_stream*)value, &buf, PHP_STREAM_COPY_ALL, 0); in fetch_value()
/PHP-5.5/main/
H A Dphp_streams.h435 #define PHP_STREAM_COPY_ALL ((size_t)-1) macro
/PHP-5.5/ext/pdo_mysql/
H A Dmysql_statement.c518 &Z_STRVAL_P(param->parameter), PHP_STREAM_COPY_ALL, 0); in pdo_mysql_stmt_param_hook()
/PHP-5.5/ext/wddx/
H A Dwddx.c1358 payload_len = php_stream_copy_to_mem(stream, &payload, PHP_STREAM_COPY_ALL, 0); in PHP_FUNCTION()
/PHP-5.5/ext/tidy/
H A Dtidy.c645 if ((*len = (int) php_stream_copy_to_mem(stream, (void*) &data, PHP_STREAM_COPY_ALL, 0)) == 0) { in php_tidy_file_to_mem()
/PHP-5.5/ext/sqlite3/
H A Dsqlite3.c1548 blength = php_stream_copy_to_mem(stream, (void *)&buffer, PHP_STREAM_COPY_ALL, 0);

Completed in 123 milliseconds

12