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

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DEventRequestSpec.java50 EventRequest resolved = null; field in class:EventRequestSpec
69 if ((resolved == null) &&
73 resolved = resolveEventRequest(event.referenceType());
83 * considered "resolved", since future class loads
88 resolved = null;
94 return resolved;
99 Env.vm().eventRequestManager().deleteEventRequest(resolved());
125 resolved = resolveEventRequest(refType);
128 return resolved;
133 if (resolved
177 EventRequest resolved() { method in class:EventRequestSpec
[all...]
/openjdk7/jdk/src/solaris/native/java/io/
H A Dcanonicalize_md.c190 canonicalize(char *original, char *resolved, int len) argument
203 if (realpath(original, resolved)) {
205 collapse(resolved);
229 r = realpath(path, resolved);
249 /* Append unresolved subpath to resolved subpath */
265 /* Nothing resolved, so just return the original path */
266 strcpy(resolved, path);
267 collapse(resolved);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapReferralException.java92 * resolved.
334 * Sets the flag to indicate that the target name has been resolved.
336 void setNameResolved(boolean resolved) { argument
340 foundEntry = resolved;
/openjdk7/jdk/test/java/net/URL/
H A DTest.java124 boolean resolved() { method in class:Test
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceMember.java82 // not until type names are resolved: createArgumentFields(argNames);
311 * Set array of name-resolved exceptions directly, e.g., for access methods.
322 public boolean resolved = false; field in class:SourceMember
327 // A member should only be resolved once. For a constructor, it is imperative
331 if (resolved) {
340 resolved = true;
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipPath.java285 byte[] resolved = null;
287 resolved = new byte[path.length + o.path.length];
288 System.arraycopy(path, 0, resolved, 0, path.length);
289 System.arraycopy(o.path, 0, resolved, path.length, o.path.length);
291 resolved = new byte[path.length + 1 + o.path.length];
292 System.arraycopy(path, 0, resolved, 0, path.length);
293 resolved[path.length] = '/';
294 System.arraycopy(o.path, 0, resolved, path.length + 1, o.path.length);
296 return new ZipPath(zfs, resolved);
368 byte[] resolved
420 private volatile byte[] resolved = null; field in class:ZipPath
[all...]
/openjdk7/jdk/src/share/instrument/
H A DInvocationAdapter.c791 char* resolved; local
804 resolved = resolve(parent, path);
805 jvmtierr = (*jvmtienv)->AddToBootstrapClassLoaderSearch(jvmtienv, resolved);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateTable_sparc.cpp413 Label retry, resolved, Long, exit; local
2101 Label resolved;
2104 // We are resolved if the f1 field contains a non-null object (CallSite, MethodType, etc.)
2114 __ br(Assembler::notEqual, false, Assembler::pt, resolved);
2120 __ cmp(Lbyte_code, (int) bytecode()); // have we resolved this bytecode?
2121 __ br(Assembler::equal, false, Assembler::pt, resolved);
2145 // Update registers with resolved info
2150 __ bind(resolved);
2911 // access constant pool cache (is resolved)
3255 // this too but that's only if the entry isn't already resolved, s
[all...]
/openjdk7/jdk/test/java/net/URI/
H A DTest.java191 boolean resolved() { method in class:Test
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_solinux.c921 char *resolved = (char*)JLI_MemAlloc(PATH_MAX+1); local
922 if (resolved != NULL) {
923 exec_path = realpath(dlinfo.dli_fname, resolved);
925 JLI_MemFree(resolved);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DlinkResolver.cpp86 // we should pick the vtable index from the resolved method.
104 THROW_MSG(vmSymbols::java_lang_InternalError(), "resolved method is null");
334 // If the resolved klass is an array class, and the declaring class
421 // 2. lookup method in resolved klass and its super klasses
425 // 3. lookup method in all the interfaces implemented by the resolved klass
480 " and the class loader (instance of %s) for resolved class, %s, have"
486 char* resolved = instanceKlass::cast(resolved_klass())->name()->as_C_string(); local
488 strlen(current) + strlen(loader2) + strlen(resolved) +
492 resolved, failed_type_name);
543 "resolved clas
549 char* resolved = instanceKlass::cast(resolved_klass())->name()->as_C_string(); local
[all...]
/openjdk7/jdk/src/macosx/bin/
H A Djava_md_macosx.c727 char *resolved = (char*)JLI_MemAlloc(PATH_MAX+1); local
728 if (resolved != NULL) {
729 exec_path = realpath(dlinfo.dli_fname, resolved);
731 JLI_MemFree(resolved);
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixNativeDispatcher.c797 char resolved[PATH_MAX+1]; local
801 if (realpath(path, resolved) == NULL) {
804 jsize len = (jsize)strlen(resolved);
807 (*env)->SetByteArrayRegion(env, result, 0, len, (jbyte*)resolved);
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp55 // A resolved constantPool entry will contain a klassOop, otherwise a Symbol*.
61 // Already resolved - return entry.
120 // some other thread has beaten us and has resolved the class.
187 // Only updated constant pool - if it is resolved.
196 assert(entry.is_oop() && entry.get_oop()->is_klass(), "must be resolved at this point");
243 // This is an interface for the compiler that allows accessing non-resolved entries
408 // A resolved constantPool entry will contain a klassOop, otherwise a Symbol*.
413 // Already resolved - return entry's name.
433 // Test entry type in case string is resolved while in here.
458 // A resolved constan
520 klassOop resolved = klass_at_impl(this_oop, index, CHECK_NULL); local
[all...]
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c986 char *resolved = (char*)JLI_MemAlloc(PATH_MAX+1); local
987 if (resolved != NULL) {
988 exec_path = realpath(dlinfo.dli_fname, resolved);
990 JLI_MemFree(resolved);
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodHandles.cpp154 // Note: This only works if the MemberName has already been resolved.
161 if (vmtarget == NULL) return NULL; // not resolved
215 // if Java code needs them as resolved String and MethodType objects.
228 // The resolved MemberName must not be accompanied by an appendix argument,
267 // if Java code needs them as resolved String and Class objects.
268 // Note that the incoming type oop might be pre-resolved (non-null).
558 // They are optional, since reference types can be resolved lazily.
579 // Already resolved.
1039 Handle resolved = MethodHandles::resolve_MemberName(mname, CHECK_NULL); local
1040 if (resolved
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassDefinition.java61 protected boolean resolved; field in class:ClassDefinition
200 // This method should not be called if the superclass has not been resolved.
965 // be resolved late -- see 'addMember(env,field)' below.
1665 * at some point a class is not found, the partially-resolved
1714 // return partially-resolved name someone else can fail on
1775 // return partially-resolved name someone else can fail on
1799 * processed, inheritance links have not been resolved yet.
1938 if (resolved) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateTable_x86_32.cpp367 // unresolved string - get the resolved string
371 // unresolved class - get the resolved class
380 // resolved class - need to call vm to get java mirror of the class
2090 Label resolved; local
2092 // We are resolved if the f1 field contains a non-null object (CallSite, MethodType, etc.)
2100 __ jcc(Assembler::notEqual, resolved);
2105 __ cmpl(temp, (int) bytecode()); // have we resolved this bytecode?
2106 __ jcc(Assembler::equal, resolved);
2130 // Update registers with resolved info
2134 __ bind(resolved);
3409 Label done, is_null, ok_is_subtype, quicked, resolved; local
3460 Label done, is_null, ok_is_subtype, quicked, resolved; local
[all...]
H A DtemplateTable_x86_64.cpp381 // unresolved string - get the resolved string
385 // unresolved class - get the resolved class
394 // resolved class - need to call vm to get java mirror of the class
2132 Label resolved; local
2134 // We are resolved if the f1 field contains a non-null object (CallSite, MethodType, etc.)
2142 __ jcc(Assembler::notEqual, resolved);
2147 __ cmpl(temp, (int) bytecode()); // have we resolved this bytecode?
2148 __ jcc(Assembler::equal, resolved);
2185 // Update registers with resolved info
2189 __ bind(resolved);
3468 Label done, is_null, ok_is_subtype, quicked, resolved; local
3521 Label done, is_null, ok_is_subtype, quicked, resolved; local
[all...]

Completed in 102 milliseconds