HomeSort by relevance Sort by last modified time
    Searched defs:Guard (Results 1 - 25 of 54) 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}.
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
Headers.h 24 enum Guard { ImmutableGuard, RequestGuard, RequestNoCORSGuard, ResponseGuard, NoneGuard };
47 void setGuard(Guard guard) { m_guard = guard; }
48 Guard guard() const { return m_guard; } function in class:blink::FINAL
63 Guard m_guard;
  /external/chromium_org/v8/src/base/platform/
platform-cygwin.cc 277 bool VirtualMemory::Guard(void* address) {
platform-freebsd.cc 253 bool VirtualMemory::Guard(void* address) {
254 OS::Guard(address, OS::CommitPageSize());
platform-linux.cc 380 bool VirtualMemory::Guard(void* address) {
381 OS::Guard(address, OS::CommitPageSize());
platform-macos.cc 255 bool VirtualMemory::Guard(void* address) {
256 OS::Guard(address, OS::CommitPageSize());
platform-openbsd.cc 284 bool VirtualMemory::Guard(void* address) {
285 OS::Guard(address, OS::CommitPageSize());
platform-qnx.cc 320 bool VirtualMemory::Guard(void* address) {
321 OS::Guard(address, OS::CommitPageSize());
platform-solaris.cc 225 bool VirtualMemory::Guard(void* address) {
226 OS::Guard(address, OS::CommitPageSize());
platform-posix.cc 123 // Create guard pages.
124 void OS::Guard(void* address, const size_t size) {
platform-win32.cc 814 void OS::Guard(void* address, const size_t size) {
    [all...]
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 218 // If we've been asked to forbid guard variables, emit an error now.
223 "this initialization requires a guard variable, which "
302 // optimization. In the MS C++ ABI, there are no guard variables, so this
326 llvm::GlobalVariable *Guard = new llvm::GlobalVariable(
329 Guard->setThreadLocal(true);
331 .GenerateCXXGlobalInitFunc(InitFn, CXXThreadLocalInits, Guard);
449 llvm::GlobalVariable *Guard) {
458 if (Guard) {
459 // If we have a guard variable, check whether we've already performed
461 llvm::Value *GuardVal = Builder.CreateLoad(Guard);
    [all...]
ItaniumCXXABI.cpp 1639 llvm::GlobalVariable *guard = CGM.getStaticLocalDeclGuardAddress(&D); local
1752 CGF.EmitNounwindRuntimeCall(getGuardReleaseFn(CGM, guardPtrTy), guard); local
1754 Builder.CreateStore(llvm::ConstantInt::get(guardTy, 1), guard); local
    [all...]
MicrosoftCXXABI.cpp 536 /// Info on the global variable used to guard initialization of static locals.
539 GuardInfo() : Guard(nullptr), BitIndex(0) {}
540 llvm::GlobalVariable *Guard;
544 /// Map from DeclContext to the current guard variable. We assume that the
    [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/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 384 /// function yet) and export the guard variable that we are going to
400 FailureMBB(nullptr), Guard(nullptr) { }
406 return ParentMBB && SuccessMBB && FailureMBB && Guard;
420 if (!Guard)
421 Guard = StackProtCheckCall.getArgOperand(0);
446 /// 2.The guard variable since the guard variable we are checking against is
450 Guard = nullptr;
456 const Value *getGuard() { return Guard; }
476 /// The guard variable which we will compare against the stored value in th
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 279 /// The architectural #ifdef guard.
280 std::string Guard;
313 StringRef Guard, bool IsUnavailable, bool BigEndianSafe)
315 CK(CK), Body(Body), Guard(Guard.str()), IsUnavailable(IsUnavailable),
350 /// Get the architectural guard string (#ifdef).
351 std::string getGuard() const { return Guard; }
409 // Sort lexicographically on a two-tuple (Guard, Name)
410 if (Guard != Other.Guard)
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp     [all...]
  /external/chromium_org/v8/src/
jsregexp.h     [all...]
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 

Completed in 461 milliseconds

1 2 3