| /glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/ |
| H A D | AnnotationScanner.java | 66 int access, 65 visit(int version, int access, String name, String signature, String superName, String[] interfaces) argument
|
| H A D | NodeInfo.java | 63 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/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/apiscan/classfile/ |
| H A D | ASMClassFile.java | 76 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 D | ASMMethod.java | 64 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 D | Session.java | 160 * 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/web/web-core/src/main/java/org/apache/catalina/session/ |
| H A D | StandardSession.java | 507 * 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.
|
| /glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/schemadoc/ |
| H A D | DocClassVisitor.java | 64 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/common/common-util/src/main/java/org/glassfish/common/util/admin/ |
| H A D | ManagedFile.java | 114 * 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/impl/core/ |
| H A D | ProviderSubClassImplGenerator.java | 151 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/flashlight/framework/src/main/java/org/glassfish/flashlight/transformer/ |
| H A D | ProbeProviderClassFileTransformer.java | 161 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/installer/src/cpp/share/launcher/ |
| H A D | java_md.winnt.h | 66 #define access _access macro
|
| /glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/ |
| H A D | ClassField.java | 51 /* 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 D | ClassFile.java | 80 /* 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
|
| H A D | ClassMember.java | 55 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 D | ClassMethod.java | 59 /* 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
|
| /vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
| H A D | xf86Bus.h | 67 EntityAccessPtr access; member in struct:__anon7520
|
| /vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
| H A D | xf86Bus.h | 67 EntityAccessPtr access; member in struct:__anon7889
|
| /vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/ |
| H A D | xf86Bus.h | 67 EntityAccessPtr access; member in struct:__anon8245
|
| /vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/ |
| H A D | xf86Bus.h | 67 EntityAccessPtr access; member in struct:__anon8562
|
| /vbox/src/VBox/Additions/x11/x11include/xproto-7.0.18/X11/ |
| H A D | Xw32defs.h | 13 # define access _access macro
|
| /vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/ |
| H A D | Misc.py | 23 from os import access namespace 121 if not access(Directory, F_OK): 284 ## A dict which can access its keys and/or values orderly
|
| /vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/ |
| H A D | access.c | 2 Implementation of the Posix access() function. 27 The access() function checks the file, named by the pathname pointed to by 31 The value of Mode is either the bitwise-inclusive OR of the access 42 is indicated by errno. Values of errno specific to the access 46 access( function
|
| /vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/ |
| H A D | io.h | 148 static inline int access(const char* path, int mode) { return _access(path, mode); } function
|
| /vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
| H A D | snmp_structs.h | 55 /* MIB object access */ 67 u8_t access; member in struct:obj_def 180 /** derived node, has access functions for mib object in external memory or device
|
| /vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
| H A D | snmp_structs.h | 61 /* MIB access types */ 65 /* MIB object access */ 77 u8_t access; member in struct:obj_def 190 /** derived node, has access functions for mib object in external memory or device
|