Lines Matching refs:lip
1092 ListeningPointImpl lip = (ListeningPointImpl) listeningPoints.get(key); in createListeningPoint() local
1093 if (lip != null) { in createListeningPoint()
1094 return lip; in createListeningPoint()
1106 lip = new ListeningPointImpl(this, port, transport); in createListeningPoint()
1107 lip.messageProcessor = messageProcessor; in createListeningPoint()
1108 messageProcessor.setListeningPoint(lip); in createListeningPoint()
1109 this.listeningPoints.put(key, lip); in createListeningPoint()
1112 return (ListeningPoint) lip; in createListeningPoint()
1156 ListeningPointImpl lip = (ListeningPointImpl) listeningPoint; in deleteListeningPoint() local
1158 super.removeMessageProcessor(lip.messageProcessor); in deleteListeningPoint()
1159 String key = lip.getKey(); in deleteListeningPoint()