/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/ |
H A D | PassivatedSessionCache.java | 70 LruCacheItem lc = (LruCacheItem) item; 73 lc.lastAccessed = ((Long) item.value).longValue(); 78 head.lPrev = lc; 79 lc.lNext = head; 82 tail = lc; 84 head = lc;
|
H A D | FIFOSessionCache.java | 56 LruCacheItem lc = (LruCacheItem) item; 58 if (lc.isTrimmed) { 59 lc.isTrimmed = false;
|
H A D | LruCache.java | 153 LruCacheItem lc = (LruCacheItem) item; 156 lc.lastAccessed = System.currentTimeMillis(); 161 head.lPrev = lc; 162 lc.lNext = head; 163 lc.lPrev = null; 164 head = lc; 167 head = tail = lc; 168 lc.lPrev = lc.lNext = null; 174 overflow = trimLru(lc [all...] |
H A D | NRUSessionCache.java | 72 LruCacheItem lc = (LruCacheItem) item; 74 if (lc.isTrimmed) { 75 lc.isTrimmed = false;
|
H A D | LruSessionCache.java | 172 LruCacheItem lc = (LruCacheItem) item; 174 if (lc.isTrimmed) { 175 lc.isTrimmed = false;
|
/glassfish-3.1.2/web/web-embed/api/src/main/java/org/glassfish/embeddable/web/config/ |
H A D | SecurityConfig.java | 56 private LoginConfig lc; field in class:SecurityConfig 81 * @param lc the login config for the context 83 public void setLoginConfig(LoginConfig lc) { argument 84 this.lc = lc; 106 return this.lc; 116 toStringBuffer.append(" loginConfig: ").append(lc);
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/util/cache/ |
H A D | LruCache.java | 179 LruCacheItem lc = (LruCacheItem) item; 182 lc.lastAccessed = System.currentTimeMillis(); 187 head.lPrev = lc; 188 lc.lNext = head; 189 lc.lPrev = null; 190 head = lc; 193 head = tail = lc; 194 lc.lPrev = lc.lNext = null; 201 overflow = trimLru(lc [all...] |
H A D | MultiLruCache.java | 160 LruCacheItem lc = (LruCacheItem) item; 169 list[LRU_HEAD].lPrev = lc; 170 lc.lNext = list[LRU_HEAD]; 173 list[LRU_TAIL] = lc; 174 list[LRU_HEAD] = lc; 199 LruCacheItem lc = (LruCacheItem) item; 203 LruCacheItem prev = lc.lPrev; 204 LruCacheItem next = lc.lNext; 208 lc.lPrev = null; 209 lc [all...] |
/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/ |
H A D | LbConfig.java | 283 public static <T> List<T> getRefs(LbConfig lc, Class<T> type) { argument 285 for (Object r : lc.getClusterRefOrServerRef()) { 295 public static <T> T getRefByRef(LbConfig lc, Class<T> type, String ref) { argument 300 for (Ref r : lc.getClusterRefOrServerRef()) 307 public static Date getLastExported(LbConfig lc) { argument 308 return getInternalPropertyValue(lc, LAST_EXPORTED_PROPERTY); 311 public static Date getLastApplied(LbConfig lc) { argument 312 return getInternalPropertyValue(lc, LAST_APPLIED_PROPERTY); 315 private static Date getInternalPropertyValue(LbConfig lc, argument 317 String propertyValue = lc 324 setLastExported(LbConfig lc) argument 328 setLastApplied(LbConfig lc) argument 332 setInternalProperty(LbConfig lc, String propertyName) argument [all...] |
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/entity/primarykeyclass/ |
H A D | PrimaryKeyClassMethodEqual.java | 85 int lc = 0; 99 lc = i; 116 new Object[] {methods[lc].getName()}));
|
H A D | PrimaryKeyClassMethodHashCode.java | 87 int lc = 0; 102 lc = i; 120 new Object[] {methods[lc].getName()}));
|
/glassfish-3.1.2/load-balancer/admin/src/main/java/org/glassfish/loadbalancer/admin/cli/ |
H A D | DisableHTTPLBServerCommand.java | 111 for (LbConfig lc:lbConfigs) { 112 ServerRef sRef = lc.getRefByRef(ServerRef.class, target); 116 "Server {0} does not exist in {1}", target, lc.getName()));
|
H A D | EnableHTTPLBServerCommand.java | 101 for (LbConfig lc:lbConfigs) { 102 //ServerRef sRef = lc.getServerRefByRef(target); 103 ServerRef sRef = lc.getRefByRef(ServerRef.class, target); 107 "Server {0} does not exist in {1}", target, lc.getName()));
|
H A D | DeleteHTTPLBRefCommand.java | 276 public void removeServerRef(final LbConfig lc, final ServerRef sRef) { argument 284 }, lc); 294 public void removeClusterRef(final LbConfig lc, final ClusterRef cRef) { argument 302 }, lc);
|
H A D | CreateHTTPHealthCheckerCommand.java | 144 for (LbConfig lc:match){ 146 lc, lc.getName(), target);
|
H A D | DeleteHTTPHealthCheckerCommand.java | 121 for (LbConfig lc:lbConfigs) { 122 deleteHealthCheckerInternal(lc, target, true);
|
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/factories/ |
H A D | NavigationNodeFactory.java | 158 protected void applyOption(FacesContext context, UIComponent comp, LayoutComponent lc, String name, Object value) { argument 160 this.setOption(context, comp, lc, name, value);
|
/glassfish-3.1.2/installer/src/cpp/share/launcher/ |
H A D | java_md.unix.c | 198 char *lc = NULL; local 203 lc = StrDup(GetLocale()); 204 fullkey = (char *)MemAlloc(sizeof(RES_BUNDLE_NAME) + strlen(lc) + strlen(key) + 3); 208 if (strlen(lc) > 0) 211 strcat(fullkey, lc); 217 if (strlen(lc) > 0) 220 if ((s = strrchr(lc, '_')) != NULL) 223 *lc = '\0'; 235 free(lc); 236 lc 1634 const char *lc; local [all...] |
H A D | java_md.winnt.c | 173 char *lc = NULL; local 179 lc = StrDup(GetLocale()); 180 fullkey = (char *)MemAlloc(sizeof(RES_BUNDLE_NAME) + strlen(lc) + strlen(key 185 if (strlen(lc) > 0) 188 strcat(fullkey, lc); 194 if (strlen(lc) > 0) 197 if ((s = strrchr(lc, '_')) != NULL) 200 *lc = '\0'; 212 free(lc); 213 lc [all...] |
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/ |
H A D | trees.c | 1021 int _tr_tally (s, dist, lc) 1024 unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */ 1027 s->l_buf[s->last_lit++] = (uch)lc; 1029 /* lc is the unmatched char */ 1030 s->dyn_ltree[lc].Freq++; 1033 /* Here, lc is the match length - MIN_MATCH */ 1036 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) && 1039 s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++; 1077 int lc; /* match length or unmatched char (if dist == 0) */ local 1084 lc 1087 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); local [all...] |
H A D | deflate.h | 269 int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
|
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/entity/createmethod/ |
H A D | HomeInterfaceCreateMethodReturn.java | 162 Class c,rc,lc,hc; 176 lc = Class.forName(local, false, getVerifierContext().getClassLoader());
|
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/session/createmethod/ |
H A D | HomeInterfaceCreateMethodReturn.java | 162 Class c,rc,lc,hc; 176 lc = Class.forName(local, false, getVerifierContext().getClassLoader());
|
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/generator/ |
H A D | UpdateStatement.java | 260 ColumnElement lc = (ColumnElement) f.assocLocalColumns.get(i); 262 addColumn(lc, lf.getValue(sm));
|
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/ |
H A D | CLICommand.java | 333 final String optName = lc(opt.getName()); 405 lc(operandParam.getName()) : null; 484 sb.append("--").append(lc(opt.getName())); 791 strings.get("optionPrompt", lc(opt.getName()))); 1149 private static String lc(String s) { method in class:CLICommand
|