Home
last modified time | relevance | path

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

/external/javassist/src/main/javassist/
DClassPool.java123 private Hashtable cflow = null; // should be synchronous. field in ClassPool
168 this.cflow = null; in ClassPool()
332 if (cflow == null) in recordCflow()
333 cflow = new Hashtable(); in recordCflow()
335 cflow.put(name, new Object[] { cname, fname }); in recordCflow()
344 if (cflow == null) in lookupCflow()
345 cflow = new Hashtable(); in lookupCflow()
347 return (Object[])cflow.get(name); in lookupCflow()