Lines Matching refs:pool

919      * Create pool config templates.
993 $pool = $matches[2] ?? 'default';
999 $varValue[] = $pool;
1008 * @param string $pool
1011 public function getAddr(string $type = 'ipv4', $pool = 'default')
1013 $port = $this->getPort($type, $pool, true);
1033 * @param string $pool
1037 public function getPort(string $type = 'ip', $pool = 'default', $useAsId = false)
1043 if (isset($this->ports['values'][$pool])) {
1044 return $this->ports['values'][$pool];
1047 $this->ports['values'][$pool] = $this->ports['last'] = $port;
1336 * @param string|null $pool The pool for pool prefixed log entry
1340 private function expectLogEntry(string $type, string $message, $pool = null, $count = 1)
1343 if (!$this->logTool->expectEntry($type, $this->getLastLogLine(), $message, $pool)) {
1354 * @param string|null $pool
1358 public function expectLogDebug(string $message, $pool = null, $count = 1)
1360 return $this->expectLogEntry(LogTool::DEBUG, $message, $pool, $count);
1367 * @param string|null $pool
1371 public function expectLogNotice(string $message, $pool = null, $count = 1)
1373 return $this->expectLogEntry(LogTool::NOTICE, $message, $pool, $count);
1380 * @param string|null $pool
1384 public function expectLogWarning(string $message, $pool = null, $count = 1)
1386 return $this->expectLogEntry(LogTool::WARNING, $message, $pool, $count);
1393 * @param string|null $pool
1397 public function expectLogError(string $message, $pool = null, $count = 1)
1399 return $this->expectLogEntry(LogTool::ERROR, $message, $pool, $count);
1406 * @param string|null $pool
1410 public function expectLogAlert(string $message, $pool = null, $count = 1)
1412 return $this->expectLogEntry(LogTool::ALERT, $message, $pool, $count);