Searched refs:access (Results 51 - 75 of 100) sorted by relevance

1234

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DResolve.java176 // of anonymous classes should be allowed to access
292 * @param sym The symbol with protected access
293 * @param c The class where the access takes place
1283 Symbol access(Symbol sym, method in class:Resolve
1297 sym = errSym.access(name, qualified ? site.tsym : syms.noSymbol);
1302 /** Same as original access(), but without location.
1304 Symbol access(Symbol sym, method in class:Resolve
1311 return access(sym, pos, site.tsym, site, name, qualified, argtypes, typeargtypes);
1314 /** Same as original access(), but without type arguments and arguments.
1316 Symbol access(Symbo method in class:Resolve
1330 Symbol access(Symbol sym, method in class:Resolve
1877 protected Symbol access(Name name, TypeSymbol location) { method in class:Resolve.ResolveError
1938 public Symbol access(Name name, TypeSymbol location) { method in class:Resolve.InvalidSymbolError
2113 public Symbol access(Name name, TypeSymbol location) { method in class:Resolve.InapplicableSymbolError
[all...]
H A DLower.java316 * (in reverse order of first access).
697 /** Anon inner classes are used as access constructor tags.
740 * All access codes for accesses to the current class are even.
742 * access was via a qualified super), add one to the corresponding code
758 /** Number of access codes
762 /** A mapping from symbols to their access numbers.
766 /** A mapping from symbols to an array of access symbols, indexed by
767 * access code.
771 /** A mapping from (constructor) symbols to access constructor symbols.
775 /** A list of all class symbols used for access constructo
1046 JCExpression access(Symbol sym, JCExpression tree, JCExpression enclOp, boolean refSuper) { method in class:Lower
1149 JCExpression access(JCExpression tree) { method in class:Lower
[all...]
/openjdk7/jdk/src/solaris/native/java/io/
H A DUnixFileSystem_md.c147 if (access(path, mode) == 0) {
158 jint access,
167 switch (access) {
392 /* Preserve access time */
156 Java_java_io_UnixFileSystem_setPermission(JNIEnv *env, jobject this, jobject file, jint access, jboolean enable, jboolean owneronly) argument
/openjdk7/jdk/src/windows/native/java/io/
H A Dio_util_md.c228 const DWORD access = local
258 access, /* Read and/or write permission */
267 h = CreateFile(_ps, access, sharing, NULL, disposition,
430 * FlushFileBuffers functions fails with "access denied" in such a
431 * case. So we only signal an error if the error is *not* "access
H A DWinNTFileSystem_md.c386 jobject file, jint access)
397 switch (access) {
417 jint access,
424 if (access == java_io_FileSystem_ACCESS_READ ||
425 access == java_io_FileSystem_ACCESS_EXECUTE) {
472 /* Device query access */
385 Java_java_io_WinNTFileSystem_checkAccess(JNIEnv *env, jobject this, jobject file, jint access) argument
415 Java_java_io_WinNTFileSystem_setPermission(JNIEnv *env, jobject this, jobject file, jint access, jboolean enable, jboolean owneronly) argument
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DCodeHTML.java531 // Get method's access flags
532 String access = Utility.accessToString(method.getAccessFlags());
533 access = Utility.replace(access, " ", " ");
537 file.print("<P><B><FONT COLOR=\"#FF0000\">" + access + "</FONT>&nbsp;" +
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.hpp78 // Reflective array access. Returns type code. Throws ArrayIndexOutOfBoundsException.
94 AccessFlags access,
H A Dreflection.cpp416 // acc : declared field access
458 // Verify that current_class can access new_class. If the classloader_only
498 // If either is on the other's host_klass chain, access is OK,
519 AccessFlags access,
522 // Verify that current_class can access a field of field_class, where that
523 // field's access bits are "access". We assume that we've already verified
524 // that current_class can access field_class.
536 access.is_public()) {
540 if (access
516 verify_field_access(klassOop current_class, klassOop resolved_class, klassOop field_class, AccessFlags access, bool classloader_only, bool protected_restriction) argument
959 bool access = Reflection::reflect_check_access(klass(), reflected_method->access_flags(), target_klass(), is_method_invoke, CHECK_NULL); local
[all...]
/openjdk7/jdk/src/windows/native/java/lang/
H A DProcessImpl_md.c342 const DWORD access = (FILE_GENERIC_WRITE & ~FILE_WRITE_DATA); local
354 access, /* Read and/or write permission */
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A Dir.idl158 Visibility access;
306 IR objects that represent the OMG IDL types. It provides access
329 Repository is an interface that provides global access to the
660 attribute Visibility access;
712 in Visibility access
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A Dir.idl159 Visibility access;
307 IR objects that represent the OMG IDL types. It provides access
330 Repository is an interface that provides global access to the
661 attribute Visibility access;
713 in Visibility access
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DParser.jj68 <ACCESS: "access">
217 "{" jjtn000.com= Communities() jjtn000.access= Access() Managers() "}"/*@bgen(jjtree)*/
312 "access" "=" ( <RO> {jjtn000.access= RO;}
314 <RW> {jjtn000.access= RW;}
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java73 * Pseudo access flag used to denote constructors.
162 private int access; field in class:MethodWriter
430 * @param access the method's access flags (see {@link Opcodes}).
443 final int access,
458 this.access = access;
475 this.access |= ACC_CONSTRUCTOR;
479 if ((access & Opcodes.ACC_STATIC) != 0) {
1268 f.initInputFrame(cw, access, arg
441 MethodWriter( final ClassWriter cw, final int access, final String name, final String desc, final String signature, final String[] exceptions, final boolean computeMaxs, final boolean computeFrames) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DGenerateCharacter.java1537 * The genAccess method generates source code for one table access expression.
1561 String access = null;
1571 (mask == 0) ? access : "(" + access + "|" + masked + ")";
1588 access = extracted;
1590 return access;
1883 String access = genAccess("A", "ch", (identifiers ? 2 : 32));
1885 for (int j=0; j<access.length(); ++j) {
1886 char ch = access.charAt(j);
1892 System.out.println(" ) " + totalBytes + " " + accessComplexity + " " + access);
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DValueUtility.java252 members[i].access = PRIVATE_MEMBER;
256 members[i].access = PUBLIC_MEMBER;
258 members[i].access = PRIVATE_MEMBER;
/openjdk7/jdk/src/share/classes/sun/util/logging/
H A DPlatformLogger.java584 JavaLangAccess access = SharedSecrets.getJavaLangAccess();
586 int depth = access.getStackTraceDepth(throwable);
594 access.getStackTraceElement(throwable, ix);
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c880 CCerror(context, "Inconsistent access bits.");
983 CCerror(context, "Inconsistent access bits.");
1509 int access; local
1519 access = JVM_GetCPFieldModifiers
1522 access = JVM_GetCPMethodModifiers
1525 if (access != -1) {
1533 if (access == -1) {
1535 } else if (access & JVM_ACC_PROTECTED) {
2287 CCerror(context, "Bad access to protected data");
2349 CCerror(context, "Bad access t
2473 enum { ACCESS_NONE, ACCESS_SINGLE, ACCESS_DOUBLE } access = ACCESS_NONE; local
[all...]
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c707 if (access(libjava, F_OK) == 0) {
714 if (access(libjava, F_OK) == 0) {
720 if (access(libjava, F_OK) == 0) {
1564 return ((access(buffer, X_OK) == 0) ? 1 : 0);
1783 * applications. (We don't have access to these mutexes within libc and
/openjdk7/jdk/make/tools/GenerateCharacter/
H A Dcheck_class.c.template95 if (mb->fb.access & ACC_STATIC) {
116 if (mb->fb.access & ACC_FINAL) {
/openjdk7/jdk/src/solaris/demo/jvmti/hprof/
H A Dhprof_md.c395 if (access(buffer, F_OK) == 0) {
/openjdk7/jdk/make/mksample/jmx/jmx-scandir/
H A DMakefile77 $(SAMPLE_DST_DIR)/src/etc/access.properties \
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceClass.java89 * constructor access methods within a package-member class is
93 * one or more classes needing such an access method.
246 // Make sure the access permissions are self-consistent:
471 * allows access to deprecated features that are being compiled
551 // Save context enclosing class for later access
561 // Validate access for all inner-class components
721 env.error(where, "cant.access.class", getSuperClass());
722 // Might it be a better recovery to let the access go through?
726 // Might it be a better recovery to let the access go through?
822 // Check superinterface access i
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionFactory.java172 int access; field in class:InstructionFactory.MethodObject
179 access = acc;
245 * @param kind how to access, i.e., GETFIELD, PUTFIELD, GETSTATIC, PUTSTATIC
/openjdk7/jdk/src/macosx/bin/
H A Djava_md_macosx.c616 if (access(libjava, F_OK) == 0) {
622 if (access(libjava, F_OK) == 0) {
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java498 if (!Modifier.isPrivate(m.access)) continue;
499 if (!Modifier.isStatic(m.access)) continue;
1414 public short access, thisc, superc; field in class:Indify.ClassFile
1425 access = in.readShort(); thisc = in.readShort(); superc = in.readShort();
1442 access, thisc, superc, interfaces,
1477 public short access, name, type; field in class:Indify.Member
1480 access = in.readShort(); name = in.readShort(); type = in.readShort();
1484 writeOutputs(out, access, name, type, attrs);

Completed in 119 milliseconds

1234