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

/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Djava_md.winnt.h66 #define access _access macro
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/
H A DClassMember.java55 return (access() & ACCStatic) != 0;
62 return (access() & ACCFinal) != 0;
70 setAccess(access() | ACCFinal);
72 setAccess(access() & ~ACCFinal);
79 return (access() & ACCPrivate) != 0;
86 return (access() & ACCProtected) != 0;
93 return (access() & ACCPublic) != 0;
99 * Return the access flags for the method - see VMConstants
101 abstract public int access(); method in class:ClassMember
104 * Set the access flag
[all...]
H A DClassField.java51 /* access flag bit mask - see VMConstants */
74 * Return the access flags for the field - see VMConstants
76 public int access() { method in class:ClassField
81 * Update the access flags for the field - see VMConstants
H A DClassMethod.java59 /* access flag bit mask - see VMConstants */
75 * Return the access flags for the method - see VMConstants
77 public int access() { method in class:ClassMethod
82 * Update the access flags for the field - see VMConstants
H A DClassFile.java80 /* access flag bit mask - see VMConstants */
121 * Return the access flags for the class - see VMConstants
123 public int access() { method in class:ClassFile
157 * Set the access flags for the class - see VMConstants
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/
H A DAnnotationScanner.java66 int access,
65 visit(int version, int access, String name, String signature, String superName, String[] interfaces) argument
H A DNodeInfo.java63 private int access; field in class:NodeInfo
215 public void visit(int version, int access, String className, String signature, argument
221 this.access = access;
231 if ((access & Opcodes.ACC_ANNOTATION) != 0) {
234 } else if ((access & Opcodes.ACC_INTERFACE) != 0) {
237 } else if ((access & Opcodes.ACC_ENUM) != 0) {
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/common/util/admin/
H A DManagedFile.java114 * Blocks for {@link ManagedFile#timeOut} milliseconds for the write access
128 * Blocks for {@link ManagedFile#timeOut} milliseconds for the read access
212 private synchronized FileLock access(boolean shared, String mode, int timeOut) throws IOException, TimeoutException { method in class:ManagedFile.RefCounterLock
262 fileLock = access(true, "r", maxHoldingTime);
264 fileLock = access(false, "rw", maxHoldingTime);
/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/transformer/
H A DProbeProviderClassFileTransformer.java161 public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) { argument
162 MethodVisitor mv = super.visitMethod(access, name, desc, signature, exceptions);
166 mv = new ProbeProviderMethodVisitor(mv, access, name, desc, probe);
176 private int access; field in class:ProbeProviderClassFileTransformer.ProbeProviderMethodVisitor
180 ProbeProviderMethodVisitor(MethodVisitor mv, int access, String name, String desc, FlashlightProbe probe) { argument
184 this.access = access;
192 GeneratorAdapter gen = new GeneratorAdapter(mv, access, name, desc);
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/apiscan/classfile/
H A DASMClassFile.java76 private int access; field in class:ASMClassFile
79 return (access & ACC_INTERFACE) == ACC_INTERFACE;
144 StringBuilder sb = new StringBuilder(decodeAccessFlag(access)+ externalName);
166 int version, int access, String name, String signature,
170 new Object[]{version, access, name, signature});
180 cf.access = access;
184 int access, String name, String desc, String signature,
188 new Object[]{access, name, signature, desc});
189 ASMMethod method = new ASMMethod(cf, name, desc, access,
165 visit( int version, int access, String name, String signature, String superName, String[] interfaces) argument
183 visitMethod( int access, String name, String desc, String signature, String[] exceptions) argument
201 decodeAccessFlag(int access) argument
[all...]
H A DASMMethod.java64 private int access; field in class:ASMMethod
80 ClassFile owningClass, String name, String descriptor, int access,
85 this.access = access;
123 return (access & Opcodes.ACC_NATIVE) == Opcodes.ACC_NATIVE;
185 decodeAccessFlag(access) +
198 return access;
234 public static String decodeAccessFlag(int access) { argument
236 if ((access & Opcodes.ACC_PRIVATE) == Opcodes.ACC_PRIVATE) {
238 } else if ((access
79 ASMMethod( ClassFile owningClass, String name, String descriptor, int access, String signature, String[] exceptions) argument
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DSession.java160 * a value associated with the session, do not affect the access time.
262 public void access(); method in interface:Session
272 * End access to the session.
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/schemadoc/
H A DDocClassVisitor.java64 public void visit(int version, int access, String name, String signature, String superName, String[] intfs) { argument
94 public void visitInnerClass(String name, String outerName, String innerName, int access) { argument
97 public FieldVisitor visitField(int access, String name, String desc, String signature, Object value) { argument
101 public MethodVisitor visitMethod(int access, String name, String desc, String signature, argument
105 if (showDeprecated || ((access & Opcodes.ACC_DEPRECATED) != Opcodes.ACC_DEPRECATED)) {
/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/impl/core/
H A DProviderSubClassImplGenerator.java151 public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) { argument
153 super.visit(version, access, name + token + id, signature, name, interfaces);
167 public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] strings) { argument
170 MethodVisitor mv = super.visitMethod(access, name, desc, signature, strings);
180 return super.visitMethod(access, name, desc, signature, strings);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/session/
H A DStandardSession.java507 * a value associated with the session, do not affect the access time.
523 * session access to throw an IllegalStateException.
535 * a value associated with the session, do not affect the access time.
723 public void access() { method in class:StandardSession
732 * End the access.

Completed in 186 milliseconds