Searched refs:prev (Results 1 - 18 of 18) sorted by relevance

/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/
H A DLruCache.java199 LruCacheItem prev = lc.lPrev;
203 if (prev != null) {
211 prev.lNext = next;
213 next.lPrev = prev;
215 tail = prev;
242 LruCacheItem prev = l.lPrev;
250 if (prev != null)
251 prev.lNext = next;
256 next.lPrev = prev;
258 tail = prev;
[all...]
H A DLruSessionCache.java258 CacheItem prev = null;
263 if (prev == null) {
266 prev.next = current.next;
271 prev = current;
317 CacheItem prev = null, item = null;
322 if (prev == null) {
325 prev.next = item.next;
333 prev = item;
392 CacheItem prev = null, item = null;
406 prev
[all...]
H A DFIFOEJBObjectCache.java166 LruCacheItem prev = l.lPrev;
172 if (prev != null)
173 prev.lNext = next;
178 next.lPrev = prev;
180 tail = prev;
304 CacheItem prev = null, item = null;
324 if (prev == null) {
327 prev.next = item.next;
336 prev = item;
H A DBaseCache.java687 CacheItem prev = null, item = null;
695 if (prev == null) {
698 prev.next = item.next;
706 prev = item;
731 CacheItem prev = null, item = null;
736 if (prev == null) {
739 prev.next = item.next;
744 prev = item;
763 CacheItem prev = null, item = null;
770 if (prev
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/util/cache/
H A DLruCache.java232 LruCacheItem prev = lc.lPrev;
235 if (prev != null) {
243 prev.lNext = next;
245 next.lPrev = prev;
247 tail = prev;
273 LruCacheItem prev = l.lPrev;
281 if (prev != null)
282 prev.lNext = next;
287 next.lPrev = prev;
289 tail = prev;
[all...]
H A DMultiLruCache.java203 LruCacheItem prev = lc.lPrev;
206 if (prev != null) {
214 prev.lNext = next;
216 next.lPrev = prev;
218 list[LRU_TAIL] = prev;
253 LruCacheItem prev = l.lPrev;
257 if (prev != null)
258 prev.lNext = next;
263 next.lPrev = prev;
265 list[LRU_TAIL] = prev;
[all...]
H A DBaseCache.java630 CacheItem prev = null, item = null;
638 if (prev == null) {
641 prev.next = item.next;
649 prev = item;
673 CacheItem prev = null, item = null;
678 if (prev == null) {
681 prev.next = item.next;
686 prev = item;
705 CacheItem prev = null, item = null;
712 if (prev
[all...]
/glassfish-3.1.2/transaction/internal-api/src/main/java/com/sun/enterprise/transaction/api/
H A DJavaEETransactionManager.java188 public void preInvoke(ComponentInvocation prev) argument
195 public void postInvoke(ComponentInvocation curr, ComponentInvocation prev) argument
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/impl/
H A DPersistenceManagerWrapper.java62 private PersistenceManagerWrapper prev = null; field in class:PersistenceManagerWrapper
80 prev = pm.getCurrentWrapper();
105 pm.popCurrentWrapper(prev);
107 prev = null;
H A DPersistenceManagerImpl.java2057 protected void popCurrentWrapper(PersistenceManagerWrapper prev) { argument
2060 Object[] items = new Object[] {current,prev};
2064 current = prev;
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Ddeflate.c176 s->prev[(str) & s->w_mask] = match_head = s->head[s->ins_h], \
182 * prev[] will be initialized on the fly.
264 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
273 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
585 TRY_FREE(strm, strm->state->prev);
626 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
631 if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
638 zmemcpy(ds->prev, ss->prev, ds->w_size * sizeof(Pos));
740 Posf *prev local
[all...]
H A Ddeflate.h114 Posf *prev; member in struct:internal_state
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/
H A DIntrospectionUtils.java519 int prev = 0;
522 while ((pos = value.indexOf("$", prev)) >= 0) {
524 sb.append(value.substring(prev, pos));
528 prev = pos + 1;
531 prev = pos + 1; // XXX
536 prev = value.length();
556 prev = endName + 1;
559 if (prev < value.length())
560 sb.append(value.substring(prev));
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/impl/
H A DMethodAnnotater.java1438 insn.prev().insert(annotation);
1508 //insn.prev().insert(Insn.create(opc_nop));
1512 final Insn prev = insn.prev();
1520 //insn.prev().insert(frag1.annotation);
1523 final Insn last = prev.insert(frag1.annotation);
1538 = new StackState(note.arg(), note.sig(), insn.prev());
2327 for (Insn i = currInsn.prev(); argDepth >= 0; i = i.prev()) {
2386 for (; argDepth > 0; i = i.prev()) {
[all...]
/glassfish-3.1.2/transaction/jta/src/main/java/com/sun/enterprise/transaction/
H A DJavaEETransactionManagerSimplified.java610 public void preInvoke(ComponentInvocation prev) argument
612 if ( prev != null && prev.getTransaction() != null &&
613 prev.isTransactionCompleting() == false) {
616 delistComponentResources(prev, true); // delist with TMSUSPEND
621 public void postInvoke(ComponentInvocation curr, ComponentInvocation prev) argument
626 if ( prev != null && prev.getTransaction() != null &&
627 prev.isTransactionCompleting() == false) {
630 enlistComponentResources(prev);
[all...]
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/
H A DDOMStreamReader.java780 Node prev = _current.getPreviousSibling();
781 if(prev!=null && prev.getNodeType()==Node.TEXT_NODE)
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEntityContainer.java3040 for (EntityContextImpl prev = null; ctx != null; ctx = ctx._getNext()) {
3042 if (prev == null) {
3045 prev._setNext(ctx._getNext());
3050 prev = ctx;
3062 for (EntityContextImpl prev = null; ctx != null; ctx = ctx._getNext()) {
3064 if (prev == null) {
3067 prev._setNext(ctx._getNext());
3072 prev = ctx;
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/
H A DInsn.java81 public Insn prev() { method in class:Insn

Completed in 89 milliseconds