Lines Matching refs:errors
37 $errors = array($link);
41 if (1 !== ($tmp = (mysqli_poll($links, $errors, $reject, 0, 10000))))
58 if (!is_array($errors) || !empty($errors))
59 …printf("[006] Expecting non-empty array got %s/%s\n", gettype($errors), var_export($errors, true));
66 $errors = array($link);
68 if (0 !== ($tmp = mysqli_poll($links, $errors, $reject, 1)))
72 if (!empty($errors))
73 printf("[009] There should be no errors but one rejected connection\n");
96 $errors = array($link, $link);
98 $ready = mysqli_poll($links, $errors, $reject, 1);
100 if (!empty($errors)) {
101 foreach ($errors as $mysqli) {
154 $errors = array($link);
157 if (0 !== ($tmp = (mysqli_poll($links, $errors, $reject, 0, 10000))))
175 if (!is_array($errors) || !empty($errors))
176 …printf("[021] Expecting non-empty array got %s/%s\n", gettype($errors), var_export($errors, true));