Searched refs:control (Results 1 - 18 of 18) sorted by relevance

/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/tomcat/util/threads/
H A DThreadWithAttributes.java76 private Object control; field in class:ThreadWithAttributes
85 public ThreadWithAttributes(Object control, Runnable r) { argument
87 this.control=control;
90 public final Object[] getThreadData(Object control ) {
94 public final void setThreadData(Object control, Object thData[] ) { argument
101 public final void setNote( Object control, int id, Object value ) { argument
102 if( this.control != control ) return;
108 public final String getCurrentStage(Object control) { argument
116 getParam(Object control) argument
121 setCurrentStage(Object control, String currentStage) argument
126 setParam( Object control, Object param ) argument
131 getNote(Object control, int id ) argument
139 getAttributes(Object control) argument
[all...]
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/jtsxa/
H A DUtility.java68 * @return the current control object, or null if the Control cannot be obtained.
72 Control control = null;
79 control = current.get_control();
84 return control;
88 * Obtain the coordinator object from the supplied control.
89 * <p>If a null control is supplied, an null coordinator will be returned.
91 * @param control the control object for which the coordinator
99 public static Coordinator getCoordinator(Control control) { argument
102 if (control
[all...]
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DTerminatorImpl.java104 ControlImpl control = null; field in class:TerminatorImpl
140 * sets the control object that points to this terminator.
142 * @param control the control object this terminator belongs to.
144 void setControl(ControlImpl control) { argument
146 this.control = control;
180 control.getLocalTID(status);
202 if (control.isOutgoing()) {
253 control
[all...]
H A DRegisteredStatics.java131 * @param control The transaction whose association has started.
138 void distributeStart(ControlImpl control, boolean begin) { argument
145 coord = control.get_coordinator();
187 * @param control The transaction whose association has ended.
195 void distributeEnd(ControlImpl control, boolean complete) { argument
202 coord = control.get_coordinator();
H A DCurrentImpl.java155 * current thread of control has pending non-transactional work.
206 Control control = coord.create_subtransaction();
208 // This control object may be remote, if the original Control object was.
213 JControl jcontrol = JControlHelper.narrow(control);
221 controlImpl = new ControlImpl(control);
259 Control control = factory.create(timeOut);
261 // This control object is remote.
266 JControl jcontrol = JControlHelper.narrow(control);
275 controlImpl = new ControlImpl(control);
302 "Before invoking CurrentTransaction.setCurrent(control,tru
[all...]
H A DCurrentTransaction.java154 * @param control The Control object to be made the current one.
161 static boolean setCurrent( ControlImpl control, argument
194 control.pushControl(current,outStatus);
223 statics.distributeStart(control,stack);
229 threadContexts.put(thread,control);
231 m_tid.set(control);
236 suspended.removeElement(control);
238 // Increment the association count for the control object
240 control.incrementAssociation();
391 // thread of control
[all...]
H A DControlImpl.java177 // pass this control obj to the terminator to cleanup properly (Ram J)
385 * @param control The Control object to be stacked.
395 synchronized void pushControl( ControlImpl control, argument
412 stacked = control;
885 synchronized public static final ControlImpl servant( JControl control ) {
889 // servant from our local POA for a proxy control object.
891 if ( control != null && Configuration.getProxyChecker().isProxy(control)) {
895 if( control instanceof ControlImpl ) {
896 result = (ControlImpl)control;
[all...]
H A DLogCursor.java105 * @param control The LogControl object for the log instance.
114 LogCursor( LogControl control, argument
120 logControl = control;
H A DLogHandle.java150 * the control data to permanent storage
198 /**The offset in the control file for the first restart data record.
202 /**The offset in the control file for the second restart data record.
214 /**The size of a control file which is allocated at open time.
242 * @param control The log instance.
244 * @param controlFH The handle of the control file.
253 LogHandle( LogControl control, argument
263 logControl = control;
602 // Log_FileDescriptor block out to the control file (implied sync)
829 // Issue a WRITEV request to copy the restart data to the control fil
[all...]
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/jta/
H A DTransactionImpl.java78 private Control control; field in class:TransactionImpl
94 public TransactionImpl(Control control, GlobalTID gtid) argument
97 this.control = control;
106 return control;
122 ((ControlImpl) control).get_localTerminator().commit(true);
124 control.get_terminator().commit(true);
162 ((ControlImpl) control).get_localTerminator().rollback();
164 control.get_terminator().rollback();
212 tranState.startAssociation(res, control, statu
[all...]
H A DTransactionManagerImpl.java458 Control control = current.get_control();
459 if (control == null) {
462 return createTransactionImpl(control);
486 Control control = ((TransactionImpl) suspended).getControl();
488 current.resume(control);
508 Control control = current.suspend();
509 if (control == null) return null;
510 return createTransactionImpl(control);
555 private Transaction createTransactionImpl(Control control) argument
560 gtid = ((ControlImpl) control)
[all...]
H A DTransactionState.java218 private Xid computeXid(XAResource res, Control control) argument
237 xid = Utility.getXID(((ControlImpl) control).get_localCoordinator());
239 xid = Utility.getXID(control.get_coordinator());
257 synchronized public void startAssociation(XAResource res, Control control, argument
278 xid = computeXid(res, control);
287 ((ControlImpl) control).get_localCoordinator().register_resource(ref);
290 control.get_coordinator().register_resource(ref);
419 Control control,
433 ((ControlImpl) control).get_localCoordinator().register_synchronization(syncImpl);
435 control
418 registerSynchronization(Synchronization sync, Control control, boolean interposed) argument
[all...]
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/impl/
H A DClassAction.java161 private final ClassControl control; field in class:ClassAction
266 public ClassAction(ClassControl control, argument
268 this.control = control;
281 env.message("scanning class " + control.userClassName());//NOI18N
285 affirm(control.persistType() > ClassControl.TransientOnly);
301 = (control.persistType() == ClassControl.PersistCapable);
327 env.message("augmenting class " + control.userClassName());//NOI18N
358 !control.hasPersistenceCapableHooksProvided()) {
359 env.message("modifying class " + control
[all...]
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/utils/RecoveryHooks/
H A DFailureInducer.java317 ControlImpl control = CurrentTransaction.getCurrent();
318 if (control != null) {
319 gtid = control.getGlobalTID();
/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/core/
H A DMsgContext.java104 private Object control; field in class:MsgContext
289 return control;
292 public void setControl(Object control) { argument
293 this.control = control;
/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/common/
H A DHandlerRequest.java290 Object control=ep.getControl();
304 twa.setCurrentStage(control, "JkDecode");
308 twa.setCurrentStage(control, "JkService");
309 twa.setParam(control,
339 twa.setCurrentStage(control, "JkDone");
/glassfish-3.1.2/packager/nucleus-base/config/
H A Dasenv.bat51 REM a definition of AS_JAVA to control which version of Java GlassFish
/glassfish-3.1.2/tests/quicklook/web/jruby/helloapp/public/javascripts/
H A Dcontrols.js513 var control = this.options[mode + 'Control'];
515 if ('button' == control) {
524 } else if ('link' == control) {

Completed in 42 milliseconds