Searched refs:info (Results 1 - 25 of 889) sorted by path

1234567891011>>

/openjdk10/
H A DMakefile37 $(info Error: '$(MAKE)' does not seem to be GNU Make, which is a requirement.)
38 $(info Check your path, or upgrade to GNU Make 3.81 or newer.)
44 $(info Error: This version of GNU Make is too low ($(MAKE_VERSION)).)
45 $(info Check your path, or upgrade to GNU Make 3.81 or newer.)
/openjdk10/common/autoconf/
H A Dgenerated-configure.sh1398 infodir='${datarootdir}/info'
1542 -infodir | --infodir | --infodi | --infod | --info | --inf)
1544 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
1878 # Double slashes in file names in object file debugging info
1942 --infodir=DIR info documentation [DATAROOTDIR/info]
1992 --enable-zip-debug-info Deprecated. Option is kept for backwards
17275 # Check for a meta data info file in the root of the devkit
17276 if test -f "$DEVKIT_ROOT/devkit.info"; then
17277 . $DEVKIT_ROOT/devkit.info
[all...]
/openjdk10/corba/make/
H A DMakefile40 $(info Will run $(subsystem_name) target on top-level Makefile)
41 $(info WARNING: This is a non-recommended way of building!)
42 $(info ===================================================)
44 $(info Cannot locate top-level Makefile. Is this repo not checked out as part of a complete forest?)
/openjdk10/corba/make/gensrc/
H A DGensrc-java.corba.gmk50 EXCLUDE_FILES := ResourceBundleUtil.java module-info.java))
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/interceptors/
H A DInterceptorInvoker.java112 IORInfoImpl info = new IORInfoImpl( oa );
130 interceptor.establish_components( info );
139 info.makeStateEstablished() ;
147 interceptor30.components_established( info );
152 // in case a reference to info escapes this scope.
155 info.makeStateDone() ;
212 * of info.getStartingPointCall()
214 void invokeClientInterceptorStartingPoint( ClientRequestInfoImpl info ) {
222 info.setPICurrentPushed( true );
223 info
[all...]
H A DPIHandlerImpl.java163 // ThreadLocal containing a stack to store client request info objects
172 // ThreadLocal containing the current server request info object.
269 // RPC framework can pass info between the PI stack and the
353 // and reply status info in the info object:
354 ClientRequestInfoImpl info = peekClientRequestInfoImplStack();
355 interceptorInvoker.invokeClientInterceptorStartingPoint( info );
359 short replyStatus = info.getReplyStatus();
368 info.getException() );
417 // and reply status info i
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAImpl.java1622 public void getInvocationServant( OAInvocationInfo info )
1635 servant = mediator.getInvocationServant( info.id(),
1636 info.getOperation() );
1641 info.setServant( servant ) ;
H A DPOAPolicyMediatorImpl_NR_USM.java97 OAInvocationInfo info = orb.peekInvocationInfo();
103 locator.postinvoke(info.id(), (POA)(info.oa()),
104 info.getOperation(), info.getCookieHolder().value,
105 (Servant)(info.getServantContainer()) );
H A DPOAPolicyMediatorImpl_R_USM.java229 OAInvocationInfo info = orb.peekInvocationInfo();
230 byte[] id = info.id() ;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/oa/toa/
H A DTOAImpl.java121 * @param info is the request containing the rest of the request
123 public void getInvocationServant( OAInvocationInfo info )
125 java.lang.Object servant = servants.lookupServant( info.id() ) ;
130 info.setServant( servant ) ;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orb/
H A DORBImpl.java430 // ignore it XXX log this as info
1537 public void pushInvocationInfo( OAInvocationInfo info )
1543 stack.push( info ) ;
1702 // XXX isTransient info should be stored in subcontract registry
1806 // Reset retry so recursive calls will get a new info object.
H A DORBSingleton.java696 public void pushInvocationInfo( OAInvocationInfo info )
H A DParserTable.java196 // NOTE: We are putting SERVER_HOST_NAME configuration info into
896 public void pre_init( ORBInitInfo info )
900 public void post_init( ORBInitInfo info )
917 public void pre_init( ORBInitInfo info )
921 public void post_init( ORBInitInfo info )
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/protocol/
H A DCorbaMessageMediatorImpl.java1653 // See CDRInput/OutputObject.close() for more info.
1693 // and pass necessary info to response constructors located
2077 // and have not completed their lifecycle (otherwise the info stack
2250 OAInvocationInfo info = orb.peekInvocationInfo() ;
2251 ObjectAdapter oa = info.oa();
H A DCorbaServerRequestDispatcherImpl.java323 OAInvocationInfo info = objectAdapter.makeInvocationInfo(objectId);
324 info.setOperation(operation);
325 orb.pushInvocationInfo(info);
326 objectAdapter.getInvocationServant(info);
327 return info.getServantContainer() ;
845 // the code sets again using the new info.
H A DFullServantCacheLocalCRDImpl.java59 // Note that info is shared across multiple threads
62 OAInvocationInfo info = new OAInvocationInfo( cachedInfo, operation ) ;
63 orb.pushInvocationInfo( info ) ;
66 info.oa().enter() ;
71 return info ;
H A DInfoOnlyServantCacheLocalCRDImpl.java54 // Note that info is shared across multiple threads
57 OAInvocationInfo info = new OAInvocationInfo(cachedInfo, operation) ;
58 orb.pushInvocationInfo( info ) ;
60 return info ;
H A DPOALocalCRDImpl.java72 OAInvocationInfo info = oa.makeInvocationInfo( objectId ) ;
73 orb.pushInvocationInfo( info ) ;
75 return info ;
100 OAInvocationInfo info = null ;
103 info = servantEnter( oa ) ;
104 info.setOperation( operation ) ;
113 oa.getInvocationServant( info );
114 if (!checkForCompatibleServant( info, expectedType ))
147 if (!checkForCompatibleServant( info, expectedType )) {
152 return info;
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/monitoring/
H A DMonitoredAttributeBase.java42 public MonitoredAttributeBase( String name, MonitoredAttributeInfo info ) {
44 this.attributeInfo = info;
60 void setMonitoredAttributeInfo( MonitoredAttributeInfo info ) {
61 this.attributeInfo = info;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/oa/
H A DOAInvocationInfo.java68 public OAInvocationInfo( OAInvocationInfo info, String operation ) argument
70 this.servant = info.servant ;
71 this.servantContainer = info.servantContainer ;
72 this.cookieHolder = info.cookieHolder ;
73 this.oa = info.oa;
74 this.oid = info.oid;
75 this.factory = info.factory ;
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 ;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/orb/
H A DORB.java148 public abstract void pushInvocationInfo( OAInvocationInfo info ) ;
/openjdk10/corba/src/java.corba/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 ) ;
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DUtil.java139 String info = "";
142 info = info + '[' + parseExpression ((Expression)e.nextElement ()) + ']';
143 return info;
279 * sequences are converted to their info types. javaQualifiedName
424 * Fill the info field with the full name (with array info) of the type.
440 // If this entry's info has already been processed
466 // <d59437> Value boxes may contain types lacking typename info., which

Completed in 263 milliseconds

1234567891011>>