Searched defs:flags (Results 1 - 20 of 20) sorted by relevance

/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/
H A DRegexUtil.java74 Converts each String to a Pattern using wildcardToJavaRegex, passing the flags.
77 @param flags flags to pass to Pattern.compile
80 public static Pattern[] exprsToPatterns(final String[] exprs, int flags) argument
86 patterns[i] = Pattern.compile(wildcardToJavaRegex(exprs[i]), flags);
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/
H A DXAResourceImpl.java99 * @param flags One of TMSUCCESS, TMFAIL, or TMSUSPEND
101 public void end(Xid xid, int flags) throws XAException { argument
102 xar.end(xid, flags);
172 * must be used when no other flags are set in flags.
219 * @return flags One of TMNOFLAGS, TMJOIN, or TMRESUME
221 public void start(Xid xid, int flags) throws XAException { argument
224 xar.start(xid, flags);
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/
H A DPersistenceCapable.java67 * Returns the value of the JDO flags.
72 * Sets the value of the JDO flags, and returns the previous value.
74 void jdoSetFlags(byte flags); argument
H A DPersistenceManager.java62 public void setFlags(Object pc, byte flags); argument
H A DStateManager.java232 byte setFlags(byte flags); argument
H A DSQLStateManager.java4132 public byte setFlags(byte flags) { argument
4133 // RESOLVE: Need to verify that the flags are valid with the current
4135 return flags;
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/
H A DXAResourceWrapper.java77 public void end(Xid xid, int flags) throws XAException { argument
79 flagToString(flags));
80 res.end(xid, flags);
130 public void start(Xid xid, int flags) throws XAException { argument
132 flagToString(flags));
133 res.start(xid, flags);
H A DConnectorXAResource.java134 public void start(Xid xid, int flags) throws XAException { argument
154 public void end(Xid xid, int flags) throws XAException { argument
/glassfish-3.1.2/transaction/javax.transaction/src/main/java/javax/transaction/xa/
H A DXAResource.java102 * <p>If TMSUSPEND is specified in the flags, the transaction branch
116 * @param flags One of TMSUCCESS, TMFAIL, or TMSUSPEND.
123 void end(Xid xid, int flags) throws XAException; argument
194 * must be used when no other flags are set in the parameter.
266 * @param flags One of TMNOFLAGS, TMJOIN, or TMRESUME.
273 void start(Xid xid, int flags) throws XAException; argument
293 * Use TMNOFLAGS to indicate no flags value is selected.
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/jta/
H A DTransactionImpl.java229 public boolean delistResource(XAResource res, int flags) argument
249 tranState.endAssociation(res, flags);
250 if ((flags & XAResource.TMFAIL) != 0) {
H A DTransactionState.java348 public void endAssociation(XAResource xares, int flags) argument
357 if ((flags & XAResource.TMSUCCESS) != 0) {
360 } else if ((flags & XAResource.TMSUSPEND) != 0) {
378 if ((flags & XAResource.TMSUCCESS) != 0) {
381 } else if ((flags & XAResource.TMSUSPEND) != 0) {
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/
H A DAnnotatedClassAttribute.java94 public void setFlags(short flags) { argument
95 annotationFlags = flags;
152 out.println(" flags: " + annotationFlags);//NOI18N
H A DAnnotatedMethodAttribute.java92 public void setFlags(short flags) { argument
93 annotationFlags = flags;
154 out.println(" flags: " + annotationFlags);//NOI18N
H A DClassFile.java121 * Return the access flags for the class - see VMConstants
157 * Set the access flags for the class - see VMConstants
159 public void setAccessFlags (int flags) { argument
160 accessFlags = flags;
/glassfish-3.1.2/transaction/jta/src/test/java/com/sun/enterprise/transaction/
H A DAppTest.java861 public void start(Xid xid, int flags) throws XAException { } argument
862 public void end(Xid xid, int flags) throws XAException { } argument
863 public Xid[] recover(int flags) throws XAException { return null; } argument
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dgzio.c164 Z_DEFLATED, 0 /*flags*/, 0,0,0,0 /*time*/, 0 /*xflags*/, OS_CODE);
266 int flags; /* flags byte */ local
284 flags = get_byte(s);
285 if (method != Z_DEFLATED || (flags & RESERVED) != 0) {
293 if ((flags & EXTRA_FIELD) != 0) { /* skip the extra field */
299 if ((flags & ORIG_NAME) != 0) { /* skip the original file name */
302 if ((flags & COMMENT) != 0) { /* skip the .gz file comment */
305 if ((flags & HEAD_CRC) != 0) { /* skip the header crc */
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/impl/
H A DMethodAnnotater.java61 //@olsen: subst: (object)state -> flags
507 // An inititalizer - either force the fetchThis, dirtyThis flags
510 // turn on the fetchThis, dirtyThis flags to inhibit fetches
516 // Make sure that the fetchThis, dirtyThis flags are turned off
565 int flags = 0;
643 int flags = 0;
666 flags |= FetchThis;
668 flags |= FetchPersistent;
672 flags |= DFGField;
676 flags |
2753 InsnNote(Insn i, int flags, int argWord, String stackSig, String targetClassName, String targetFieldName, int targetFieldIndex, String targetPCRootClass) argument
[all...]
/glassfish-3.1.2/transaction/jts/src/test/java/com/sun/enterprise/transaction/jts/
H A DAppTest.java1594 public void start(Xid xid, int flags) argument
1606 public void end(Xid xid, int flags) argument
1612 public Xid[] recover(int flags) argument
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/
H A DCLIBootstrap.java403 CommandLineElement(String patternString, int flags) { argument
404 pattern = Pattern.compile(patternString, flags);
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/impl/
H A DPersistenceManagerImpl.java1715 public void setFlags(Object pc, byte flags) { argument
1717 ((PersistenceCapable) pc).jdoSetFlags(flags);

Completed in 528 milliseconds