Searched defs:guard (Results 1 - 1 of 1) sorted by relevance

/dalvik/libcore/security/src/main/java/java/security/
H A DGuardedObject.java33 private final Guard guard; field in class:GuardedObject
41 * @param guard
45 public GuardedObject(Object object, Guard guard) { argument
47 this.guard = guard;
60 if (guard != null) {
61 guard.checkGuard(object);
67 * Checks the guard (if there is one) before performing a default
71 if (guard != null) {
72 guard
[all...]

Completed in 216 milliseconds