Lines Matching refs:tmp
15 $tmp = NULL;
18 if (!is_null($tmp = @mysqli_ssl_set()))
19 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
21 if (!is_null($tmp = @mysqli_ssl_set($link)))
22 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
24 if (!is_null($tmp = @mysqli_ssl_set($link, $link)))
25 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
27 if (!is_null($tmp = @mysqli_ssl_set($link, $link, $link)))
28 printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
30 if (!is_null($tmp = @mysqli_ssl_set($link, $link, $link, $link)))
31 printf("[005] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
33 if (!is_null($tmp = @mysqli_ssl_set($link, $link, $link, $link, $link)))
34 printf("[006] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
40 if (NULL !== ($tmp = @mysqli_ssl_set(
47 printf("[007] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
55 if (false !== ($tmp = my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)))
56 printf("[008] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);