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

1 2 3 4 5 6 7

  /ndk/sources/cxx-stl/gabi++/src/
one_time_construction.cc 30 // And "3.2.3 Guard variables and the one-time construction API" in the ARM C++ ABI reference.
32 /* Note that the ARM C++ ABI defines the size of each guard variable
39 * We will treat guard variables here as 32-bit values, even on x86,
66 int guard = *gv; local
67 if ((guard & 1) != 0) {
73 // we use bit 8 to indicate that the guard value is being
76 if ((guard & 0x100) == 0) {
77 // nobody is initializing this yet, so mark the guard value
87 *gv = guard | 0x200;
96 int guard = *gv local
109 int guard = *gv; local
    [all...]
  /libcore/luni/src/main/java/java/io/
FileInputStream.java 62 private final CloseGuard guard = CloseGuard.get(); field in class:FileInputStream
78 guard.open("close");
95 // Note that we do not call guard.open here because the
113 guard.close();
137 if (guard != null) {
138 guard.warnIfOpen();
FileOutputStream.java 63 private final CloseGuard guard = CloseGuard.get(); field in class:FileOutputStream
89 this.guard.open("close");
105 // Note that we do not call guard.open here because the
132 guard.close();
149 if (guard != null) {
150 guard.warnIfOpen();
RandomAccessFile.java 55 private final CloseGuard guard = CloseGuard.get(); field in class:RandomAccessFile
127 guard.open("close");
159 guard.close();
171 if (guard != null) {
172 guard.warnIfOpen();
  /libcore/luni/src/main/java/java/security/
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...]
  /libcore/luni/src/main/java/java/util/zip/
ZipFile.java 108 private final CloseGuard guard = CloseGuard.get(); field in class:ZipFile
173 guard.open("close");
178 if (guard != null) {
179 guard.warnIfOpen();
198 guard.close();
Deflater.java 155 private final CloseGuard guard = CloseGuard.get(); field in class:Deflater
192 guard.open("end");
253 guard.close();
269 if (guard != null) {
270 guard.warnIfOpen();
Inflater.java 61 private final CloseGuard guard = CloseGuard.get(); field in class:Inflater
82 guard.open("end");
94 guard.close();
107 if (guard != null) {
108 guard.warnIfOpen();
  /external/clang/test/CodeGen/
2007-09-12-PragmaPack.c 24 uint32_t guard; member in struct:__anon22357
  /external/libcxxabi/src/
cxa_guard.cpp 118 uint64_t guard; member in union:__cxxabiv1::__anon27436::__anon27437
130 uint64_t guard; member in union:__cxxabiv1::__anon27436::__anon27438
134 x = f.guard;
143 uint32_t guard; member in union:__cxxabiv1::__anon27436::__anon27439
155 uint32_t guard; member in union:__cxxabiv1::__anon27436::__anon27440
159 x = f.guard;
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_guard.cpp 118 uint64_t guard; member in union:__cxxabiv1::__anon42911::__anon42912
130 uint64_t guard; member in union:__cxxabiv1::__anon42911::__anon42913
134 x = f.guard;
143 uint32_t guard; member in union:__cxxabiv1::__anon42911::__anon42914
155 uint32_t guard; member in union:__cxxabiv1::__anon42911::__anon42915
159 x = f.guard;
  /bionic/tests/
stack_protector_test.cpp 35 // For x86, bionic and glibc have per-thread stack guard values (all identical).
38 uint32_t guard; local
39 asm ("mov %%gs:0x14, %0": "=d" (guard));
40 return guard;
49 uint32_t guard = GetGuardFromTls(); local
51 printf("[thread %d] %%gs:0x14 = 0x%08x\n", tid, guard);
56 // Uninitialized guard. Our bug. Note this is potentially flaky; we _could_ get
58 ASSERT_NE(guard, 0U);
61 guards.insert(guard);
85 // bionic and glibc use the same guard for every thread
    [all...]
  /external/chromium_org/content/browser/media/capture/
audio_mirroring_manager.cc 50 ReentrancyGuard guard; local
77 ReentrancyGuard guard; local
99 ReentrancyGuard guard; local
141 ReentrancyGuard guard; local
  /libcore/dalvik/src/main/java/dalvik/system/
DexFile.java 39 private final CloseGuard guard = CloseGuard.get(); field in class:DexFile
82 guard.open("close");
113 guard.open("close");
179 guard.close();
279 if (guard != null) {
280 guard.warnIfOpen();
  /libcore/luni/src/main/java/java/net/
PlainDatagramSocketImpl.java 37 private final CloseGuard guard = CloseGuard.get(); field in class:PlainDatagramSocketImpl
51 guard.open("close");
79 guard.close();
88 guard.close();
98 if (guard != null) {
99 guard.warnIfOpen();
PlainSocketImpl.java 51 private final CloseGuard guard = CloseGuard.get(); field in class:PlainSocketImpl
56 guard.open("close");
75 guard.open("close");
147 guard.close();
153 guard.close();
203 if (guard != null) {
204 guard.warnIfOpen();
  /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/chromium_org/v8/test/mjsunit/
try.js 60 function guard(f) { try { f(); } catch (o) { return o; } } function
61 assertEquals('baz', guard(function() { throw 'baz'; }));
63 assertEquals(1, guard(function() { try { throw 1; } finally { } }));
64 assertEquals(2, guard(function() { try { throw 2; } finally { var x = 12; } }));
65 assertEquals(4, guard(function() { try { throw 3; } finally { throw 4; } }));
  /external/libvorbis/vq/
huffbuild.c 65 int i,j,k,begin,n,subn,guard=1; local
71 if(argc==4)guard=0;
133 for(j=loval;j<vals;j++)hist[j]=guard;
latticetune.c 45 int entries=-1,dim=-1,guard=1; local
58 if(argv[3]!=NULL)guard=0;
86 for(j=0;j<entries;j++)hits[j]=guard;
  /libcore/luni/src/main/java/java/util/jar/
StrictJarFile.java 53 private final CloseGuard guard = CloseGuard.get(); field in class:StrictJarFile
74 guard.open("close");
157 guard.close();
  /bionic/libc/kernel/uapi/linux/
bsg.h 30 __s32 guard; member in struct:sg_io_v4
  /development/ndk/platforms/android-L/include/linux/
bsg.h 30 __s32 guard; member in struct:sg_io_v4
  /external/aac/libSBRenc/src/
ton_corr.h 143 when indexing a highband channel, -1 represents a guard band */
145 INT guard; /*!< number of guardbands between every patch */ member in struct:__anon4890
  /external/chromium_org/native_client_sdk/src/libraries/error_handling/
error_handling.c 219 void* guard; local
226 // Allocate stack + guard page
232 guard = mmap(stack, PAGE_CHUNK_SIZE,
234 if (guard != stack) {
235 fprintf(stderr, "WARNING: Failed to add guard page for alt stack.\n");

Completed in 507 milliseconds

1 2 3 4 5 6 7