Searched defs:Guard (Results 1 - 25 of 30) sorted by relevance

12

/external/guava/guava/src/com/google/common/util/concurrent/
H A DMonitor.java156 * <p>This version adds some verbosity around the {@code Guard} objects, but removes that same
164 * private final Monitor.Guard valuePresent = new Monitor.Guard(monitor) {
169 * private final Monitor.Guard valueAbsent = new Monitor.Guard(monitor) {
206 // TODO(user): Change API to make it impossible to use a Guard with the "wrong" monitor,
243 // - getWaitingThreads(Guard) method
280 * A boolean condition for which a thread may wait. A {@code Guard} is associated with a single
285 * <p>If a {@code Guard} is passed into any method of a {@code Monitor} other than the one it is
291 public abstract static class Guard { class in class:Monitor
303 protected Guard(Monitor monitor) { method in class:Monitor.Guard
[all...]
/external/v8/src/base/platform/
H A Dplatform-aix.cc201 bool VirtualMemory::Guard(void* address) { function in class:v8::base::VirtualMemory
202 OS::Guard(address, OS::CommitPageSize());
H A Dplatform-cygwin.cc229 bool VirtualMemory::Guard(void* address) { function in class:v8::base::VirtualMemory
H A Dplatform-freebsd.cc204 bool VirtualMemory::Guard(void* address) { function in class:v8::base::VirtualMemory
205 OS::Guard(address, OS::CommitPageSize());
H A Dplatform-linux.cc324 bool VirtualMemory::Guard(void* address) { function in class:v8::base::VirtualMemory
326 OS::Guard(address, OS::CommitPageSize());
H A Dplatform-macos.cc197 bool VirtualMemory::Guard(void* address) { function in class:v8::base::VirtualMemory
198 OS::Guard(address, OS::CommitPageSize());
H A Dplatform-openbsd.cc235 bool VirtualMemory::Guard(void* address) { function in class:v8::base::VirtualMemory
236 OS::Guard(address, OS::CommitPageSize());
H A Dplatform-qnx.cc261 bool VirtualMemory::Guard(void* address) { function in class:v8::base::VirtualMemory
262 OS::Guard(address, OS::CommitPageSize());
H A Dplatform-solaris.cc157 bool VirtualMemory::Guard(void* address) { function in class:v8::base::VirtualMemory
158 OS::Guard(address, OS::CommitPageSize());
H A Dplatform-posix.cc125 void OS::Guard(void* address, const size_t size) { function in class:v8::base::OS
H A Dplatform-win32.cc819 void OS::Guard(void* address, const size_t size) { function in class:v8::base::OS
1263 bool VirtualMemory::Guard(void* address) { function in class:v8::base::VirtualMemory
/external/clang/lib/CodeGen/
H A DCGDeclCXX.cpp506 Address Guard) {
515 if (Guard.isValid()) {
518 llvm::Value *GuardVal = Builder.CreateLoad(Guard);
528 Builder.CreateStore(llvm::ConstantInt::get(GuardVal->getType(),1), Guard);
504 GenerateCXXGlobalInitFunc(llvm::Function *Fn, ArrayRef<llvm::Function *> Decls, Address Guard) argument
H A DItaniumCXXABI.cpp1898 llvm::GlobalVariable *Guard; member in struct:__anon1162::final
1899 CallGuardAbort(llvm::GlobalVariable *Guard) : Guard(Guard) {} argument
1902 CGF.EmitNounwindRuntimeCall(getGuardAbortFn(CGF.CGM, Guard->getType()),
1903 Guard); variable
1931 // Guard variables are 64 bits in the generic ABI and size width on ARM
2218 llvm::GlobalVariable *Guard = new llvm::GlobalVariable( local
2222 Guard->setThreadLocal(true);
2225 Guard
[all...]
H A DMicrosoftCXXABI.cpp765 GuardInfo() : Guard(nullptr), BitIndex(0) {}
766 llvm::GlobalVariable *Guard; member in struct:__anon1170::MicrosoftCXXABI::GuardInfo
2294 Address Guard; member in struct:__anon1172::final
2296 ResetGuardBit(Address Guard, unsigned GuardNum) argument
2297 : Guard(Guard), GuardNum(GuardNum) {}
2303 llvm::LoadInst *LI = Builder.CreateLoad(Guard);
2306 Builder.CreateStore(Builder.CreateAnd(LI, Mask), Guard);
2311 llvm::Value *Guard; member in struct:__anon1172::final
2312 CallInitThreadAbort(Address Guard) argument
2316 CGF.EmitNounwindRuntimeCall(getInitThreadAbortFn(CGF.CGM), Guard); variable
[all...]
/external/llvm/include/llvm/IR/
H A DValueMap.h240 unique_lock<typename Config::mutex_type> Guard; variable
242 Guard = unique_lock<typename Config::mutex_type>(*M);
252 unique_lock<typename Config::mutex_type> Guard; variable
254 Guard = unique_lock<typename Config::mutex_type>(*M);
/external/v8/src/compiler/
H A Dcommon-operator.cc720 const Operator* CommonOperatorBuilder::Guard(Type* type) { function in class:v8::internal::compiler::CommonOperatorBuilder
723 "Guard", // name
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h471 FailureMBB(nullptr), Guard(nullptr),
477 return ParentMBB && SuccessMBB && FailureMBB && Guard;
491 if (!Guard)
492 Guard = StackProtCheckCall.getArgOperand(0);
521 Guard = nullptr;
528 const Value *getGuard() { return Guard; }
553 const Value *Guard; member in class:llvm::SelectionDAGBuilder::StackProtectorDescriptor
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp291 std::string Guard; member in class:__anon3099::Intrinsic
324 StringRef Guard, bool IsUnavailable, bool BigEndianSafe)
326 CK(CK), Body(Body), Guard(Guard.str()), IsUnavailable(IsUnavailable),
362 std::string getGuard() const { return Guard; }
420 // Sort lexicographically on a two-tuple (Guard, Name)
421 if (Guard != Other.Guard)
422 return Guard < Other.Guard;
322 Intrinsic(Record *R, StringRef Name, StringRef Proto, TypeSpec OutTS, TypeSpec InTS, ClassKind CK, ListInit *Body, NeonEmitter &Emitter, StringRef Guard, bool IsUnavailable, bool BigEndianSafe) argument
1916 std::string Guard = R->getValueAsString("ArchGuard"); local
[all...]
/external/v8/src/regexp/
H A Djsregexp.h863 class Guard: public ZoneObject { class in namespace:v8::internal
866 Guard(int reg, Relation op, int value) function in class:v8::internal::Guard
884 void AddGuard(Guard* guard, Zone* zone);
887 ZoneList<Guard*>* guards() { return guards_; }
891 ZoneList<Guard*>* guards_;
944 Guard* guard,
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 734 milliseconds

12