Searched defs:extra (Results 1 - 7 of 7) sorted by relevance

/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/config/
H A DVirtualServerConfigTest.java99 final Map<String, String> extra) {
100 final Map<String, String> allOptions = MapUtil.newMap(extra, getOptional());
97 createProgeny( final String name, final Map<String, String> extra) argument
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/core/
H A DAMXProxy.java216 public Extra extra(); method in interface:AMXProxy
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/admin/payload/
H A DZipPayloadImpl.java69 * Each ZipEntry supports "extra" data. This implementation stores the Part properties
70 * in this extra data. Further, each Part can have a different content-type and
71 * the Properties object stored in the extra data also records the content-type
92 Extra extra = new Extra(part.getContentType(), part.getProperties());
93 entry.setExtra(extra.toBytes());
282 final Extra extra = new Extra(nextEntry.getExtra());
285 extra.getContentType(),
286 extra.getProperties(),
323 * Abstraction of our use of the ZipEntry's "extra" data.
325 * We use the ZipEntry extra dat
340 Extra(final byte[] extra) argument
[all...]
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DLogHandle.java1548 * @param extra An extra offset for the position.
1558 int extra,
1581 if( extent.cursorPosition != currentLSN.offset + extra ||
1591 int seekDist = ((currentLSN.offset + extra) > extent.cursorPosition) ?
1592 (currentLSN.offset + extra - extent.cursorPosition) :
1593 (extent.cursorPosition - currentLSN.offset - extra);
1597 currentLSN.offset + extra < seekDist )
1598 extent.fileHandle.fileSeek(currentLSN.offset+extra,LogFileHandle.SEEK_ABSOLUTE);
1600 extent.fileHandle.fileSeek(currentLSN.offset+extra
1557 positionFilePointer( LogLSN currentLSN, int extra, int accessType ) argument
[all...]
/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Dzip_util.h86 #define LOCEXT(b) SH(b, 28) /* extra field length */
89 * Macros for getting extra local (EXT) header fields
107 #define CENEXT(b) SH(b, 30) /* length of extra field */
138 * - If extra != 0 then the first two bytes are the length of the extra
151 jbyte *extra; /* optional extra data */ member in struct:jzentry
165 unsigned short nelen; /* length of name and extra data */
170 unsigned short elen; /* length of extra data in CEN */
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dtrees.c61 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
64 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
67 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
92 * need for the L_CODES extra codes used during heap construction. However
123 const intf *extra_bits; /* extra bits for each code or NULL */
498 const intf *extra = desc->stat_desc->extra_bits; local
504 int xbits; /* extra bits */
526 if (n >= base) xbits = extra[n-base];
656 /* node is 0 or 1 so it does not have extra bits */
1080 int extra; /* numbe local
[all...]
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/core/proxy/
H A DAMXProxyHandler.java101 public Extra extra() method in class:AMXProxyHandler
244 objectName = childProxy == null ? null : childProxy.extra().objectName();
307 private static final String METHOD_EXTRA = "extra";
370 result = parent() == null ? null : parent().extra().objectName();
1141 if (!child.extra().singleton())
1160 final ObjectName objectName = c.extra().objectName();

Completed in 63 milliseconds