Home
last modified time | relevance | path

Searched refs:tmp (Results 201 – 225 of 1152) sorted by relevance

12345678910>>...47

/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_pconn_twice.phpt23 if (true !== ($tmp = my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)))
24 printf("[003] Expecting boolean/true got %s/%s\n", gettype($tmp), $tmp);
42 if (true !== ($tmp = $link->real_connect($host, $user, $passwd, $db, $port, $socket)))
43 printf("[009] Expecting boolean/true got %s/%s\n", gettype($tmp), $tmp);
56 if (NULL !== ($tmp = $link->connect($host, $user, $passwd, $db, $port, $socket)))
57 printf("[013] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
63 if (NULL !== ($tmp = $link->connect($host, $user, $passwd, $db, $port, $socket)))
64 printf("[015] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_real_escape_string_big5.phpt45 if ('���H�U���e\\\\���H�U���e' !== ($tmp = mysqli_real_escape_string($link,
47 printf("[004] Expecting \\\\, got %s\n", $tmp);
49 if ('���H�U���e\"���H�U���e' !== ($tmp = mysqli_real_escape_string($link,
51 printf("[005] Expecting \", got %s\n", $tmp);
53 if ("���H�U���e\'���H�U���e" !== ($tmp = mysqli_real_escape_string($link,
55 printf("[006] Expecting ', got %s\n", $tmp);
57 if ("���H�U���e\\n���H�U���e" !== ($tmp = mysqli_real_escape_string($link,
59 printf("[007] Expecting \\n, got %s\n", $tmp);
61 if ("���H�U���e\\r���H�U���e" !== ($tmp = mysqli_real_escape_string($link,
63 printf("[008] Expecting \\r, got %s\n", $tmp);
[all …]
H A Dmysqli_errno_oo.phpt13 $tmp = NULL;
17 if (0 !== ($tmp = @$mysqli->errno))
18 printf("[001] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
34 if (($tmp = $mysqli->errno) === 0)
35 printf("[004] Expecting int/any non zero got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_field_count.phpt13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_field_count()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_field_count($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_fetch_assoc.phpt13 $tmp = NULL;
18 if (!is_null($tmp = @mysqli_fetch_assoc()))
19 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
21 if (!is_null($tmp = @mysqli_fetch_assoc($link)))
22 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
63 if (NULL !== ($tmp = mysqli_fetch_assoc($res)))
64 printf("[008] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_fetch_assoc_oo.phpt13 $tmp = NULL;
19 if (!is_null($tmp = @$res->fetch_assoc()))
20 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
27 if (!is_null($tmp = @$res->fetch_assoc($link)))
28 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
50 if (NULL !== ($tmp = $res->fetch_assoc()))
51 printf("[008] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysqli_field_tell.phpt13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_field_tell()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_field_tell($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
34 if (!is_null($tmp = @mysqli_field_tell($res, 'too many arguments')))
35 printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
/PHP-5.5/ext/standard/tests/file/
H A Dis_readable_variation1.phpt7 $filename = dirname(__FILE__)."/is_readable_root_check.tmp";
32 $fp = fopen("$file_path/is_readable_variation1/bar.tmp", "w");
38 "$file_path/is_readable_variation1/bar.tmp",
41 "$file_path/is_readable_variation1/bar.tmp/",
44 "$file_path/is_readable_variation1//bar.tmp",
45 "$file_path//is_readable_variation1//bar.tmp",
46 "$file_path/is_readable_variation1/*.tmp",
47 "$file_path/is_readable_variation1/b*.tmp",
50 "$file_path/is_readable_variation1".chr(0)."bar.tmp",
51 "$file_path".chr(0)."is_readable_variation1/bar.tmp",
[all …]
H A Dtempnam_variation2.phpt49 $file_name = tempnam($dir_paths[$i], "tempnam_variation2.tmp");
94 File name is => %s/tempnam_variation2/tempnam_variation2_sub/tempnam_variation2.tmp%s
104 File name is => %s/tempnam_variation2/tempnam_variation2.tmp%s
109 File name is => %s/tempnam_variation2/tempnam_variation2.tmp%s
114 File name is => %s/tempnam_variation2/tempnam_variation2.tmp%s
119 File name is => %s/tempnam_variation2/tempnam_variation2.tmp%s
124 File name is => %s/tempnam_variation2.tmp%s
129 File name is => %s/tempnam_variation2.tmp%s
134 File name is => %s/tempnam_variation2.tmp%s
139 File name is => %s/tempnam_variation2.tmp%s
[all …]
H A Drename_variation3.phpt19 $filename = $file_path."/rename_variation1.tmp";
23 $linkname = $file_path."/rename_variation_hard_link1.tmp";
27 $dest_linkname = $file_path."/rename_variation_hard_link2.tmp";
34 var_dump( rename($dest_linkname, $dest_dir."/rename_variation_hard_link2.tmp") );
37 var_dump( file_exists($dest_dir."/rename_variation_hard_link2.tmp") ); // expecting true
40 unlink($dest_dir."/rename_variation_hard_link2.tmp");
47 unlink($file_path."/rename_variation_hard_link1.tmp");
/PHP-5.5/ext/gd/libgd/
H A Dgdkanji.c76 char *tmp; in error() local
83 efree(tmp); in error()
489 ustrcpy (tmp, from); in do_check_and_conv()
494 ustrcpy (tmp, from); in do_check_and_conv()
502 ustrcpy (tmp, from); in do_check_and_conv()
523 if (tmp[i] == SS2) in do_check_and_conv()
525 p1 = tmp[++i]; in do_check_and_conv()
528 p2 = tmp[i + 2]; in do_check_and_conv()
542 to[j++] = tmp[i]; in do_check_and_conv()
548 ustrcpy (to, tmp); in do_check_and_conv()
[all …]
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_native.phpt25 $tmp = $db->errorInfo();
35 ($error_info['prepare']['mysql'] !== $tmp[1])) {
60 $tmp = $stmt->errorInfo();
61 if (isset($tmp[1]) && ($tmp[1] == 2030)) {
180 var_dump($tmp);
237 $tmp = $stmt->fetchAll(PDO::FETCH_ASSOC);
254 if ($tmp !== $exp) {
257 var_dump($tmp);
299 $tmp = $stmt->fetchAll(PDO::FETCH_ASSOC);
308 if ($tmp !== $exp) {
[all …]
/PHP-5.5/ext/mysql/tests/
H A Dmysql_db_query.phpt15 $tmp = NULL;
18 if (NULL !== ($tmp = @mysql_db_query()))
19 printf("[001] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
21 if (NULL !== ($tmp = @mysql_db_query($link)))
22 printf("[002] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
24 if (NULL !== ($tmp = @mysql_db_query($link)))
25 printf("[003] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysql_fetch_lengths.phpt12 $tmp = NULL;
15 if (!is_null($tmp = @mysql_fetch_lengths()))
16 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
18 if (NULL !== ($tmp = @mysql_fetch_lengths($link)))
19 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysql_fetch_row.phpt12 $tmp = NULL;
15 if (!is_null($tmp = @mysql_fetch_row()))
16 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
18 if (NULL !== ($tmp = @mysql_fetch_row($link)))
19 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysql_thread_id.phpt12 $tmp = NULL;
15 if (!is_null($tmp = @mysql_thread_id($link)))
16 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
32 if (false !== ($tmp = mysql_thread_id($link)))
33 printf("[003] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysql_get_proto_info.phpt12 if (NULL !== ($tmp = @mysql_get_proto_info(NULL)))
13 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
24 if (NULL !== ($tmp = @mysql_get_proto_info('too many', 'arguments')))
25 printf("[005] Expecting NULL got %s/%s\n", gettype($tmp), $tmp);
H A Dmysql_list_dbs.phpt12 $tmp = NULL;
15 if (NULL !== ($tmp = @mysql_list_dbs(NULL)))
16 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
18 if (NULL !== ($tmp = @mysql_list_dbs($link, $link)))
19 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
H A Dmysql_ping.phpt12 $tmp = NULL;
17 if (!is_null($tmp = @mysql_ping($link, $link)))
18 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
35 if (false !== ($tmp = mysql_ping($link)))
36 printf("[004] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
/PHP-5.5/ext/standard/
H A Dcrypt_blowfish.c382 tmp = BF_atoi64[tmp]; \
384 (dst) = tmp; \
450 BF_word tmp; in BF_swap() local
454 tmp = *x; in BF_swap()
455 tmp = (tmp << 16) | (tmp >> 16); in BF_swap()
456 *x++ = ((tmp & 0x00FF00FF) << 8) | ((tmp >> 8) & 0x00FF00FF); in BF_swap()
596 tmp[0] = tmp[1] = 0; in BF_set_key()
598 tmp[0] <<= 8; in BF_set_key()
600 tmp[1] <<= 8; in BF_set_key()
615 diff |= tmp[0] ^ tmp[1]; /* Non-zero on any differences */ in BF_set_key()
[all …]
/PHP-5.5/Zend/
H A Dzend_API.c1227 zval *tmp; in add_assoc_long_ex() local
1238 zval *tmp; in add_assoc_null_ex() local
1249 zval *tmp; in add_assoc_bool_ex() local
1260 zval *tmp; in add_assoc_resource_ex() local
1271 zval *tmp; in add_assoc_double_ex() local
1282 zval *tmp; in add_assoc_string_ex() local
1293 zval *tmp; in add_assoc_stringl_ex() local
1310 zval *tmp; in add_index_long() local
1321 zval *tmp; in add_index_null() local
1332 zval *tmp; in add_index_bool() local
[all …]
/PHP-5.5/ext/bz2/
H A Dbz2_filter.c355 zval tmp, *tmp2; in php_bz2_filter_create() local
357 tmp = **tmpzval; in php_bz2_filter_create()
359 tmp2 = &tmp; in php_bz2_filter_create()
371 zval tmp, *tmp2; in php_bz2_filter_create() local
373 tmp = **tmpzval; in php_bz2_filter_create()
375 tmp2 = &tmp; in php_bz2_filter_create()
393 zval tmp; in php_bz2_filter_create() local
395 tmp = **tmpzval; in php_bz2_filter_create()
398 if (Z_LVAL(tmp) < 1 || Z_LVAL(tmp) > 9) { in php_bz2_filter_create()
407 zval tmp; in php_bz2_filter_create() local
[all …]
/PHP-5.5/ext/standard/tests/time/
H A Didate.phpt6 $tmp = "UYzymndjHGhgistwLBIW";
7 for($a = 0;$a < strlen($tmp); $a++){
8 echo $tmp[$a], ': ', idate($tmp[$a], 1043324459)."\n";
/PHP-5.5/ext/gd/tests/
H A Dimagerotate_overflow.phpt18 $tmp = imagerotate ($im, 5, -9999999);
20 var_dump($tmp);
22 if ($tmp) {
23 imagedestroy($tmp);
/PHP-5.5/ext/oci8/
H A Doci8_interface.c164 zval **tmp, *z_descriptor = getThis(); in PHP_FUNCTION() local
189 zval **tmp, *z_descriptor = getThis(); in PHP_FUNCTION() local
230 zval **tmp, *z_descriptor = getThis(); local
280 zval **tmp, *z_descriptor = getThis(); local
314 zval **tmp, *z_descriptor = getThis(); local
359 zval **tmp, *z_descriptor = getThis(); local
389 zval **tmp, *z_descriptor = getThis(); local
1465 MAKE_STD_ZVAL(tmp);
1466 array_init(tmp);
1473 MAKE_STD_ZVAL(tmp);
[all …]

Completed in 76 milliseconds

12345678910>>...47