HomeSort by relevance Sort by last modified time
    Searched refs:Guard (Results 1 - 25 of 39) 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}.
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/VMCore/
PassRegistry.cpp 75 sys::SmartScopedLock<true> Guard(*Lock);
87 sys::SmartScopedLock<true> Guard(*Lock);
94 sys::SmartScopedLock<true> Guard(*Lock);
106 sys::SmartScopedLock<true> Guard(*Lock);
123 sys::SmartScopedLock<true> Guard(*Lock);
135 sys::SmartScopedLock<true> Guard(*Lock);
163 sys::SmartScopedLock<true> Guard(*Lock);
189 sys::SmartScopedLock<true> Guard(*Lock);
195 sys::SmartScopedLock<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/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...]
jsregexp.cc 4992 Guard* guard = guards->at(0); local
    [all...]
platform-cygwin.cc 182 void OS::Guard(void* address, const size_t size) {
365 bool VirtualMemory::Guard(void* address) {
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-posix.cc 89 // Create guard pages.
90 void OS::Guard(void* address, const size_t size) {
platform-freebsd.cc 422 bool VirtualMemory::Guard(void* address) {
423 OS::Guard(address, OS::CommitPageSize());
platform-linux.cc 680 bool VirtualMemory::Guard(void* address) {
681 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...]
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp 59 MutexGuard Guard(OProfileInitializationMutex);
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 1091 llvm::GlobalVariable *guard = CGM.getStaticLocalDeclGuardAddress(&D); local
1196 Builder.CreateCall(getGuardReleaseFn(CGM, guardPtrTy), guard); local
1198 Builder.CreateStore(llvm::ConstantInt::get(guardTy, 1), guard); local
    [all...]

Completed in 622 milliseconds

1 2