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

1 2 3 4 5 6 7 8 91011>>

  /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...]
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}.
Permission.java 28 public abstract class Permission implements Guard, Serializable {
115 * permission as its argument. This method implements the {@link Guard}
119 * as specified in {@link Guard#checkGuard(Object)} but ignored
123 * @see Guard
SecurityPermission.java 21 * {@code SecurityPermission} objects guard access to the mechanisms which
  /external/kernel-headers/original/linux/mtd/
compatmac.h 7 kernels. Include guard just to make GCC ignore it in future inclusions
  /external/stlport/
README.google 9 * _pair.h needs to define bionic's (sgi's) internal pair header guard.
  /ndk/sources/cxx-stl/stlport/
README.android 9 * _pair.h needs to define bionic's (sgi's) internal pair header guard.
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
GuardedObjectTest.java 30 import java.security.Guard;
42 /** Null guard imposes no restriction. */
48 args = {java.lang.Object.class, java.security.Guard.class}
67 /** Test real guard can both allow and deny access. */
73 args = {java.lang.Object.class, java.security.Guard.class}
85 GuardedObject go = new GuardedObject(objBuffer, new Guard() {
  /external/srec/portable/src/
pmemory_ext.c 55 /* enable writing and checking of guard words if debugging is enabled */
78 /* guard word data ********************************************************/
95 /* scan guard words data **************************************************/
99 * have overwritten their guard words.
100 * Calling PortDelete() will check guard words upon de-allocation, but many
122 /* Guard Functions ********************************************************/
126 * used by PortMemScan() to check for overwritten guard words.
141 * used by PortMemScan() to check for overwritten guard words.
166 * allocated block has overwritten its guard words.
177 /* verify that guard words have not been corrupted *
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
KeyguardManagerKeyguardLockTest.java 31 notes = "There is no method to enable the key guard in the emulator",
40 notes = "There is no method to enable the key guard in the emulator",
KeyguardManagerTest.java 53 notes = "There is no method to enable the key guard in the emulator",
62 notes = "There is no method to enable the key guard in the emulator",
  /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 {
  /external/stlport/test/eh/
random_number.h 27 #endif // #include guard
  /libcore/luni/src/main/java/java/util/logging/
LoggingPermission.java 22 import java.security.Guard;
28 public final class LoggingPermission extends BasicPermission implements Guard,
  /external/libnfc-nxp/src/
phLlcNfc_Timer.c 49 /**< Maximum guard timer can be present */
53 /** Guard time out bit to set */
61 /** Guard time out bit to set */
70 /* This callback is for guard time out */
228 /* Get the guard timer flag */
234 PH_LLCNFC_DEBUG("GUARD TIMER NS INDEX : 0x%02X\n", ns_value);
235 PH_LLCNFC_DEBUG("GUARD TIMER COUNT : 0x%02X\n", timer_count);
236 PH_LLCNFC_DEBUG("GUARD TIMER STARTED : 0x%02X\n", timerstarted);
251 /* Guard time out value */
272 PH_LLCNFC_DEBUG("GUARD TIMER VALUE : 0x%04X\n", ps_timer_info->guard_to_value[timer_count])
    [all...]
phLlcNfc_Timer.h 49 #define PH_LLCNFC_GUARDTIMER (0x01) /**< Timer for guard time out */
56 /**< 0x05 Timer for guard time out value */
155 * \param[in] no_of_gaurd_to_del Guard time-out count shall be decreased as and when
  /external/stlport/src/
num_get_float.cpp 254 if ((prodlo & _Stl_HIBITULL) != 0) { /* first guard bit a one */
344 uint32 guard; /* First guard bit */ local
345 uint64 rest; /* Remaining guard bits */
403 guard = 0;
408 guard = (uint32) ((value>> 63) & 1 );
413 guard = (uint32) (((value>> lead0)-1) & 1);
418 if (guard && ((value & 1) || rest) ) {
431 guard = (uint32) value & 1;
434 /* value&1 guard rest Actio
534 uint32_t guard = (uint32) vv.i64 & 1; local
600 uint32_t guard; local
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 254 if ((prodlo & _Stl_HIBITULL) != 0) { /* first guard bit a one */
344 uint32 guard; /* First guard bit */ local
345 uint64 rest; /* Remaining guard bits */
403 guard = 0;
408 guard = (uint32) ((value>> 63) & 1 );
413 guard = (uint32) (((value>> lead0)-1) & 1);
418 if (guard && ((value & 1) || rest) ) {
431 guard = (uint32) value & 1;
434 /* value&1 guard rest Actio
534 uint32_t guard = (uint32) vv.i64 & 1; local
600 uint32_t guard; local
    [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptCachedFrameData.h 55 // FIXME: the right guard should be ENABLE(PAGE_CACHE). Replace with the right guard, once
  /libcore/luni/src/main/java/java/sql/
SQLPermission.java 22 import java.security.Guard;
37 public final class SQLPermission extends BasicPermission implements Guard,
  /external/webkit/WebKitTools/Scripts/
clean-header-guards 16 # ignore headers which are known not to have guard
  /external/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; } }));
  /bionic/libc/bionic/
malloc_debug_leak.c 81 #define GUARD 0x48151642
90 uint32_t guard; member in struct:AllocationEntry
517 header->guard = GUARD;
534 // check the guard to make sure it is valid
537 if (header->guard != GUARD) {
545 if (header->guard == GUARD || is_valid_entry(header->entry)) {
557 debug_log("WARNING bad header guard: '0x%x'! and invalid entry: %p\n"
    [all...]
  /external/webkit/WebCore/platform/
ThreadTimers.h 60 bool m_firingTimers; // Reentrancy guard.
  /external/webkit/WebCore/platform/chromium/
GeolocationServiceChromium.cpp 45 // This guard is the counterpart of the one in WebCore/platform/GeolocationService.cpp

Completed in 1263 milliseconds

1 2 3 4 5 6 7 8 91011>>