HomeSort by relevance Sort by last modified time
    Searched defs:lock2 (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/chrome/browser/importer/
firefox_profile_lock_unittest.cc 98 scoped_ptr<FirefoxProfileLock> lock2; local
99 EXPECT_EQ(static_cast<FirefoxProfileLock*>(NULL), lock2.get());
100 lock2.reset(new FirefoxProfileLock(test_path));
101 EXPECT_FALSE(lock2->HasAcquired());
106 lock2->Lock();
107 EXPECT_TRUE(lock2->HasAcquired());
108 lock2->Unlock();
109 EXPECT_FALSE(lock2->HasAcquired());
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_unittest.cc 259 leveldb::FileLock* lock2; local
260 status = env->LockFile(file.AsUTF8Unsafe(), &lock2);
  /external/chromium_org/ash/wm/
immersive_fullscreen_controller_unittest.cc 296 scoped_ptr<ImmersiveRevealedLock> lock2; local
336 lock2.reset(controller()->GetRevealedLock(
341 lock2.reset();
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ReentrantLockTest.java 648 final ReentrantLock lock2 = new ReentrantLock(fair); local
650 lock2.hasWaiters(c);
677 final ReentrantLock lock2 = new ReentrantLock(fair); local
679 lock2.getWaitQueueLength(c);
706 final PublicReentrantLock lock2 = new PublicReentrantLock(fair); local
708 lock2.getWaitingThreads(c);
    [all...]
ReentrantReadWriteLockTest.java 1425 final ReentrantReadWriteLock lock2 = new ReentrantReadWriteLock(fair); local
1454 final ReentrantReadWriteLock lock2 = new ReentrantReadWriteLock(fair); local
1484 final PublicReentrantReadWriteLock lock2 = local
    [all...]

Completed in 1411 milliseconds