INNER CODE UNIT · Java

value

xxf098/shadowsocksr-v2ray-trojan-android · src/main/java/go/Seq.java:124

                value = this.next++;
                this.javaRefs.put(key, value);
            }
            final int intValue = value;
            Ref value2 = this.javaObjs.get(intValue);
            if (value2 == null) {
                value2 = new Ref(intValue, key);
                this.javaObjs.put(intValue, value2);
            }
            value2.inc();
            return intValue;
        }

        synchronized void incRefnum(final int i) {
            final Ref value = this.javaObjs.get(i);
            if (value == null) {
                throw new RuntimeException("referenced Java object is not found: refnum=" + i);
            }

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…