Lines Matching defs:cp
201 public synchronized ClassPath insertClassPath(ClassPath cp) {
202 pathList = new ClassPathList(cp, pathList);
203 return cp;
206 public synchronized ClassPath appendClassPath(ClassPath cp) {
207 ClassPathList tail = new ClassPathList(cp, null);
218 return cp;
221 public synchronized void removeClassPath(ClassPath cp) {
224 if (list.path == cp)
228 if (list.next.path == cp)
234 cp.close();