Lines Matching refs:errors
33 $errors = array($link);
37 if (1 !== ($tmp = (mysqli_poll($links, $errors, $reject, 0, 10000))))
54 if (!is_array($errors) || !empty($errors))
55 …printf("[006] Expecting non-empty array got %s/%s\n", gettype($errors), var_export($errors, true));
62 $errors = array($link);
64 if (0 !== ($tmp = mysqli_poll($links, $errors, $reject, 1)))
68 if (!empty($errors))
69 printf("[009] There should be no errors but one rejected connection\n");
92 $errors = array($link, $link);
94 $ready = mysqli_poll($links, $errors, $reject, 1);
96 if (!empty($errors)) {
97 foreach ($errors as $mysqli) {
150 $errors = array($link);
153 if (0 !== ($tmp = (mysqli_poll($links, $errors, $reject, 0, 10000))))
171 if (!is_array($errors) || !empty($errors))
172 …printf("[021] Expecting non-empty array got %s/%s\n", gettype($errors), var_export($errors, true));