Home
last modified time | relevance | path

Searched refs:temp (Results 126 – 150 of 241) sorted by relevance

12345678910

/PHP-7.4/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_variation1.phpt27 // creating temp directory which will contain temp file and links created
32 // creating temp file; links are created to this file later on
H A Dreadfile_variation1.phpt20 // temp file name used here
H A Dsymlink_link_linkinfo_is_link_variation7.phpt27 // temp file used
33 // temp dirname used
H A Dsymlink_link_linkinfo_is_link_variation3.phpt36 // create temp file
72 // now check temp file for data; it should append "Hello World"
89 // write to temp file
H A Dsymlink_link_linkinfo_is_link_error1.phpt24 // create temp $filename and create link $linkname to it
26 $fp = fopen($filename, "w"); // create temp file
H A Dglob_variation-win32-mb.phpt19 // temp dir created
24 // temp files created
61 // delete temp files and dir
68 // temp dir created to check for pattern matching the sub dir created in it
H A Dglob_variation-win32.phpt19 // temp dir created
23 // temp files created
60 // delete temp files and dir
67 // temp dir created to check for pattern matching the sub dir created in it
H A Dglob_variation.phpt22 // temp dir created
26 // temp files created
63 // delete temp files and dir
70 // temp dir created to check for pattern matching the sub dir created in it
H A Dlstat_stat_variation7.phpt18 $fp = fopen($file_name, "w"); // temp file
H A Dsymlink_link_linkinfo_is_link_error2.phpt24 // create temp $filename and create link $linkname to it
26 $fp = fopen($filename, "w"); // create temp file
H A Dlstat_stat_variation16.phpt25 $fp = fopen($filename, "w"); // temp file
H A Dstat_variation5-win32.phpt23 $file_handle = fopen("$file_path/stat_variation5.tmp", "w"); // temp file
H A Dtempnam_variation6-win32.phpt35 echo "temp dir\n";
H A Dtempnam_variation6.phpt33 echo "temp dir\n";
/PHP-7.4/ext/opcache/
H A Dzend_accelerator_blacklist.c219 zend_regexp_list *temp, *it = blacklist->regexp_list; in zend_accel_blacklist_shutdown() local
222 temp = it; in zend_accel_blacklist_shutdown()
224 free(temp); in zend_accel_blacklist_shutdown()
/PHP-7.4/ext/curl/tests/
H A Dcurl_error_basic.phpt22 * Documentation: http://wiki.php.net/qa/temp/ext/curl
H A Dbug48207.phpt13 * Test documentation: http://wiki.php.net/qa/temp/ext/curl
H A Dcurl_setopt_array_basic.phpt14 * Documentation: http://wiki.php.net/qa/temp/ext/curl
/PHP-7.4/ext/standard/tests/streams/
H A Dbug79984.phpt44 $f2 = fopen('php://temp', 'r+b');
/PHP-7.4/ext/hash/
H A Dhash_gost.c228 uint32_t data[8], temp = 0; in GostTransform() local
233 context->state[i + 8] += data[i] + temp; in GostTransform()
234 temp = context->state[i + 8] < data[i] ? 1 : (context->state[i + 8] == data[i] ? temp : 0); in GostTransform()
/PHP-7.4/ext/intl/converter/
H A Dconverter.c670 UChar *temp; in php_converter_do_convert() local
684 temp = safe_emalloc(sizeof(UChar), temp_len, sizeof(UChar)); in php_converter_do_convert()
688 temp_len = ucnv_toUChars(src_cnv, temp, temp_len, src, src_len, &error); in php_converter_do_convert()
691 efree(temp); in php_converter_do_convert()
694 temp[temp_len] = 0; in php_converter_do_convert()
697 ret_len = ucnv_fromUChars(dest_cnv, NULL, 0, temp, temp_len, &error); in php_converter_do_convert()
700 efree(temp); in php_converter_do_convert()
708 ZSTR_LEN(ret) = ucnv_fromUChars(dest_cnv, ZSTR_VAL(ret), ret_len+1, temp, temp_len, &error); in php_converter_do_convert()
709 efree(temp); in php_converter_do_convert()
/PHP-7.4/ext/libxml/tests/
H A Dlibxml_set_external_entity_loader_variation1.phpt31 $f = fopen("php://temp", "r+");
/PHP-7.4/ext/imap/tests/
H A Dimap_close_basic.phpt20 $stream_id = setup_test_mailbox('', 3, $mailbox); // set up temp mailbox with 3 messages
/PHP-7.4/ext/phar/
H A Dstream.c400 zend_off_t temp; in phar_stream_seek() local
410 temp = data->zero + entry->uncompressed_filesize + offset; in phar_stream_seek()
413 temp = data->zero + data->position + offset; in phar_stream_seek()
416 temp = data->zero + offset; in phar_stream_seek()
419 temp = 0; in phar_stream_seek()
421 if (temp > data->zero + (zend_off_t) entry->uncompressed_filesize) { in phar_stream_seek()
425 if (temp < data->zero) { in phar_stream_seek()
429 res = php_stream_seek(data->fp, temp, SEEK_SET); in phar_stream_seek()
H A Dphar_object.c55 zval temp; in phar_mung_server_vars() local
1534 if (!temp) { in phar_build()
1542 base = temp; in phar_build()
1606 if (temp) { in phar_build()
1607 efree(temp); in phar_build()
1623 if (temp) { in phar_build()
1624 efree(temp); in phar_build()
1636 if (temp) { in phar_build()
1663 if (temp) { in phar_build()
1711 if (temp) { in phar_build()
[all …]

Completed in 77 milliseconds

12345678910