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

1 2 3

  /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}.
GuardedObject.java 25 * for the object with a {@code Guard}.
33 private final Guard guard; field in class:GuardedObject
37 * to the specified {@code Object} using the specified {@code Guard}.
41 * @param guard
42 * the {@code Guard} which protects the specified {@code Object},
45 public GuardedObject(Object object, Guard guard) {
47 this.guard = guard;
    [all...]
Permission.java 25 public abstract class Permission implements Guard, Serializable {
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyGuard.java 21 import java.security.Guard;
23 public class MyGuard implements Guard, Serializable {
  /libcore/luni/src/main/java/java/util/logging/
LoggingPermission.java 22 import java.security.Guard;
28 public final class LoggingPermission extends BasicPermission implements Guard, Serializable {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyGuard.java 21 import java.security.Guard;
23 public class MyGuard implements Guard, Serializable {
  /libcore/luni/src/main/java/java/sql/
SQLPermission.java 22 import java.security.Guard;
28 public final class SQLPermission extends BasicPermission implements Guard, Serializable {
  /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...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
GuardedObjectTest.java 25 import java.security.Guard;
36 /** Null guard imposes no restriction. */
47 /** Test real guard can both allow and deny access. */
51 GuardedObject go = new GuardedObject(objBuffer, new Guard() {
  /external/llvm/lib/IR/
PassRegistry.cpp 76 sys::SmartScopedWriter<true> Guard(*Lock);
88 sys::SmartScopedReader<true> Guard(*Lock);
95 sys::SmartScopedReader<true> Guard(*Lock);
107 sys::SmartScopedWriter<true> Guard(*Lock);
124 sys::SmartScopedWriter<true> Guard(*Lock);
136 sys::SmartScopedReader<true> Guard(*Lock);
164 sys::SmartScopedWriter<true> Guard(*Lock);
190 sys::SmartScopedWriter<true> Guard(*Lock);
196 sys::SmartScopedWriter<true> Guard(*Lock);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
GuardedObjectTest.java 33 /** Null guard imposes no restriction. */
44 /** Test real guard can both allow and deny access. */
48 GuardedObject go = new GuardedObject(objBuffer, new Guard() {
  /external/llvm/include/llvm/Support/
UnicodeCharRanges.h 37 llvm::MutexGuard Guard(ValidationMutex);
65 llvm::MutexGuard Guard(ValidationMutex);
  /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-nullos.cc 264 void OS::Guard(void* address, const size_t size) {
368 bool VirtualMemory::Guard(void* address) {
platform-freebsd.cc 318 bool VirtualMemory::Guard(void* address) {
319 OS::Guard(address, OS::CommitPageSize());
jsregexp.h     [all...]
platform-macos.cc 337 bool VirtualMemory::Guard(void* address) {
338 OS::Guard(address, OS::CommitPageSize());
platform-openbsd.cc 375 bool VirtualMemory::Guard(void* address) {
376 OS::Guard(address, OS::CommitPageSize());
platform-solaris.cc 339 bool VirtualMemory::Guard(void* address) {
340 OS::Guard(address, OS::CommitPageSize());
platform.h 271 // Assign memory as a guard page so that access will cause an exception.
272 static void Guard(void* address, const size_t size);
504 // Creates a single guard page at the given address.
505 bool Guard(void* address);
  /external/v8/src/
platform-nullos.cc 249 void OS::Guard(void* address, const size_t size) {
327 bool VirtualMemory::Guard(void* address) {
platform.h 194 // Assign memory as a guard page so that access will cause an exception.
195 static void Guard(void* address, const size_t size);
371 // Creates a single guard page at the given address.
372 bool Guard(void* address);
jsregexp.h     [all...]
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp 60 MutexGuard Guard(OProfileInitializationMutex);

Completed in 921 milliseconds

1 2 3