Lines Matching refs:pool

994      * Create pool config templates.
1076 $pool = $matches[2] ?? 'default';
1082 $varValue[] = $pool;
1092 * @param string $pool
1096 public function getAddr(string $type = 'ipv4', $pool = 'default')
1098 $port = $this->getPort($type, $pool, true);
1118 * @param string $pool
1123 public function getPort(string $type = 'ip', $pool = 'default', $useAsId = false)
1129 if (isset($this->ports['values'][$pool])) {
1130 return $this->ports['values'][$pool];
1133 $this->ports['values'][$pool] = $this->ports['last'] = $port;
1516 * @param string|null $pool The pool for pool prefixed log entry
1525 string $pool = null,
1529 if ( ! $this->logTool->expectEntry($type, $message, $pool)) {
1541 * @param string|null $pool
1547 public function expectLogDebug(string $message, string $pool = null, int $count = 1): bool
1549 return $this->expectLogEntry(LogTool::DEBUG, $message, $pool, $count);
1556 * @param string|null $pool
1562 public function expectLogNotice(string $message, string $pool = null, int $count = 1): bool
1564 return $this->expectLogEntry(LogTool::NOTICE, $message, $pool, $count);
1571 * @param string|null $pool
1577 public function expectLogWarning(string $message, string $pool = null, int $count = 1): bool
1579 return $this->expectLogEntry(LogTool::WARNING, $message, $pool, $count);
1586 * @param string|null $pool
1592 public function expectLogError(string $message, string $pool = null, int $count = 1): bool
1594 return $this->expectLogEntry(LogTool::ERROR, $message, $pool, $count);
1601 * @param string|null $pool
1607 public function expectLogAlert(string $message, string $pool = null, int $count = 1): bool
1609 return $this->expectLogEntry(LogTool::ALERT, $message, $pool, $count);
1650 * @param string|null $pool The pool for pool prefixed log entry
1655 public function readAllLogEntries(string $type, string $message, string $pool = null): bool
1657 return $this->logTool->readAllEntries($type, $message, $pool);
1664 * @param string|null $pool The pool for pool prefixed log entry
1669 public function readAllLogNotices(string $message, string $pool = null): bool
1671 return $this->readAllLogEntries(LogTool::NOTICE, $message, $pool);