/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/ |
H A D | AnnotationDetector.java | 152 protected boolean containsAnnotation(InputStream is, long size) argument 160 result = classFile.containsAnnotation(channel, size);
|
/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/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-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/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/admin/rest/src/main/java/org/glassfish/admin/rest/results/ |
H A D | OptionsResult.java | 91 public int size() { method in class:OptionsResult 92 return __metaData.size();
|
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/ |
H A D | ClassDependencyBuilder.java | 98 if ((nInfos != null) && (nInfos.size() > 0)) { 114 if ((set != null) && (set.size() > 0)) { 122 if ((intfs != null) && (intfs.size() > 0)) { 129 if (list.size() > 0) { 160 public int size() { method in class:ClassDependencyBuilder 161 return mappings.size(); 194 if ((anns != null) && (anns.size() > 0)) {
|
/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);
|
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/ |
H A D | TokenValueSet.java | 97 public int size() { method in class:TokenValueSet 98 return ( this.values.size() );
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/management/client/prefs/ |
H A D | LoginInfoStore.java | 72 * Upon successful return, size of this store decreases by one. 83 * Upon successful return, the size of this store increases by one. An exception is thrown 94 * Upon successful return, the size of this store increases by one. An exception is thrown 128 public int size() throws StoreException; method in interface:LoginInfoStore
|
/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/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/probes/ |
H A D | ConnectionQueueProbeProvider.java | 75 @ProbeParam("size") int size) {} 73 setMaxTaskQueueSizeEvent( @robeParam�) String listenerName, @ProbeParam(�) int size) argument
|
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/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/stats/ |
H A D | ConnectionQueueStatsProviderGlobal.java | 85 @ProbeParam("size") int size) { 86 maxQueued.setCount(size); 83 setMaxTaskQueueSizeEvent( @robeParam�) String listenerName, @ProbeParam(�) int size) argument
|
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/deployment/dol/src/main/java/com/sun/enterprise/deployment/runtime/ |
H A D | RuntimeDescriptor.java | 165 if (list!=null && list.size()>0) { 167 Object array = java.lang.reflect.Array.newInstance(c, list.size()); 174 protected int size(String name) { method in class:RuntimeDescriptor 177 return list.size();
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/ |
H A D | ContainerFactoryImpl.java | 189 * Creates a stack with the given initial size 191 public ArrayListStack(int size) { argument 192 super(size); 196 * Creates a stack with a default size 221 int sz = super.size(); 232 return super.size() == 0; 243 int sz = size();
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/ |
H A D | Cache.java | 62 public int size(); method in interface:Cache
|
/glassfish-3.1.2/extras/embedded/common/bootstrap/src/main/java/org/glassfish/uberjar/bootstrap/ |
H A D | Util.java | 145 static void copyWithoutClose(InputStream in, FileOutputStream out, long size) throws IOException { argument 149 outChannel.transferFrom(inChannel, 0, size); 153 static void copy(InputStream in, FileOutputStream out, long size) throws IOException { argument 156 copyWithoutClose(in, out, size);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/ |
H A D | ByteArrayOutputStream.java | 115 * initially 1024 bytes, though its size increases if necessary. 123 * the specified size, in bytes. 125 * @param size the initial size 126 * @throws IllegalArgumentException if size is negative 128 public ByteArrayOutputStream(int size) { argument 129 if (size < 0) { 131 "Negative initial size: " + size); 133 needNewBuffer(size); 258 public synchronized int size() { method in class:ByteArrayOutputStream [all...] |
/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/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/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/ |
H A D | InsnIInc.java | 136 int size() { method in class:InsnIInc
|
H A D | InsnIntOp.java | 113 if (size() == 4) { 119 if (size() > 2) 126 /* return the size of the instruction in bytes */ 128 int size() { method in class:InsnIntOp
|
H A D | InsnInterfaceInvoke.java | 130 int size() { method in class:InsnInterfaceInvoke
|