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

1 2 3 4 5 6 7 8 9

  /external/libxkbcommon/xkbcommon/build-aux/
ylwrap 40 # guard FILE
42 # The CPP macro used to guard inclusion of FILE.
43 guard () function
132 # guard in its implementation file.
152 sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;"
  /toolchain/binutils/binutils-2.27/
ylwrap 40 # guard FILE
42 # The CPP macro used to guard inclusion of FILE.
43 guard () function
124 # guard in its implementation file.
137 sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;"
  /device/google/contexthub/firmware/lib/libc/
cxa.cpp 25 uint8_t *guard = reinterpret_cast<uint8_t*>(_guard); local
26 return guard[0] ? 0 : 1;
32 uint8_t *guard = reinterpret_cast<uint8_t*>(_guard); local
33 guard[0] = 1;
39 uint8_t *guard = reinterpret_cast<uint8_t*>(_guard); local
40 guard[0] = 0;
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
signal_segv_handler.cc 24 void *guard; variable
27 mprotect(guard, page_size, PROT_READ | PROT_WRITE);
38 guard = mmap(0, 3 * page_size, PROT_NONE, MAP_ANON | MAP_PRIVATE, -1, 0);
39 guard = (char*)guard + page_size; // work around a kernel bug
41 mprotect(guard, page_size, PROT_NONE);
42 *(int*)guard = 1;
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_rfunction.pass.cpp 97 DisableAllocationGuard guard; local
copy_move.pass.cpp 141 DisableAllocationGuard guard; local
  /libcore/ojluni/src/main/java/java/security/
GuardedObject.java 32 * <p>A GuardedObject encapsulates a target object and a Guard object,
34 * only if the Guard object allows it.
38 * {@code checkGuard} method on the Guard object that is
42 * @see Guard
54 private Guard guard; // the guard field in class:GuardedObject
57 * Constructs a GuardedObject using the specified object and guard.
58 * If the Guard object is null, then no restrictions will
63 * @param guard the Guard object that guards access to the object
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_rfunction.pass.cpp 97 DisableAllocationGuard guard; local
copy_move.pass.cpp 142 DisableAllocationGuard guard; local
  /system/tools/hidl/
generateCppAdapter.cpp 39 const std::string guard = makeHeaderGuard(klassName, true /* indicateGenerated */); local
41 out << "#ifndef " << guard << "\n"; local
42 out << "#define " << guard << "\n\n"; local
78 out << "#endif // " << guard << "\n"; local
generateCppImpl.cpp 80 const std::string guard = makeHeaderGuard(baseName, false /* indicateGenerated */); local
82 out << "#ifndef " << guard << "\n"; local
83 out << "#define " << guard << "\n\n"; local
135 out << "\n#endif // " << guard << "\n"; local
  /frameworks/base/rs/java/android/renderscript/
BaseObj.java 73 final CloseGuard guard = CloseGuard.get(); field in class:BaseObj
124 guard.close();
140 if (guard != null) {
141 guard.warnIfOpen();
  /libcore/ojluni/src/main/java/java/io/
FileInputStream.java 79 private final CloseGuard guard = CloseGuard.get(); field in class:FileInputStream
168 guard.open("close");
410 guard.close();
486 if (guard != null) {
487 guard.warnIfOpen();
FileOutputStream.java 89 private final CloseGuard guard = CloseGuard.get(); field in class:FileOutputStream
241 guard.open("close");
406 guard.close();
474 if (guard != null) {
475 guard.warnIfOpen();
  /bionic/tests/
bug_26110743_test.cpp 59 auto guard = android::base::make_scope_guard([&]() { local
103 auto guard = android::base::make_scope_guard([&]() { local
stack_protector_test.cpp 44 void* guard = __get_tls()[TLS_SLOT_STACK_GUARD]; local
46 printf("[thread %d] TLS stack guard = %p\n", tid, guard);
51 // Uninitialized guard. Our bug. Note this is potentially flaky; we _could_
53 ASSERT_NE(guard, nullptr);
57 ASSERT_EQ(__stack_chk_guard, reinterpret_cast<uintptr_t>(guard));
61 guards.insert(guard);
88 // Both bionic and glibc use the same guard for every thread.
  /external/clang/test/CodeGen/
2007-09-12-PragmaPack.c 24 uint32_t guard; member in struct:__anon15768
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
swap.pass.cpp 127 DisableAllocationGuard guard; local
128 ((void)guard);
138 DisableAllocationGuard guard; local
139 ((void)guard);
146 DisableAllocationGuard guard; local
147 ((void)guard);
154 DisableAllocationGuard guard; local
155 ((void)guard);
163 DisableAllocationGuard guard; local
164 ((void)guard);
174 DisableAllocationGuard guard; local
185 DisableAllocationGuard guard; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
swap.pass.cpp 128 DisableAllocationGuard guard; local
129 ((void)guard);
139 DisableAllocationGuard guard; local
140 ((void)guard);
147 DisableAllocationGuard guard; local
148 ((void)guard);
155 DisableAllocationGuard guard; local
156 ((void)guard);
164 DisableAllocationGuard guard; local
165 ((void)guard);
175 DisableAllocationGuard guard; local
186 DisableAllocationGuard guard; local
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Monitor.java 156 * <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,
209 // guard.lock();
210 // try { /* monitor locked and guard satisfied here */ }
211 // finally { guard.unlock(); }
222 // guard.enter() paired with monitor.leave()? That might ge
    [all...]
  /external/libcxxabi/src/
cxa_guard.cpp 122 uint64_t guard; member in union:__cxxabiv1::__anon24561::__anon24562
132 uint64_t guard; member in union:__cxxabiv1::__anon24561::__anon24563
136 x = f.guard;
145 uint32_t guard; member in union:__cxxabiv1::__anon24561::__anon24564
155 uint32_t guard; member in union:__cxxabiv1::__anon24561::__anon24565
159 x = f.guard;
  /packages/apps/Camera2/src/com/android/camera/app/
CameraApp.java 60 Profile guard = Profilers.instance().guard("CameraApp onCreate()"); local
65 guard.mark("initializeTimeOfFirstRun");
68 guard.mark("UsageStatistics.initialize");
71 guard.stop("clearNotifications");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/src/
cxa_guard.cpp 122 uint64_t guard; member in union:__cxxabiv1::__anon656::__anon657
132 uint64_t guard; member in union:__cxxabiv1::__anon656::__anon658
136 x = f.guard;
145 uint32_t guard; member in union:__cxxabiv1::__anon656::__anon659
155 uint32_t guard; member in union:__cxxabiv1::__anon656::__anon660
159 x = f.guard;
  /system/chre/platform/shared/include/chre/platform/shared/
memory_debug.h 48 uint32_t guard; variable
77 preamble->guard = kPreambleGuard;
80 // Append a guard
101 } else if (preamble->guard != kPreambleGuard) {
  /libcore/ojluni/src/main/java/java/net/
AbstractPlainDatagramSocketImpl.java 58 private final CloseGuard guard = CloseGuard.get(); field in class:AbstractPlainDatagramSocketImpl
101 guard.open("close");
250 guard.close();
265 if (guard != null) {
266 guard.warnIfOpen();

Completed in 2231 milliseconds

1 2 3 4 5 6 7 8 9