Searched refs:info (Results 201 - 225 of 541) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dos_solaris_x86.cpp364 JVM_handle_solaris_signal(int sig, siginfo_t* info, void* ucVoid, argument
369 if (sig == SIGILL && info->si_addr == (caddr_t)sse_check) {
381 if (os::Solaris::chained_handler(sig, info, ucVoid)) {
414 } else if (os::Solaris::chained_handler(sig, info, ucVoid)) {
423 if (info == NULL || info->si_code <= 0 || info->si_code == SI_NOINFO) {
425 info = NULL;
427 assert(sig == info->si_signo, "bad siginfo");
436 if (info !
[all...]
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DThreadMXBeanProxy.java126 void checkThreadInfo(ThreadInfo info) { argument
127 if (!getName().equals(info.getThreadName())) {
128 throw new RuntimeException("Name: " + info.getThreadName() +
132 MonitorInfo[] monitors = info.getLockedMonitors();
141 StackTraceElement[] stacktrace = info.getStackTrace();
155 System.out.println(info);
160 LockInfo[] syncs = info.getLockedSynchronizers();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DRegisterPanel.java78 RegisterInfo info = (RegisterInfo) registers.get(row);
82 return info.getName();
85 Address val = info.getValue();
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DDataLine.java290 * Constructs a data line's info object from the specified information,
295 * @param lineClass the class of the data line described by the info object
316 * Constructs a data line's info object from the specified information,
321 * @param lineClass the class of the data line described by the info object
342 * Constructs a data line's info object from the specified information,
347 * @param lineClass the class of the data line described by the info object
422 * Determines whether the specified info object matches this one.
431 public boolean matches(Line.Info info) { argument
433 if (! (super.matches(info)) ) {
437 Info dataLineInfo = (Info)info;
[all...]
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableExample3.java159 for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
160 if ("Nimbus".equals(info.getName())) {
161 UIManager.setLookAndFeel(info.getClassName());
/openjdk7/jdk/test/javax/swing/text/JTextComponent/5074573/
H A Dbug5074573.java50 for (UIManager.LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
51 UIManager.setLookAndFeel(info.getClassName());
52 System.out.println(info);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp509 FieldAccessInfo info; variable
516 LinkResolver::resolve_field(info, pool, get_index_u2_cpcache(thread, bytecode),
524 TosState state = as_TosState(info.field_type());
537 instanceKlass *klass = instanceKlass::cast(info.klass()->as_klassOop());
544 if (is_put || !info.access_flags().is_final()) {
552 info.klass(),
553 info.field_index(),
554 info.field_offset(),
556 info.access_flags().is_final(),
557 info
677 CallInfo info; local
737 CallInfo info; local
764 CallInfo info; local
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttr.java221 Symbol owner = env.info.scope.owner;
330 Env<AttrContext> localEnv = env.dup(node, env.info.dup());
593 while (lintEnv.info.lint == null)
599 // env.info.enclVar.attributes_field might not yet have been evaluated, and so might be
602 if (env.info.enclVar.attributes_field == null)
603 env.info.lint = lintEnv.info.lint;
605 env.info.lint = lintEnv.info.lint.augment(env.info
[all...]
H A DEnter.java158 while (lintEnv.info.lint == null)
160 localEnv.info.lint = lintEnv.info.lint.augment(sym.attributes_field, sym.flags());
180 * to by the environments info.scope field.
193 env.dup(tree, env.info.dup(new Scope(tree.sym)));
196 localEnv.info.isSelfCall = false;
197 localEnv.info.lint = null; // leave this to be filled in by Attr,
211 localEnv.info.scope = tree.namedImportScope;
212 localEnv.info.lint = lint;
220 localEnv.info
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/oa/
H A DObjectAdapter.java105 * <li>info = oa.makeInvocationInfo( oid )</li>
106 * <li>info.setOperation( operation )</li>
107 * <li>push info</li>
108 * <li>oa.getInvocationServant( info )</li>
113 * <li>pop info</li>
123 * <li>info = oa.makeInvocationInfo( oid )</li>
124 * <li>info.setOperation( operation )</li>
125 * <li>push info</li>
126 * <li>oa.getInvocationServant( info )</li>
130 * <li>pop info</l
[all...]
H A DObjectAdapterBase.java183 abstract public void getInvocationServant( OAInvocationInfo info ) ;
197 OAInvocationInfo info = new OAInvocationInfo( this, objectId ) ;
198 info.setCopierFactory( getObjectCopierFactory() ) ;
199 return info ;
/openjdk7/hotspot/src/share/vm/code/
H A DcompiledIC.hpp147 void set_to_monomorphic(const CompiledICInfo& info);
151 bool is_optimized, bool static_bound, CompiledICInfo& info, TRAPS);
235 void set(const StaticCallInfo& info);
238 static void compute_entry(methodHandle m, StaticCallInfo& info);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventSupport.java227 notifiers.remove(notifier.info);
250 synchronized void removeDeadNotifier(NotifierArgs info) { argument
252 System.err.println("EventSupport.removeDeadNotifier: " + info.name);
254 notifiers.remove(info);
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dos_solaris_sparc.cpp312 JVM_handle_solaris_signal(int sig, siginfo_t* info, void* ucVoid, argument
321 if (os::Solaris::chained_handler(sig, info, ucVoid)) {
353 } else if (os::Solaris::chained_handler(sig, info, ucVoid)) {
362 if (info == NULL || info->si_code <= 0 || info->si_code == SI_NOINFO) {
364 info = NULL;
366 assert(sig == info->si_signo, "bad siginfo");
376 if (info != NULL && uc != NULL && thread != NULL) {
396 if (sig == SIGSEGV && info
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp1042 LIR_Op(LIR_Code code, LIR_Opr result, CodeEmitInfo* info) argument
1046 , _info(info)
1055 CodeEmitInfo* info() const { return _info; } function in class:LIR_Op
1116 LIR_OprList* arguments, CodeEmitInfo* info = NULL)
1117 : LIR_Op(code, result, info)
1143 CodeEmitInfo* info)
1144 : LIR_OpCall(code, addr, result, arguments, info)
1152 LIR_OprList* arguments, CodeEmitInfo* info)
1153 : LIR_OpCall(code, (address)vtable_offset, result, arguments, info)
1236 ciArrayKlass* expected_type, int flags, CodeEmitInfo* info);
1140 LIR_OpJavaCall(LIR_Code code, ciMethod* method, LIR_Opr receiver, LIR_Opr result, address addr, LIR_OprList* arguments, CodeEmitInfo* info) argument
1150 LIR_OpJavaCall(LIR_Code code, ciMethod* method, LIR_Opr receiver, LIR_Opr result, intptr_t vtable_offset, LIR_OprList* arguments, CodeEmitInfo* info) argument
1298 LIR_Op1(LIR_Code code, LIR_Opr opr, LIR_Opr result, BasicType type, LIR_PatchCode patch, CodeEmitInfo* info, LIR_MoveKind kind) argument
1307 LIR_Op1(LIR_Code code, LIR_Opr opr, CodeEmitInfo* info) argument
1752 LIR_OpLock(LIR_Code code, LIR_Opr hdr, LIR_Opr obj, LIR_Opr lock, LIR_Opr scratch, CodeStub* stub, CodeEmitInfo* info) argument
1779 LIR_OpDelay(LIR_Op* op, CodeEmitInfo* info) argument
1932 call_opt_virtual(ciMethod* method, LIR_Opr receiver, LIR_Opr result, address dest, LIR_OprList* arguments, CodeEmitInfo* info) argument
1937 call_static(ciMethod* method, LIR_Opr result, address dest, LIR_OprList* arguments, CodeEmitInfo* info) argument
1941 call_icvirtual(ciMethod* method, LIR_Opr receiver, LIR_Opr result, address dest, LIR_OprList* arguments, CodeEmitInfo* info) argument
1945 call_virtual(ciMethod* method, LIR_Opr receiver, LIR_Opr result, intptr_t vtable_offset, LIR_OprList* arguments, CodeEmitInfo* info) argument
1949 call_dynamic(ciMethod* method, LIR_Opr receiver, LIR_Opr result, address dest, LIR_OprList* arguments, CodeEmitInfo* info) argument
2005 safepoint(LIR_Opr tmp, CodeEmitInfo* info) argument
2019 null_check(LIR_Opr opr, CodeEmitInfo* info) argument
2020 throw_exception(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info) argument
2130 call_runtime(address routine, LIR_Opr tmp, LIR_Opr result, LIR_OprList* arguments, CodeEmitInfo* info) argument
2143 arraycopy(LIR_Opr src, LIR_Opr src_pos, LIR_Opr dst, LIR_Opr dst_pos, LIR_Opr length, LIR_Opr tmp, ciArrayKlass* expected_type, int flags, CodeEmitInfo* info) argument
[all...]
/openjdk7/jdk/test/java/beans/Performance/
H A DTestIntrospector.java147 BeanInfo info = Introspector.getBeanInfo(type);
151 sb.append('\t').append(info.getPropertyDescriptors().length);
152 sb.append('\t').append(info.getEventSetDescriptors().length);
153 sb.append('\t').append(info.getMethodDescriptors().length);
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djmemnobs.c91 jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info, argument
/openjdk7/jdk/test/javax/management/mxbean/
H A DStandardMBeanOverrideTest.java90 protected void cacheMBeanInfo(MBeanInfo info) { argument
91 super.cacheMBeanInfo(info);
144 protected void cacheMBeanInfo(MBeanInfo info) { argument
145 super.cacheMBeanInfo(info);
/openjdk7/jdk/src/share/classes/sun/management/
H A DGarbageCollectionNotifInfoCompositeData.java50 public GarbageCollectionNotifInfoCompositeData(GarbageCollectionNotificationInfo info) { argument
51 this.gcNotifInfo = info;
58 public static CompositeData toCompositeData(GarbageCollectionNotificationInfo info) { argument
60 new GarbageCollectionNotifInfoCompositeData(info);
95 "CompositeType for GC notification info",
H A DGarbageCollectorImpl.java97 GcInfo info = getGcInfoBuilder().getLastGcInfo();
98 return info;
141 GarbageCollectionNotificationInfo info =
148 GarbageCollectionNotifInfoCompositeData.toCompositeData(info);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDragSourceProtocol.java150 TargetWindowInfo info = getTargetWindowInfo(window);
151 if (info == null) {
155 targetProxyWindow = info.getProxyWindow();
156 targetProtocolVersion = info.getProtocolVersion();
/openjdk7/langtools/test/tools/javac/failover/
H A DCheckAttributedTree.java91 * errors can be displayed in a gui viewer. For info on command line args,
427 * Utility class providing easy access to position and other info for a tree node.
636 scroll(body, getMinPos(enclPanel.info, selfPanel.info));
651 private void addHighlight(Highlighter h, Info info, Color c) { argument
652 int start = info.start;
653 int end = info.end;
661 h.addHighlight(info.start, info.end,
663 if (info
732 setInfo(Info info) argument
751 Info info; field in class:CheckAttributedTree.Viewer.InfoPanel
[all...]
/openjdk7/langtools/test/tools/javac/tree/
H A DTreePosTest.java88 * errors can be displayed in a gui viewer. For info on command line args,
437 * Utility class providing easy access to position and other info for a tree node.
624 scroll(body, getMinPos(enclPanel.info, selfPanel.info));
639 private void addHighlight(Highlighter h, Info info, Color c) { argument
640 int start = info.start;
641 int end = info.end;
649 h.addHighlight(info.start, info.end,
651 if (info
720 setInfo(Info info) argument
739 Info info; field in class:TreePosTest.Viewer.InfoPanel
[all...]
/openjdk7/langtools/make/tools/CompileProperties/
H A DCompileProperties.java65 void info(String msg); method in interface:CompileProperties.Log
91 public void info(String msg) {
282 log.info("usage:");
283 log.info(" java CompileProperties path_to_properties_file path_to_java_output_file [super_class]");
284 log.info(" -OR-");
285 log.info(" java CompileProperties {-compile path_to_properties_file path_to_java_output_file super_class} -or- -optionsfile filename");
286 log.info("");
287 log.info("Example:");
288 log.info(" java CompileProperties -compile test.properties test.java java.util.ListResourceBundle");
289 log.info(" jav
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/transport/
H A DTransportDefault.java64 public CorbaClientDelegate create( CorbaContactInfoList info ) {
66 (com.sun.corba.se.spi.orb.ORB)broker, info ) ;

Completed in 155 milliseconds

1234567891011>>