HomeSort by relevance Sort by last modified time
    Searched refs:AtomicLong (Results 1 - 25 of 25) sorted by null

  /external/guava/guava-testlib/src/com/google/common/testing/
FakeTicker.java 24 import java.util.concurrent.atomic.AtomicLong;
38 private final AtomicLong nanos = new AtomicLong();
  /art/runtime/native/
java_util_concurrent_atomic_AtomicLong.cc 27 NATIVE_METHOD(AtomicLong, VMSupportsCS8, "()Z"),
31 REGISTER_NATIVE_METHODS("java/util/concurrent/atomic/AtomicLong");
  /external/smack/src/com/kenai/jbosh/
RequestIDSequence.java 20 import java.util.concurrent.atomic.AtomicLong;
71 private AtomicLong nextRequestID = new AtomicLong();
80 nextRequestID = new AtomicLong(generateInitialValue());
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicLongMap.java 14 import java.util.concurrent.atomic.AtomicLong;
41 private final ConcurrentHashMap<K, AtomicLong> map;
43 private AtomicLongMap(ConcurrentHashMap<K, AtomicLong> map) {
51 return new AtomicLongMap<K>(new ConcurrentHashMap<K, AtomicLong>());
68 AtomicLong atomic = map.get(key);
92 AtomicLong atomic = map.get(key);
94 atomic = map.putIfAbsent(key, new AtomicLong(delta));
105 if (map.replace(key, atomic, new AtomicLong(delta))) {
141 AtomicLong atomic = map.get(key);
143 atomic = map.putIfAbsent(key, new AtomicLong(delta))
    [all...]
ThreadFactoryBuilder.java 25 import java.util.concurrent.atomic.AtomicLong;
156 final AtomicLong count = (nameFormat != null) ? new AtomicLong(0) : null;
  /external/guava/guava/src/com/google/common/cache/
AbstractCache.java 29 import java.util.concurrent.atomic.AtomicLong;
205 private final AtomicLong hitCount = new AtomicLong();
206 private final AtomicLong missCount = new AtomicLong();
207 private final AtomicLong loadSuccessCount = new AtomicLong();
208 private final AtomicLong loadExceptionCount = new AtomicLong();
209 private final AtomicLong totalLoadTime = new AtomicLong()
    [all...]
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
AtomicLong.java 20 * GWT emulated version of {@link AtomicLong}. It's a thin wrapper
25 public class AtomicLong extends Number implements java.io.Serializable {
29 public AtomicLong(long initialValue) {
33 public AtomicLong() {
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLong.java 14 * {@code AtomicLong} is used in applications such as atomically
23 public class AtomicLong extends Number implements java.io.Serializable {
47 (AtomicLong.class.getDeclaredField("value"));
54 * Creates a new AtomicLong with the given initial value.
58 public AtomicLong(long initialValue) {
63 * Creates a new AtomicLong with initial value {@code 0}.
65 public AtomicLong() {
234 * Returns the value of this {@code AtomicLong} as an {@code int}
242 * Returns the value of this {@code AtomicLong} as a {@code long}.
249 * Returns the value of this {@code AtomicLong} as a {@code float
    [all...]
AtomicLongFieldUpdater.java 49 if (AtomicLong.VM_SUPPORTS_LONG_CAS)
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
AbstractKernel.java 37 import java.util.concurrent.atomic.AtomicLong;
55 private AtomicLong nextId = new AtomicLong(1);
  /external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/browser/sync/
SyncTestUtil.java 37 import java.util.concurrent.atomic.AtomicLong;
222 final AtomicLong result = new AtomicLong();
  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 9 import java.util.concurrent.atomic.AtomicLong;
143 private static final AtomicLong sequencer = new AtomicLong();
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicLongMapTest.java 17 import java.util.concurrent.atomic.AtomicLong;
546 final AtomicLong sum = new AtomicLong();
  /external/littlemock/src/com/google/testing/littlemock/
LittleMock.java 33 import java.util.concurrent.atomic.AtomicLong;
532 private static final AtomicLong sGlobalInvocationOrder = new AtomicLong();
    [all...]
  /frameworks/base/services/java/com/android/server/am/
UsageStatsService.java 65 import java.util.concurrent.atomic.AtomicLong;
126 private final AtomicLong mLastWriteElapsedTime = new AtomicLong(0);
    [all...]
ActivityManagerService.java 201 import java.util.concurrent.atomic.AtomicLong;
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 

Completed in 208 milliseconds