Searched defs:codeBase (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/test/javax/management/loading/
H A DDocumentRootTest.java41 public static int test(URL documentBase, URL codeBase) { argument
55 System.out.println("EXPECTED CODEBASE = " + codeBase);
56 if (!codeBase.equals(mc.getCodeBase())) {
/openjdk7/jdk/test/javax/management/MBeanInfo/
H A DNotificationInfoTest.java89 URL codeBase;
93 codeBase = null;
97 codeBase = file.toURI().toURL();
101 if (codeBase == null) {
103 "Could not determine codeBase for java.home=" + javaHome);
106 codeBase = cs.getLocation();
110 String[] classes = findStandardMBeans(codeBase);
234 private static String[] findStandardMBeans(URL codeBase) argument
237 if (codeBase.getProtocol().equalsIgnoreCase("file")
238 && codeBase
254 findStandardMBeansFromJar(URL codeBase) argument
271 findStandardMBeansFromDir(URL codeBase) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DEncapsInputStream.java134 CodeBase codeBase) {
145 this.codeBase = codeBase;
181 return codeBase;
184 private CodeBase codeBase; field in class:EncapsInputStream
130 EncapsInputStream(org.omg.CORBA.ORB orb, byte[] data, int size, GIOPVersion version, CodeBase codeBase) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/servicecontext/
H A DServiceContexts.java140 codeBase = null ;
154 codeBase = ((CDRInputStream)s).getCodeBase();
205 codeBase);
409 private CodeBase codeBase; field in class:ServiceContexts
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DJceSecurity.java141 * Verify if the JAR at URL codeBase is a signed exempt application
146 static CryptoPermissions verifyExemptJar(URL codeBase) throws Exception { argument
147 JarVerifier jv = new JarVerifier(codeBase, true);
153 * Verify if the JAR at URL codeBase is a signed provider JAR file.
157 static void verifyProviderJar(URL codeBase) throws Exception { argument
160 JarVerifier jv = new JarVerifier(codeBase, false);
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLAppletElement.java85 public void setCodeBase(String codeBase); argument
H A DHTMLObjectElement.java95 public void setCodeBase(String codeBase); argument
/openjdk7/jdk/src/share/classes/java/beans/
H A DBeans.java270 URL codeBase = null;
301 codeBase = new URL(s.substring(0,ix));
302 docBase = codeBase;
315 stub = (AppletStub)new BeansAppletStub(applet, context, codeBase, docBase);
593 transient URL codeBase; field in class:BeansAppletStub
597 AppletContext context, URL codeBase,
601 this.codeBase = codeBase;
616 return codeBase;
596 BeansAppletStub(Applet target, AppletContext context, URL codeBase, URL docBase) argument
/openjdk7/jdk/src/share/classes/sun/misc/
H A DLauncher.java498 URL codeBase; field in class:PathPermissions
504 this.codeBase = null;
509 return codeBase;
541 codeBase = Launcher.getFileURL(new File(path));
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DValueHandlerImpl.java121 private CodeBase codeBase = null; field in class:ValueHandlerImpl
375 if (codeBase != null)
376 return codeBase;
378 codeBase = new FVDCodeBaseImpl();
383 FVDCodeBaseImpl fvdImpl = (FVDCodeBaseImpl) codeBase;
385 return codeBase;
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyParser.java336 e.codeBase = match("quoted string");
393 rb.getString("expected.codeBase.or.SignedBy"));
426 if (e.codeBase != null)
427 e.codeBase = expand(e.codeBase).replace(File.separatorChar, '/');
652 public String codeBase; field in class:PolicyParser.GrantEntry
660 public GrantEntry(String signedBy, String codeBase) { argument
661 this.codeBase = codeBase;
695 if (codeBase !
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyParser.java419 if (e.codeBase != null)
424 e.codeBase = match("quoted string");
530 "expected.codeBase.or.SignedBy.or.Principal"));
561 if (e.codeBase != null) {
564 if (e.codeBase.equals(OLD_EXTDIRS_EXPANSION)) {
565 e.codeBase = EXTDIRS_EXPANSION;
568 if ((es=e.codeBase.indexOf(EXTDIRS_EXPANSION)) < 0) {
569 e.codeBase = expand(e.codeBase, true).replace
575 String[] extDirs = parseExtDirs(e.codeBase, e
853 public String codeBase; field in class:PolicyParser.GrantEntry
862 GrantEntry(String signedBy, String codeBase) argument
[all...]
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java424 System.arraycopy(i.codeBase, start, i.codeBase, i.pc, end-start);
430 //System.out.println(new Instruction(i.codeBase, i2.pc-3));
1781 byte[] codeBase; field in class:Indify.Instruction
1787 Instruction(byte[] codeBase, int pc) { argument
1788 this.codeBase = codeBase;
1800 this.bc = codeBase[pc] & 0xFF;
1811 if (npc == codeBase.length)
1836 bc = codeBase[p
[all...]

Completed in 74 milliseconds