HomeSort by relevance Sort by last modified time
    Searched defs:codebase (Results 1 - 3 of 3) sorted by null

  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/
DefaultPolicyScanner.java 47 * grant [SignedBy "signer_names"] [, CodeBase "URL"]
183 * First, it reads <i>codebase </i>, <i>signedby </i>, <i>principal </i>
193 * [ [codebase &quot;url&quot;] | [signedby &quot;name1,...,nameN&quot;] |
217 } else if (Util.equalsIgnoreCase("codebase", st.sval)) { //$NON-NLS-1$
219 ge.codebase = st.sval;
433 * The codebase part of grant clause. This is an URL from which code
436 public String codebase; field in class:DefaultPolicyScanner.GrantEntry
  /external/webkit/WebCore/rendering/
RenderEmbeddedObject.cpp 219 // When OBJECT is used for an applet via Sun's Java plugin, the CODEBASE attribute in the tag
220 // points to the Java plugin itself (an ActiveX component) while the actual applet CODEBASE is
222 // we have to explicitly suppress the tag's CODEBASE attribute if there is none in a PARAM,
224 String codebase; local
226 codebase = "codebase";
227 uniqueParamNames.add(codebase.impl()); // pretend we found it in a PARAM already
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/fortress/
DefaultPolicyParser.java 162 * <li> If <code>codebase</code> is specified, expand it and construct an URL.
185 * @throws Exception if unable to resolve codebase, signers or principals
194 URL codebase = null; local
198 if (ge.codebase != null) {
199 codebase = new URL(resolve ? PolicyUtils.expandURL(ge.codebase,
200 system) : ge.codebase);
235 return new PolicyEntry(new CodeSource(codebase, signers), principals,

Completed in 871 milliseconds