/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/ |
H A D | DoubleLinkedList.java | 72 public Linkable tail; field in class:DoubleLinkedList 86 this.tail = null; 102 * Return the object at the tail of a linked list. 107 return this.tail; 143 if (this.tail == null) // If list was empty, 145 this.tail = node; // Insert node at tail of list. 152 * Insert an object at the tail of a linked list. 159 if (this.tail == null) 163 this.tail [all...] |
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/ |
H A D | LruCache.java | 70 protected LruCacheItem tail; field in class:LruCache 114 LruCacheItem trimItem = tail; 116 if (tail != head) { 117 tail = trimItem.lPrev; 118 if (tail == null) { 120 "[" + cacheName + "]: trimLru(), resetting head and tail"); 121 // do not let the tail go past the head 122 tail = head = null; 124 tail.lNext = null; 127 tail [all...] |
H A D | PassivatedSessionCache.java | 82 tail = lc;
|
H A D | FIFOEJBObjectCache.java | 171 // patch up the neighbors and make sure head/tail are correct 180 tail = prev; 397 for (item = tail; item != null && count < maxCount; 411 // if there was at least one invalid item then item != tail. 412 if (item != tail) { 420 lastItem = tail; // record the old tail 421 tail = item; 430 // trim the items from the BaseCache from the old tail backwards
|
H A D | LruSessionCache.java | 545 LruCacheItem item = tail; 570 LruCacheItem item = tail; 615 if (tail == null) { // No LRU list exists 625 item = tail; 663 if (item == tail) { 677 tail = item;
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/util/cache/ |
H A D | LruCache.java | 59 protected LruCacheItem tail; field in class:LruCache 140 LruCacheItem trimItem = tail; 142 if (tail != head) { 143 tail = trimItem.lPrev; 144 if(tail == null) { 146 tail = head = null; 148 tail.lNext = null; 152 tail = head = null; 193 head = tail = lc; 247 tail [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/ |
H A D | MultipartStream.java | 293 * 0 <= tail <= bufSize 295 private int tail; field in class:MultipartStream 349 tail = 0; 409 if (head == tail) { 412 tail = input.read(buffer, head, bufSize); 413 if (tail == -1) { 418 notifier.noteBytesRead(tail); 676 for (int i = pos; i < tail; i++) { 688 * region delimited by <code>head</code> and <code>tail</code>. 697 int maxpos = tail [all...] |
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/ |
H A D | ServerPipeCreator.java | 78 public Pipe createMonitoringPipe(ServerPipeAssemblerContext ctxt, Pipe tail) { argument 79 return new MonitoringPipe(ctxt, tail, endpoint); 83 WSDLPort port, WSEndpoint owner, Pipe tail); 82 createSecurityPipe(PolicyMap map, SEIModel sei, WSDLPort port, WSEndpoint owner, Pipe tail) argument
|
H A D | MonitoringPipe.java | 75 public MonitoringPipe(ServerPipeAssemblerContext ctxt, Pipe tail, argument 77 super(tail);
|
/glassfish-3.1.2/security/webservices.security/src/main/java/com/sun/enterprise/security/webservices/ |
H A D | ClientPipeCreator.java | 73 ClientPipeAssemblerContext ctxt, Pipe tail) { 83 propBag.put(PipeConstants.NEXT_PIPE,tail); 86 ClientSecurityPipe ret = new ClientSecurityPipe(propBag, tail); 115 // propBag.put(PipeConstants.NEXT_PIPE,tail); 72 createSecurityPipe(PolicyMap map, ClientPipeAssemblerContext ctxt, Pipe tail) argument
|
H A D | GFServerPipeCreator.java | 86 WSDLPort port, WSEndpoint owner, Pipe tail) { 95 props.put(PipeConstants.NEXT_PIPE,tail); 101 return new CommonServerSecurityPipe(props, tail, isHttpBinding); 115 // props.put(PipeConstants.NEXT_PIPE,tail); 85 createSecurityPipe(PolicyMap map, SEIModel sei, WSDLPort port, WSEndpoint owner, Pipe tail) argument
|
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/resources/custom/ |
H A D | LogViewerResource.java | 218 * Writes the tail portion of the file to the {@link OutputStream}. 245 TailMark tail = new TailMark(buf); 247 while (tail.moveToNextLine(f)) { 248 count += head.moveTo(tail, os);
|
/glassfish-3.1.2/installer/src/main/resources/wrappers/ |
H A D | wrapper.sh | 193 tail +170l $0 > $tmp/tmp.jar
|
/glassfish-3.1.2/installer/src/GlassFishV3Preview/resources/wrappers/ |
H A D | wrapper.sh | 211 tail +260l $0 > ${tmpdir_path}/tmp.jar
|
/glassfish-3.1.2/installer/src/GlassFishV3WebProfilePreview/resources/wrappers/ |
H A D | wrapper.sh | 211 tail +260l $0 > ${tmpdir_path}/tmp.jar
|
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/ |
H A D | GlassfishNamingManagerImpl.java | 587 String tail = logicalCompName.substring(JAVA_COMP_LENGTH); 588 String logicalModuleJndiName = "java:module" + tail; 593 String tail = logicalModuleName.substring(JAVA_MODULE_LENGTH); 594 String logicalCompJndiName = "java:comp" + tail;
|