Searched refs:head (Results 1 - 12 of 12) sorted by relevance
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/ |
H A D | PassivatedSessionCache.java | 77 if (head != null) { 78 head.lPrev = lc; 79 lc.lNext = head; 84 head = lc;
|
H A D | LruCache.java | 69 protected LruCacheItem head; field in class:LruCache 116 if (tail != head) { 120 "[" + cacheName + "]: trimLru(), resetting head and tail"); 121 // do not let the tail go past the head 122 tail = head = null; 127 tail = head = null; 160 if (head != null) { 161 head.lPrev = lc; 162 lc.lNext = head; 164 head [all...] |
H A D | LruSessionCache.java | 552 //Ensure that for head the lPrev is null 553 if( (item == head) && (item.lPrev != null) ) { 555 "[" + cacheName + "]: Iterator(), resetting head.lPrev"); 578 // Ensure that for head the lPrev is null 579 if ((item == head) && (item.lPrev != null)) { 581 + "]: Iterator(), resetting head.lPrev"); 621 head = null; 645 //Ensure that for head the lPrev is null 646 if( (item == head) && (item.lPrev != null) ) { 648 "[" + cacheName + "]: TrimTimedoutBeans(), resetting head [all...] |
H A D | FIFOEJBObjectCache.java | 171 // patch up the neighbors and make sure head/tail are correct 175 head = next; 254 // add the item at the head of the bucket list 293 for (LruCacheItem run = head; run!=null; run=run.lNext) { 418 head = null;
|
/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/ |
H A D | DoubleLinkedList.java | 67 public Linkable head; field in class:DoubleLinkedList 84 this.head = null; 93 * Return the object at the head of a linked list. 98 return this.head; 122 * Insert an object at the head of a linked list. 129 if (this.head == null) 133 this.head = node; // Insert node at head of list. 137 Linkable oldHead = this.head; // Fixup current head nod [all...] |
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/util/cache/ |
H A D | LruCache.java | 58 protected LruCacheItem head; field in class:LruCache 142 if (tail != head) { 146 tail = head = null; 152 tail = head = null; 186 if (head != null) { 187 head.lPrev = lc; 188 lc.lNext = head; 190 head = lc; 193 head = tail = lc; 236 // put the item at the head o [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/ |
H A D | MultipartStream.java | 285 * 0 <= head < bufSize 287 private int head; field in class:MultipartStream 348 head = 0; 409 if (head == tail) { 410 head = 0; 412 tail = input.read(buffer, head, bufSize); 421 return buffer[head++]; 440 head += boundaryLength; 688 * region delimited by <code>head</code> and <code>tail</code>. 698 for (first = head; [all...] |
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/ |
H A D | JvmOptionsHelper.java | 61 private final JvmOptionsElement head; field in class:JvmOptionsHelper 77 head = new JvmOptionsElement(""); 79 head = new JvmOptionsElement(options[0]); 81 JvmOptionsElement current = head; 112 if (!head.hasOption(options[i])) 131 JvmOptionsElement current = head; 158 if (!head.deleteJvmOption(options[i])) 172 JvmOptionsElement current = head; 191 JvmOptionsElement current = head;
|
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/ |
H A D | deflate.c | 159 * Insert string str in the dictionary and set match_head to the previous head 171 match_head = s->head[s->ins_h], \ 172 s->head[s->ins_h] = (Pos)(str)) 176 s->prev[(str) & s->w_mask] = match_head = s->head[s->ins_h], \ 177 s->head[s->ins_h] = (Pos)(str)) 185 s->head[s->hash_size-1] = NIL; \ 186 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head)); 265 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); 273 if (s->window == Z_NULL || s->prev == Z_NULL || s->head [all...] |
H A D | deflate.h | 120 Posf *head; /* Heads of the hash chains or NIL. */ member in struct:internal_state
|
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/resources/custom/ |
H A D | LogViewerResource.java | 244 HeadMark head = new HeadMark(buf); 248 count += head.moveTo(tail, os); 250 count += head.finish(os);
|
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/bridge/transport/ |
H A D | JBIAdapter.java | 137 packet = head.process(packet,con,this); 156 /** This method is called during the execution of head.process() before
|
Completed in 119 milliseconds