Home
last modified time | relevance | path

Searched refs:fp (Results 26 – 50 of 909) sorted by path

12345678910>>...37

/PHP-5.5/ext/bz2/tests/
H A Dbz2_filter_decompress.phpt9 $fp = fopen('php://stdout', 'w');
10 stream_filter_append($fp, 'convert.base64-decode', STREAM_FILTER_WRITE);
11 stream_filter_append($fp, 'bzip2.decompress', STREAM_FILTER_WRITE);
12 fwrite($fp, $text);
13 fclose($fp);
/PHP-5.5/ext/ctype/tests/
H A Dctype_alnum_variation1.phpt38 $fp = fopen(__FILE__, "r");
86 /*25*/ $fp
97 fclose($fp);
H A Dctype_alpha_variation1.phpt38 $fp = fopen(__FILE__, "r");
86 /*25*/ $fp
97 fclose($fp);
H A Dctype_cntrl_variation1.phpt38 $fp = fopen(__FILE__, "r");
87 /*25*/ $fp
98 fclose($fp);
H A Dctype_digit_variation1.phpt38 $fp = fopen(__FILE__, "r");
86 /*25*/ $fp
97 fclose($fp);
H A Dctype_graph_variation1.phpt38 $fp = fopen(__FILE__, "r");
86 /*25*/ $fp
97 fclose($fp);
H A Dctype_lower_variation1.phpt38 $fp = fopen(__FILE__, "r");
86 /*25*/ $fp
97 fclose($fp);
H A Dctype_print_variation1.phpt38 $fp = fopen(__FILE__, "r");
86 /*25*/ $fp
97 fclose($fp);
H A Dctype_punct_variation1.phpt39 $fp = fopen(__FILE__, "r");
87 /*25*/ $fp
98 fclose($fp);
H A Dctype_space_variation1.phpt38 $fp = fopen(__FILE__, "r");
86 /*25*/ $fp
97 fclose($fp);
H A Dctype_upper_variation1.phpt38 $fp = fopen(__FILE__, "r");
86 /*25*/ $fp
97 fclose($fp);
H A Dctype_xdigit_variation1.phpt38 $fp = fopen(__FILE__, "r");
86 /*25*/ $fp
97 fclose($fp);
/PHP-5.5/ext/curl/
H A Dinterface.c251 ch->handlers->read->fp = 0; in _php_curl_verify_handlers()
278 ch->handlers->write->fp = 0; in _php_curl_verify_handlers()
1533 if (t->fp) { in curl_read()
2035 dupch->handlers->write->fp = ch->handlers->write->fp; in PHP_FUNCTION()
2036 dupch->handlers->write_header->fp = ch->handlers->write_header->fp; in PHP_FUNCTION()
2037 dupch->handlers->read->fp = ch->handlers->read->fp; in PHP_FUNCTION()
2379 FILE *fp = NULL; in _php_curl_setopt() local
2393 if (!fp) { in _php_curl_setopt()
2413 ch->handlers->write->fp = fp; in _php_curl_setopt()
2434 ch->handlers->write_header->fp = fp; in _php_curl_setopt()
[all …]
H A Dphp_curl.h123 FILE *fp; member
132 FILE *fp; member
/PHP-5.5/ext/curl/tests/
H A Dbug45161.phpt21 $fp = fopen('/dev/null', 'w');
27 curl_setopt($ch, CURLOPT_FILE, $fp);
36 curl_setopt($ch, CURLOPT_FILE, $fp);
45 fclose($fp);
46 unset($fp);
H A Dbug48203.phpt8 $fp = fopen(dirname(__FILE__) . '/bug48203.tmp', 'w');
13 curl_setopt($ch, CURLOPT_STDERR, $fp);
16 fclose($fp); // <-- premature close of $fp caused a crash!
H A Dbug48203_multi.phpt11 $fp = fopen(dirname(__FILE__) . '/bug48203.tmp', 'w');
18 $curl_option => $fp,
34 fclose($fp); // <-- premature close of $fp caused a crash!
H A Dbug48207.phpt38 $fp = fopen($tempfile, "r"); // Opening 'fubar' with the incorrect readonly flag
39 curl_setopt($ch, CURLOPT_FILE, $fp);
H A Dbug54798.phpt11 $fp = fopen(dirname(__FILE__) . '/bug54798.tmp', 'w+');
24 curl_setopt($ch, $curl_option, $fp);
29 fclose($fp); // <-- premature close of $fp caused a crash!
H A Dcurl_file_deleted_before_curl_close.phpt2 Memory corruption error if fp of just created file is closed before curl_close.
H A Dcurl_ftp_pasv.phpt18 $fp = fopen ( __FILE__ , "r" );
46 curl_setopt ( $ch , CURLOPT_INFILE, $fp );
H A Dcurl_multi_segfault.phpt18 $fp = fopen ( __FILE__ , "r" );
H A Dcurl_reset.phpt13 $fp = fopen($log_file, 'w+');
14 fwrite($fp, "test");
15 fclose($fp);
H A Dcurl_write_callback.phpt21 $fp = fopen($log_file, 'w+');
22 fwrite($fp, "test");
23 fclose($fp);
H A Dcurl_write_file.phpt16 $fp = fopen($log_file, 'w+');
17 fwrite($fp, "test");
18 fclose($fp);

Completed in 46 milliseconds

12345678910>>...37