Searched refs:decode (Results 1 - 25 of 43) sorted by relevance

12

/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/logviewer/
H A DWriterOutputStream.java80 decode(false);
87 decode(false);
96 decode(false);
107 decode(true);
125 private void decode(boolean last) throws IOException { method in class:WriterOutputStream
128 CoderResult r = decoder.decode(buf, out, last);
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/readers/
H A DParameterMapFormReader.java85 map.add(URLDecoder.decode(token,"UTF-8"), null);
87 map.add(URLDecoder.decode(token.substring(0, idx),"UTF-8"), URLDecoder.decode(token.substring(idx+1),"UTF-8"));
H A DFormReader.java85 map.put(URLDecoder.decode(token,"UTF-8"), null);
87 map.put(URLDecoder.decode(token.substring(0, idx),"UTF-8"), URLDecoder.decode(token.substring(idx+1),"UTF-8"));
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/remote/
H A DPlainTextManager.java66 response = ManifestUtils.decode(response);
H A DManifestManager.java190 sb.append(java.net.URLDecoder.decode(container.substring(index), "UTF-8"));
207 sb.append(decode(child));
221 private String decode(String value) { method in class:ManifestManager
223 return URLDecoder.decode(value, "UTF-8");
/glassfish-3.1.2/registration/registration-impl/src/main/java/com/sun/enterprise/registration/impl/environment/
H A DXMLUtil.java82 s = URLDecoder.decode(nodeList.item(0).getTextContent(), "UTF-8");
103 //return (node != null) ? URLDecoder.decode(node.getTextContent(),"UTF-8") : "";
110 s = URLDecoder.decode(node.getTextContent(), "UTF-8");
131 //return (node != null) ? URLDecoder.decode(node.getTextContent(),"UTF-8") : "";
139 s = URLDecoder.decode(node.getTextContent(), "UTF-8");
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/authenticator/
H A DBasicAuthenticator.java217 new String(Base64.decode(authorization.getBytes(Charset.defaultCharset())));
244 new String(Base64.decode(authorization.getBytes(Charset.defaultCharset())));
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/collections/
H A DManifestUtils.java106 String value = decode(entry.getValue().toString());
134 public static String decode(String s) { method in class:ManifestUtils
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/security/common/
H A DSSHA.java254 byte[] salt = decode(encoded, hash, algo);
293 public static byte[] decode(String encoded, byte[] hashResult, String algo) method in class:SSHA
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dinfblock.c78 inflate_codes_free(s->sub.decode.codes, z);
161 s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
162 if (s->sub.decode.codes == Z_NULL)
334 s->sub.decode.codes = c;
343 inflate_codes_free(s->sub.decode.codes, z);
H A Dinfutil.h47 } decode; /* if CODES, current state */ member in union:inflate_blocks_state::__anon16
H A Dinfcodes.c96 inflate_codes_statef *c = s->sub.decode.codes; /* codes state */
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/provider/
H A DGetResultListHtmlProvider.java72 final String typeKey = upperCaseFirstLetter((decode(getName(uriInfo.getPath(), '/'))));
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/provider/
H A DPolicyUtil.java77 path = ParseUtil.decode(path);
H A DBasePolicyWrapper.java575 path = sun.net.www.ParseUtil.decode(path);
621 path = sun.net.www.ParseUtil.decode(path);
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DDirContextURLConnection.java205 path = URLDecoder.decode(path, "UTF-8");
408 URLDecoder.decode(getURL().getFile(), "UTF-8"));
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/resources/
H A DLeafResource.java78 import static org.glassfish.admin.rest.Util.decode;
178 final String typeKey = (decode(getName()));
H A DCollectionLeafResource.java80 import static org.glassfish.admin.rest.Util.decode;
219 final String typeKey = upperCaseFirstLetter((decode(getName())));
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/util/
H A DDeployUtil.java69 String decodedName = URLDecoder.decode(appName, "UTF-8");
193 targetList = getApplicationTarget(URLDecoder.decode(appName, "UTF-8"), ref);
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/glassfish/
H A DAdminCommandResponse.java127 value = map.get(key + java.net.URLDecoder.decode("_value", "UTF-8"));
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/valves/
H A DExtendedAccessLogValve.java731 * @param fieldInfo The field to decode.
769 * @param fieldInfo The field to decode.
793 * @param fieldInfo The field to decode
1202 * @param fields The pattern to decode
1266 i = decode(fields, i+2, currentFieldInfo,
1271 i = decode(fields, i+2, currentFieldInfo,
1276 i = decode(fields, i+2, currentFieldInfo,
1281 i = decode(fields, i+2, currentFieldInfo,
1288 // Unable to decode ...
1289 log.severe("unable to decode wit
1335 private int decode(String fields, int i, FieldInfo fieldInfo, short type) { method in class:ExtendedAccessLogValve
[all...]
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/
H A DUtil.java196 public static String decode(String string) { method in class:Util
200 ret = URLDecoder.decode(string, "UTF-8");
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DNamingContextListener.java772 value = Byte.decode(env.getValue());
778 value = Short.decode(env.getValue());
784 value = Integer.decode(env.getValue());
790 value = Long.decode(env.getValue());
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DBase64.java64 * This class provides encode/decode for RFC 2045 Base64 as defined by
253 public static byte[] decode( byte[] base64Data ) method in class:Base64
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/gadget/
H A DGadgetHandlers.java203 // URL decode 'value'...
205 value = URLDecoder.decode(value, "UTF-8");
208 "Unable to decode value, this is not normal!", ex);

Completed in 67 milliseconds

12