Lines Matching refs:errors
36 $errors = array($link);
40 if (1 !== ($tmp = (mysqli_poll($links, $errors, $reject, 0, 10000))))
57 if (!is_array($errors) || !empty($errors))
58 …printf("[006] Expecting non-empty array got %s/%s\n", gettype($errors), var_export($errors, true));
65 $errors = array($link);
67 if (0 !== ($tmp = mysqli_poll($links, $errors, $reject, 1)))
71 if (!empty($errors))
72 printf("[009] There should be no errors but one rejected connection\n");
95 $errors = array($link, $link);
97 $ready = mysqli_poll($links, $errors, $reject, 1);
99 if (!empty($errors)) {
100 foreach ($errors as $mysqli) {
153 $errors = array($link);
156 if (0 !== ($tmp = (mysqli_poll($links, $errors, $reject, 0, 10000))))
174 if (!is_array($errors) || !empty($errors))
175 …printf("[021] Expecting non-empty array got %s/%s\n", gettype($errors), var_export($errors, true));