Home
last modified time | relevance | path

Searched refs:fh (Results 1 – 25 of 34) sorted by relevance

12

/PHP-5.3/scripts/dev/generate-phpt/src/
H A DgtTestCaseWriter.php22 $fh = fopen($fileName, 'w');
23 fwrite ($fh, $string);
24 fclose($fh);
/PHP-5.3/main/
H A Dphp_ini.c374 zend_file_handle fh; in php_init_config() local
567 memset(&fh, 0, sizeof(fh)); in php_init_config()
581 if (fh.handle.fp) { in php_init_config()
589 if (!fh.handle.fp) { in php_init_config()
595 if (fh.handle.fp) { in php_init_config()
601 if (!fh.handle.fp) { in php_init_config()
603 if (fh.handle.fp) { in php_init_config()
616 if (fh.handle.fp) { in php_init_config()
617 fh.type = ZEND_HANDLE_FP; in php_init_config()
764 zend_file_handle fh; in php_parse_user_ini_file() local
[all …]
/PHP-5.3/Zend/
H A Dzend_stream.c306 switch (fh->type) {
311 fclose(fh->handle.fp);
315 if (fh->handle.stream.closer && fh->handle.stream.handle) {
316 fh->handle.stream.closer(fh->handle.stream.handle TSRMLS_CC);
318 fh->handle.stream.handle = NULL;
326 if (fh->opened_path) {
327 efree(fh->opened_path);
328 fh->opened_path = NULL;
330 if (fh->free_filename && fh->filename) {
331 efree(fh->filename);
[all …]
H A Dzend_ini_scanner.l172 static int init_ini_scanner(int scanner_mode, zend_file_handle *fh TSRMLS_DC) in init_ini_scanner()
182 SCNG(yy_in) = fh; in init_ini_scanner()
184 if (fh != NULL) { in init_ini_scanner()
185 ini_filename = zend_strndup(fh->filename, strlen(fh->filename)); in init_ini_scanner()
226 int zend_ini_open_file_for_scanning(zend_file_handle *fh, int scanner_mode TSRMLS_DC) in zend_ini_open_file_for_scanning() argument
231 if (zend_stream_fixup(fh, &buf, &size TSRMLS_CC) == FAILURE) { in zend_ini_open_file_for_scanning()
235 if (init_ini_scanner(scanner_mode, fh TSRMLS_CC) == FAILURE) { in zend_ini_open_file_for_scanning()
236 zend_file_handle_dtor(fh TSRMLS_CC); in zend_ini_open_file_for_scanning()
H A Dzend_ini_scanner.h32 int zend_ini_open_file_for_scanning(zend_file_handle *fh, int scanner_mode TSRMLS_DC);
H A Dzend_stream.h77 ZEND_API void zend_file_handle_dtor(zend_file_handle *fh TSRMLS_DC);
H A Dzend_ini_parser.y192 ZEND_API int zend_parse_ini_file(zend_file_handle *fh, zend_bool unbuffered_errors, int scanner_mod… in zend_parse_ini_file() argument
201 if (zend_ini_open_file_for_scanning(fh, scanner_mode TSRMLS_CC) == FAILURE) { in zend_parse_ini_file()
207 zend_file_handle_dtor(fh TSRMLS_CC); in zend_parse_ini_file()
H A Dzend_ini_scanner.c174 static int init_ini_scanner(int scanner_mode, zend_file_handle *fh TSRMLS_DC) in init_ini_scanner()
184 SCNG(yy_in) = fh; in init_ini_scanner()
186 if (fh != NULL) { in init_ini_scanner()
187 ini_filename = zend_strndup(fh->filename, strlen(fh->filename)); in init_ini_scanner()
228 int zend_ini_open_file_for_scanning(zend_file_handle *fh, int scanner_mode TSRMLS_DC) in zend_ini_open_file_for_scanning() argument
233 if (zend_stream_fixup(fh, &buf, &size TSRMLS_CC) == FAILURE) { in zend_ini_open_file_for_scanning()
237 if (init_ini_scanner(scanner_mode, fh TSRMLS_CC) == FAILURE) { in zend_ini_open_file_for_scanning()
238 zend_file_handle_dtor(fh TSRMLS_CC); in zend_ini_open_file_for_scanning()
/PHP-5.3/ext/standard/tests/file/
H A Ddisk_total_space_basic.phpt22 $fh = fopen($file_path.$dir."/disk_total_space.tmp", "w");
23 fwrite($fh, (binary)"Garbage Data Garbage Data Garbage Data Garbage Data Garbage Data Garbage Data …
25 fclose($fh);
H A Ddisk_total_space_error.phpt26 $fh = fopen( $file_path."/disk_total_space.tmp", "w" );
27 fwrite( $fh, (binary)" Garbage data for the temporary file" );
29 fclose($fh);
H A Dbug53241.phpt12 $fh = fopen($fn, 'xb');
14 var_dump(curl_setopt($ch, CURLOPT_FILE, $fh));
H A Ddisk_total_space_error-win32.phpt26 $fh = fopen( $file_path."/disk_total_space.tmp", "w" );
27 fwrite( $fh, " Garbage data for the temporary file" );
29 fclose($fh);
H A Ddisk_free_space_basic.phpt27 $fh = fopen($file_path.$dir."/disk_free_space.tmp", "a");
29 fwrite($fh, (binary)$data);
30 fclose($fh);
H A Ddisk_free_space_error.phpt29 $fh = fopen( $file_path."/disk_free_space.tmp", "w" );
30 fwrite( $fh, (binary)" Garbage data for the temporary file" );
33 fclose($fh);
H A Ddisk_free_space_error-win32.phpt29 $fh = fopen( $file_path."/disk_free_space.tmp", "w" );
30 fwrite( $fh, " Garbage data for the temporary file" );
33 fclose($fh);
H A Dlstat_stat_variation7.phpt29 $fh = fopen($file_name,"w");
32 fwrite($fh, (binary)"Hello World");
H A Dfile_variation.phpt18 $fh = fopen($file_path."/file_variation.tmp", "w");
19 fwrite($fh, (binary)$data);
23 fclose($fh);
/PHP-5.3/ext/openssl/tests/
H A Dsni_001.phpt45 $fh = fopen($url, 'r', false, $context);
46 assert($fh);
53 $fh = stream_socket_client($url, $errno, $errstr,
55 assert($fh);
62 $fh = stream_socket_client($url, $errno, $errstr,
64 assert($fh);
66 $r = stream_socket_enable_crypto($fh, true, STREAM_CRYPTO_METHOD_TLS_CLIENT);
/PHP-5.3/ext/standard/
H A Dbrowscap.c244 zend_file_handle fh = {0}; in browscap_read_file() local
264 fh.handle.fp = VCWD_FOPEN(filename, "r"); in browscap_read_file()
265 fh.opened_path = NULL; in browscap_read_file()
266 fh.free_filename = 0; in browscap_read_file()
267 if (!fh.handle.fp) { in browscap_read_file()
274 fh.filename = filename; in browscap_read_file()
275 Z_TYPE(fh) = ZEND_HANDLE_FP; in browscap_read_file()
277 zend_parse_ini_file(&fh, 1, ZEND_INI_SCANNER_RAW, in browscap_read_file()
/PHP-5.3/ext/gettext/tests/
H A Dgettext_bind_textdomain_codeset-retval.phpt21 Florian Holzhauer fh-pt@fholzhauer.de
H A Dgettext_bind_textdomain_codeset-wrongparams.phpt22 Florian Holzhauer fh-pt@fholzhauer.de
/PHP-5.3/sapi/isapi/stresstest/
H A Dstresstest.cpp392 HANDLE fh = FindFirstFile(FindPath, &fd); in GetTestFiles() local
393 if (fh != INVALID_HANDLE_VALUE) { in GetTestFiles()
408 } while (FindNextFile(fh, &fd) != 0); in GetTestFiles()
409 FindClose(fh); in GetTestFiles()
421 HANDLE fh = FindFirstFile(FindPath, &fd); in DeleteTempFiles() local
422 if (fh != INVALID_HANDLE_VALUE) { in DeleteTempFiles()
428 } while (FindNextFile(fh, &fd) != 0); in DeleteTempFiles()
429 FindClose(fh); in DeleteTempFiles()
/PHP-5.3/sapi/apache/
H A Dmod_php5.c607 zend_file_handle fh; in send_php() local
609 fh.filename = r->filename; in send_php()
610 fh.opened_path = NULL; in send_php()
611 fh.free_filename = 0; in send_php()
612 fh.type = ZEND_HANDLE_FILENAME; in send_php()
614 zend_execute_scripts(ZEND_INCLUDE TSRMLS_CC, NULL, 1, &fh); in send_php()
/PHP-5.3/sapi/apache_hooks/
H A Dmod_php5.c657 zend_file_handle fh; in send_php() local
659 fh.filename = r->filename; in send_php()
660 fh.opened_path = NULL; in send_php()
661 fh.free_filename = 0; in send_php()
662 fh.type = ZEND_HANDLE_FILENAME; in send_php()
664 zend_execute_scripts(ZEND_INCLUDE TSRMLS_CC, NULL, 1, &fh); in send_php()
/PHP-5.3/ext/standard/tests/strings/
H A Dstrspn_variation6.phpt68 "fh\ne\trlsti \l",

Completed in 72 milliseconds

12