Home
last modified time | relevance | path

Searched refs:tmp (Results 401 – 425 of 1192) sorted by relevance

1...<<11121314151617181920>>...48

/PHP-7.3/ext/openssl/tests/
H A Dopenssl_peer_fingerprint_basic.phpt10 $certFile = __DIR__ . DIRECTORY_SEPARATOR . 'openssl_peer_fingerprint_basic.pem.tmp';
11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'openssl_peer_fingerprint_basic-ca.pem.tmp';
69 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'openssl_peer_fingerprint_basic.pem.tmp');
70 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'openssl_peer_fingerprint_basic-ca.pem.tmp');
H A Dpeer_verification.phpt10 $certFile = __DIR__ . DIRECTORY_SEPARATOR . 'peer_verification.pem.tmp';
11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'peer_verification-ca.pem.tmp';
72 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'peer_verification.pem.tmp');
73 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'peer_verification-ca.pem.tmp');
H A Dstream_security_level.phpt17 $certFile = __DIR__ . DIRECTORY_SEPARATOR . 'stream_security_level.pem.tmp';
18 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'stream_security_level-ca.pem.tmp';
61 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'stream_security_level.pem.tmp');
62 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'stream_security_level-ca.pem.tmp');
H A Dstream_crypto_flags_004.phpt10 $certFile = __DIR__ . DIRECTORY_SEPARATOR . 'stream_crypto_flags_004.pem.tmp';
11 $cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'stream_crypto_flags_004-ca.pem.tmp';
71 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'stream_crypto_flags_004.pem.tmp');
72 @unlink(__DIR__ . DIRECTORY_SEPARATOR . 'stream_crypto_flags_004-ca.pem.tmp');
/PHP-7.3/Zend/
H A Dzend_vm_execute.skl63 zval tmp;
68 Z_TYPE_INFO(tmp) = IS_LONG;
70 Z_LVAL(tmp) = i;
71 …zend_hash_index_add(zend_handlers_table, (zend_long)(zend_uintptr_t)zend_opcode_handlers[i], &tmp);
H A Dzend_ini_parser.y148 zval *c, tmp; in zend_ini_get_constant() local
154 ZVAL_COPY_OR_DUP(&tmp, c); in zend_ini_get_constant()
155 if (Z_OPT_CONSTANT(tmp)) { in zend_ini_get_constant()
156 zval_update_constant_ex(&tmp, NULL); in zend_ini_get_constant()
158 convert_to_string(&tmp); in zend_ini_get_constant()
159 c = &tmp; in zend_ini_get_constant()
162 if (c == &tmp) { in zend_ini_get_constant()
163 zend_string_release(Z_STR(tmp)); in zend_ini_get_constant()
/PHP-7.3/ext/standard/tests/file/
H A Dlstat_stat_variation6.phpt35 $file_name = "$file_path/lstat_stat_variation6.tmp";
38 $link_name = "$file_path/lstat_stat_variation_link6.tmp";
68 unlink("$file_path/lstat_stat_variation6.tmp");
69 unlink("$file_path/lstat_stat_variation_link6.tmp");
H A Dfnmatch_variation.phpt26 0 => "*.tmp",
29 3 => "mat*tmp",
33 7 => "***.tmp",
38 12 => ".tmp",
40 14 => "match?tmp",
41 15 => "?tmp",
44 18 => "match.tmp",
45 19 => "/match.tmp",
47 21 => 'match.tmp',
61 33 => b"*.tmp",
[all …]
H A Dsymlink_link_linkinfo_is_link_basic1.phpt36 $filename = "$file_path/$dirname/symlink_link_linkinfo_is_link_basic1.tmp";
41 $sym_linkname = "$file_path/$dirname/symlink_link_linkinfo_is_link_softlink_basic1.tmp";
44 $linkname = "$file_path/$dirname/symlink_link_linkinfo_is_link_hardlink_basic1.tmp";
48 "$file_path/$dirname/symlink_link_linkinfo_is_link_basic1.tmp",
49 "$file_path//$dirname//symlink_link_linkinfo_is_link_basic1.tmp"
89 unlink("$dirname/symlink_link_linkinfo_is_link_basic1.tmp");
H A Dstat_variation1-win32-mb.phpt26 $file_handle = fopen("$file_path/stat_variation1_私はガラスを食べられます.tmp", "w"); // temp file
34 $old_filename = "$file_path/stat_variation1_私はガラスを食べられます.tmp";
35 $new_filename = "$file_path/stat_variation1a_私はガラスを食べられます.tmp";
76 unlink("$file_path/stat_variation1a_私はガラスを食べられます.tmp");
H A Dstat_variation1-win32.phpt26 $file_handle = fopen("$file_path/stat_variation1.tmp", "w"); // temp file
34 $old_filename = "$file_path/stat_variation1.tmp";
35 $new_filename = "$file_path/stat_variation1a.tmp";
76 unlink("$file_path/stat_variation1a.tmp");
H A Ddisk_total_space_error.phpt26 $fh = fopen( $file_path."/disk_total_space.tmp", "w" );
28 var_dump( disk_total_space( $file_path."/disk_total_space.tmp" )); // file input instead of directo…
36 unlink($file_path."/disk_total_space.tmp");
H A Drename_variation4.phpt18 $fp = fopen($file_path."/rename_variation4.tmp", "w");
21 var_dump( rename($file_path."/rename_variation4.tmp", $file_path."/12345") );
23 var_dump( file_exists($file_path."/rename_variation4.tmp" ) ); // expecting false
H A Dtempnam_variation5-win32.phpt23 $h = fopen($dir_name."/tempnam_variation6.tmp", "w");
27 $created_file = tempnam("$dir_name", "tempnam_variation6.tmp");
40 unlink($dir_name."/tempnam_variation6.tmp");
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_fetch_array.phpt12 $tmp = NULL;
15 if (!is_null($tmp = @mysqli_fetch_array()))
16 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
18 if (!is_null($tmp = @mysqli_fetch_array($link)))
19 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
60 $tmp = mysqli_fetch_array($res, $illegal_mode);
61 if (false !== $tmp)
63 gettype($tmp), $tmp, mysqli_errno($link), mysqli_error($link));
66 if (false !== $tmp)
68 gettype($tmp), $tmp, mysqli_errno($link), mysqli_error($link));
[all …]
H A Dmysqli_result_references.phpt68 $tmp = array();
70 $tmp[] = $row;
72 $tmp = unserialize(serialize($tmp));
73 debug_zval_dump($tmp);
/PHP-7.3/ext/mbstring/tests/
H A Dmb_convert_encoding_array2.phpt24 $tmp = &$sjis_string;
25 $sjis_string[] = $tmp;
29 $tmp = &$jis_string;
30 $jis_string[] = $tmp;
34 $tmp = &$euc_jp_string;
35 $euc_jp_string[] = $tmp;
39 $tmp = &$utf8_string;
40 $utf8_string[] = $tmp;
/PHP-7.3/ext/xmlwriter/tests/
H A Dxmlwriter_set_indent_string_error_001.phpt7 $temp_filename = dirname(__FILE__)."/xmlwriter_set_indent_string_error.tmp";
16 $temp_filename = dirname(__FILE__)."/xmlwriter_set_indent_string_error.tmp";
/PHP-7.3/ext/standard/tests/general_functions/
H A Dbug49056.phpt11 $filename = dirname(__FILE__) . '/bug49056.tmp';
19 <?php @unlink(dirname(__FILE__) . '/bug49056.tmp'); ?>
/PHP-7.3/ext/soap/
H A Dphp_encoding.c454 zval *tmp; in master_to_xml_int() local
584 tmp == tmp->details.sdl_type->encode) { in master_to_zval()
588 tmp = tmp->details.sdl_type->encode; in master_to_zval()
846 str = estrndup(ZSTR_VAL(tmp), ZSTR_LEN(tmp)); in to_xml_string()
948 zval tmp; in to_xml_hexbin() local
1078 zval tmp; in to_xml_double() local
1422 ce = tmp; in to_zval_object_ex()
2812 tmp == tmp->details.sdl_type->encode) { in guess_zval_convert()
2816 tmp = tmp->details.sdl_type->encode; in guess_zval_convert()
3025 zval tmp; in to_xml_list() local
[all …]
/PHP-7.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_blobfromsteam.phpt9 $tmp = MySQLPDOTest::getTempDir();
10 if (!$tmp)
13 $file = $tmp . DIRECTORY_SEPARATOR . 'pdoblob.tst';
73 if (true !== ($tmp = $stmt->bindParam(2, $fp, PDO::PARAM_LOB))) {
76 var_export($tmp, true),
118 $tmp = MySQLPDOTest::getTempDir();
119 $file = $tmp . DIRECTORY_SEPARATOR . 'pdoblob.tst';
/PHP-7.3/Zend/tests/
H A Dcast_to_bool.phpt33 $tmp = (bool)$var;
34 var_dump($tmp);
H A Dcast_to_int.phpt33 $tmp = (int)$var;
34 var_dump($tmp);
/PHP-7.3/ext/date/lib/
H A Dastro.c301 double tmp; in timelib_ts_to_julianday() local
303 tmp = (double) ts; in timelib_ts_to_julianday()
304 tmp /= (double) 86400; in timelib_ts_to_julianday()
305 tmp += (double) 2440587.5; in timelib_ts_to_julianday()
307 return tmp; in timelib_ts_to_julianday()
H A Ddow.c33 timelib_sll tmp; in positive_mod() local
35 tmp = x % y; in positive_mod()
36 if (tmp < 0) { in positive_mod()
37 tmp += y; in positive_mod()
40 return tmp; in positive_mod()

Completed in 40 milliseconds

1...<<11121314151617181920>>...48