Home
last modified time | relevance | path

Searched refs:whiteObj (Results 1 – 3 of 3) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/server/handler/
DIPAccessHandler.java289 Object whiteObj = _white.getLazyMatches(addr); in isAddrUriAllowed() local
290 if (whiteObj != null) in isAddrUriAllowed()
292 …List whiteList = (whiteObj instanceof List) ? (List)whiteObj : Collections.singletonList(whiteObj); in isAddrUriAllowed()
DConnectHandler.java997 Object whiteObj = _white.getLazyMatches(host); in validateDestination() local
998 if (whiteObj == null) in validateDestination()
/external/jetty/src/java/org/eclipse/jetty/servlets/
DProxyServlet.java330 Object whiteObj = _white.getLazyMatches(host); in validateDestination() local
331 if (whiteObj != null) in validateDestination()
333 … List whiteList = (whiteObj instanceof List)?(List)whiteObj:Collections.singletonList(whiteObj); in validateDestination()