HomeSort by relevance Sort by last modified time
    Searched defs:Guard (Results 1 - 25 of 43) sorted by null

1 2

  /libcore/luni/src/main/java/java/security/
Guard.java 21 * {@code Guard} implementors protect access to other objects.
23 public interface Guard {
31 * the object to be protected by this {@code Guard}.
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 215 // If we've been asked to forbid guard variables, emit an error now.
220 "this initialization requires a guard variable, which "
301 llvm::GlobalVariable *Guard = new llvm::GlobalVariable(
304 Guard->setThreadLocal(true);
306 .GenerateCXXGlobalInitFunc(InitFn, CXXThreadLocalInits, Guard);
412 llvm::GlobalVariable *Guard) {
421 if (Guard) {
422 // If we have a guard variable, check whether we've already performed these
424 llvm::Value *GuardVal = Builder.CreateLoad(Guard);
425 llvm::Value *Uninit = Builder.CreateIsNull(GuardVal, "guard.uninitialized")
    [all...]
ItaniumCXXABI.cpp 1122 llvm::GlobalVariable *guard = CGM.getStaticLocalDeclGuardAddress(&D); local
1230 CGF.EmitNounwindRuntimeCall(getGuardReleaseFn(CGM, guardPtrTy), guard); local
1232 Builder.CreateStore(llvm::ConstantInt::get(guardTy, 1), guard); local
    [all...]
  /external/chromium_org/v8/src/
platform-cygwin.cc 374 bool VirtualMemory::Guard(void* address) {
platform-freebsd.cc 318 bool VirtualMemory::Guard(void* address) {
319 OS::Guard(address, OS::CommitPageSize());
platform-macos.cc 337 bool VirtualMemory::Guard(void* address) {
338 OS::Guard(address, OS::CommitPageSize());
platform-solaris.cc 339 bool VirtualMemory::Guard(void* address) {
340 OS::Guard(address, OS::CommitPageSize());
platform-linux.cc 625 bool VirtualMemory::Guard(void* address) {
626 OS::Guard(address, OS::CommitPageSize());
platform-nullos.cc 264 void OS::Guard(void* address, const size_t size) {
368 bool VirtualMemory::Guard(void* address) {
platform-openbsd.cc 375 bool VirtualMemory::Guard(void* address) {
376 OS::Guard(address, OS::CommitPageSize());
platform-posix.cc 151 // Create guard pages.
152 void OS::Guard(void* address, const size_t size) {
platform-win32.cc 983 void OS::Guard(void* address, const size_t size) {
    [all...]
jsregexp.h     [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Monitor.java 159 * <p>This version adds some verbosity around the {@code Guard} objects, but removes that same
167 * private final Monitor.Guard valuePresent = new Monitor.Guard(monitor) {
172 * private final Monitor.Guard valueAbsent = new Monitor.Guard(monitor) {
208 * A boolean condition for which a thread may wait. A {@code Guard} is associated with a single
209 * {@code Monitor}. The monitor may check the guard at arbitrary times from any thread occupying
210 * the monitor, so code should not be written to rely on how often a guard might or might not be
213 * <p>If a {@code Guard} is passed into any method of a {@code Monitor} other than the one it is
219 public abstract static class Guard {
783 Guard guard = guards.get(i); local
796 Guard guard = guards.get(i); local
    [all...]
  /external/v8/src/
platform-nullos.cc 249 void OS::Guard(void* address, const size_t size) {
327 bool VirtualMemory::Guard(void* address) {
platform-posix.cc 89 // Create guard pages.
90 void OS::Guard(void* address, const size_t size) {
platform-cygwin.cc 182 void OS::Guard(void* address, const size_t size) {
365 bool VirtualMemory::Guard(void* address) {
platform-freebsd.cc 422 bool VirtualMemory::Guard(void* address) {
423 OS::Guard(address, OS::CommitPageSize());
platform-macos.cc 440 bool VirtualMemory::Guard(void* address) {
441 OS::Guard(address, OS::CommitPageSize());
platform-solaris.cc 412 bool VirtualMemory::Guard(void* address) {
413 OS::Guard(address, OS::CommitPageSize());
platform-linux.cc 675 bool VirtualMemory::Guard(void* address) {
676 OS::Guard(address, OS::CommitPageSize());
    [all...]
platform-openbsd.cc 469 bool VirtualMemory::Guard(void* address) {
470 OS::Guard(address, OS::CommitPageSize());
platform-win32.cc 966 void OS::Guard(void* address, const size_t size) {
    [all...]
jsregexp.h     [all...]
  /prebuilts/sdk/10/
android.jar 

Completed in 590 milliseconds

1 2