| /glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/interceptors/ |
| H A D | CallbackChainImpl.java | 52 protected int size; field in class:CallbackChainImpl 56 this.size = (interceptors == null) ? 0 : interceptors.length; 64 if (index < size) { 86 size++; 88 CallbackInterceptor[] newArray = new CallbackInterceptor[size]; 90 for(int i = 1; i < size; i++) {
|
| /glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/ |
| H A D | MonitorableFileCache.java | 125 protected void addHeapSize(long size) { argument 126 super.addHeapSize(size); 128 monitoringId, size); 132 protected void subHeapSize(long size) { argument 133 super.subHeapSize(size); 135 monitoringId, size); 139 protected void addMappedMemorySize(long size) { argument 140 super.addMappedMemorySize(size); 142 monitoringId, size); 146 protected void subMappedMemorySize(long size) { argument [all...] |
| /glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/pi/ |
| H A D | ArrayListStack.java | 68 /** Creates a stack with the given initial size */ 69 public ArrayListStack(int size) { argument 71 list = new ArrayList(size); 74 /** Creates a stack with a default size */ 80 * Provides the current size of the stack. 81 * @return int return the current size. 83 public int size() { method in class:ArrayListStack
|
| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ssi/ |
| H A D | SSIFsize.java | 97 long size = ssiMediator.getFileSize(substitutedValue, 100 writer.write(formatSize(size, configSizeFmt)); 106 ssiMediator.log("#fsize--Couldn't get size for file: " 139 protected String formatSize(long size, String format) { argument 143 retString = decimalFormat.format(size); 145 if (size < 0) { 147 } else if (size == 0) { 149 } else if (size < ONE_KILOBYTE) { 151 } else if (size < ONE_MEGABYTE) { 152 retString = Long.toString((size [all...] |
| /glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/stats/ |
| H A D | FileCacheStatsProviderGlobal.java | 105 @ProbeParam("size") long size) { 106 final long newSize = heapSize.addAndGet(size); 121 @ProbeParam("size") long size) { 122 heapSize.addAndGet(-size); 128 @ProbeParam("size") long size) { 129 final long newSize = mappedMemorySize.addAndGet(size); 145 @ProbeParam("size") lon 104 addHeapSizeEvent(@robeParam�) String fileCacheName, @ProbeParam(�) long size) argument 120 subHeapSizeEvent(@robeParam�) String fileCacheName, @ProbeParam(�) long size) argument 126 addMappedMemorySizeEvent( @robeParam�) String fileCacheName, @ProbeParam(�) long size) argument 143 subMappedMemorySizeEvent( @robeParam�) String fileCacheName, @ProbeParam(�) long size) argument [all...] |
| /glassfish-3.1.2/admin/jmx-remote/common/src/main/java/com/sun/enterprise/admin/jmx/remote/notification/ |
| H A D | SimpleQueue.java | 65 public int size() { method in class:SimpleQueue 66 return q.size();
|
| /glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/ |
| H A D | ClassFile.java | 76 */public boolean containsAnnotation(ReadableByteChannel in, long size) throws IOException { argument 78 if (size!=-1 && size>header.capacity()) { 80 header = ByteBuffer.allocate((int) size); 83 if (size!=-1 && read!=size) {
|
| /glassfish-3.1.2/admin/rest/src/main/resources/org/glassfish/admin/rest/static/ |
| H A D | std.css | 41 font-size:75%; 53 font-size:200%; 57 font-size:140%; 61 font-size:110%; 66 font-size:200%;
|
| /glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/ |
| H A D | DoubleLinkedList.java | 77 public int size; field in class:DoubleLinkedList 85 this.size = 0; 112 * Return size of the linked list. 117 return this.size; 147 this.size++; 177 this.size++; 203 this.size--; 228 this.size--; 241 if ((this.size <= 0) || ((this.head == null) && (this.tail == null))) 270 this.size [all...] |
| /glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/base/ |
| H A D | UploadDownloadMgrTest.java | 185 final int size = 256 * K; 187 testDownloadFile(size, size - 1); 193 final int size = 256 * K; 194 testDownloadFile(size, size); 200 final int size = 256 * K; 201 testDownloadFile(size, size + 1); 207 final int size [all...] |
| /glassfish-3.1.2/persistence/cmp/internal-api/src/main/java/com/sun/jdo/api/persistence/support/ |
| H A D | SynchronizationManager.java | 149 int size = synchronizations.size(); 150 for (int i = 0; i < size; ++i) { 166 int size = synchronizations.size(); 168 for (int i = 0; i < size; ++i) {
|
| /glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/portable/ |
| H A D | ObjrefEnumeration.java | 72 return count < objrefs.size(); 79 if (count < objrefs.size()) {
|
| /glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/ |
| H A D | TagLibDescriptor.java | 103 int size = nl.getLength(); 104 classes = new String[size]; 105 for (int i = 0; i < size; i++) { 121 int size = nl.getLength(); 122 tagdescriptor = new TagDescriptor[size]; 123 for (int i = 0; i < size; i++) { 139 int size = nl.getLength(); 140 for (int i = 0; i < size; i++) {
|
| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/ |
| H A D | FixedNotificationFilter.java | 106 return names.toArray(new String[names.size()]); 125 if (names.size() < 1)
|
| /glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/ |
| H A D | CacheEntry.java | 82 public int size = 1; field in class:CacheEntry 96 size = 1;
|
| /glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/util/cache/ |
| H A D | BoundedMultiLruCache.java | 56 // upper bound on the cache size 72 long size = -1; 91 size = Long.parseLong(prop.trim()); 96 if (size > 0) 97 maxSize = (size * multiplier); 119 // update the size 131 * @param oldSize size of the previous value that was refreshed 137 /** reduce the cache by the size of the size of the previous value 153 // update the size 168 incrementCurrentSize(int size) argument 174 decrementCurrentSize(int size) argument [all...] |
| /glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/probes/ |
| H A D | FileCacheProbeProvider.java | 80 @ProbeParam("size") long size) {} 84 @ProbeParam("size") long size) {} 89 @ProbeParam("size") long size) {} 94 @ProbeParam("size") long size) {} 79 addHeapSizeEvent(@robeParam�) String fileCacheName, @ProbeParam(�) long size) argument 83 subHeapSizeEvent(@robeParam�) String fileCacheName, @ProbeParam(�) long size) argument 87 addMappedMemorySizeEvent( @robeParam�) String fileCacheName, @ProbeParam(�) long size) argument 92 subMappedMemorySizeEvent( @robeParam�) String fileCacheName, @ProbeParam(�) long size) argument
|
| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/digester/ |
| H A D | ArrayStack.java | 92 * Constructs a new empty <code>ArrayStack</code>. The initial size 100 * Constructs a new empty <code>ArrayStack</code> with an initial size. 102 * @param initialSize the initial size to use 103 * @throws IllegalArgumentException if the specified initial size 129 int n = size(); 147 int m = (size() - n) - 1; 162 int n = size(); 195 int i = size() - 1; // Current index
|
| /glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/filter/ |
| H A D | HttpCacheEntry.java | 115 * get the size 116 * @return size of this entry in bytes 120 int size = 0; 122 size = bytes.length; 125 // size of response bytes plus headers (each approx 20 chars or 40 bytes) 126 return (size + (40 * responseHeaders.size()) );
|
| /glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/ |
| H A D | zutil.c | 127 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument 130 ulg bsize = (ulg)items*size; 186 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument 189 return _halloc((long)items, size); 204 extern voidp calloc OF((uInt items, uInt size)); 208 voidpf zcalloc (opaque, items, size) 211 unsigned size; 213 if (opaque) items += size - size; /* make compiler happy */ 214 return (voidpf)calloc(items, size); [all...] |
| /glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/invocation/ |
| H A D | InvocationManagerImpl.java | 97 if (v.size() > 0 && v.outsideStartup()) { 99 ComponentInvocation parentInv = v.get(v.size() - 1); 140 int beforeSize = v.size(); 155 for (int i=0;i<setCIH.size();i++) { 171 for (int i=0;i<setCIH.size();i++) { 188 int beforeSize = v.size(); 207 for (int i=0;i<setCIH.size();i++) { 228 for (int i=0;i<setCIH.size();i++) { 242 return ((v == null) || (v.size() == 0)); 251 int size [all...] |
| /glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/util/ |
| H A D | FilePath.java | 105 for (int i=1; i<components.size() && !editted; i++) { 133 (components.size() == 1 || 141 if (components.size() > 0 && 142 ((String)components.elementAt(components.size()-1)).equals( 144 components.removeElementAt(components.size()-1); 147 for (int j=0; j<components.size(); j++)
|
| /glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/authentication/ |
| H A D | RuntimeSecurityMap.java | 88 if ((this.userMap.size() == 0) && (this.groupMap.size() == 0))
|
| /glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/runtime/common/ |
| H A D | SecurityRoleMapping.java | 98 String[] names = new String[principals.size()]; 99 for (int i = 0; i < principals.size(); i++) {
|
| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/ |
| H A D | ApplicationResponse.java | 198 * @param size The buffer size 200 public void setBufferSize(int size) { argument 202 getResponse().setBufferSize(size);
|