Searched defs:pe (Results 1 - 12 of 12) sorted by relevance

/openjdk7/langtools/test/tools/javac/
H A DT6855236.java47 public void init(ProcessingEnvironment pe) { argument
48 super.init(pe);
49 trees = Trees.instance(pe);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11RSAKeyFactory.java234 BigInteger d, BigInteger p, BigInteger q, BigInteger pe,
246 new CK_ATTRIBUTE(CKA_EXPONENT_1, pe),
233 generatePrivate(BigInteger n, BigInteger e, BigInteger d, BigInteger p, BigInteger q, BigInteger pe, BigInteger qe, BigInteger coeff) argument
H A DP11Key.java461 private BigInteger n, e, d, p, q, pe, qe, coeff; field in class:P11Key.P11RSAPrivateKey
488 pe = attributes[5].getBigInteger();
535 return pe;
559 sb.append(pe);
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RSA/
H A DTestOAEP_KAT.java54 private static BigInteger n, e, d, p, q, pe, qe, coeff; field in class:TestOAEP_KAT
88 pe = parseNumber(reader);
108 KeySpec privSpec = new RSAPrivateCrtKeySpec(n, e, d, p, q, pe, qe, coeff);
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPrivateCrtKeyImpl.java61 private BigInteger pe; // prime exponent p field in class:RSAPrivateCrtKeyImpl
100 BigInteger p, BigInteger q, BigInteger pe, BigInteger qe,
107 this.pe = pe;
122 out.putInteger(pe);
166 return pe;
199 pe = getBigInteger(data);
245 sb.append(pe);
99 RSAPrivateCrtKeyImpl(BigInteger n, BigInteger e, BigInteger d, BigInteger p, BigInteger q, BigInteger pe, BigInteger qe, BigInteger coeff) argument
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCryptoPolicyParser.java165 CryptoPermissionEntry pe =
167 e.add(pe);
466 CryptoPermissionEntry pe =
468 if (pe.cryptoPermission.equals(
472 if (pe.checkParam) {
474 pe.alg,
475 pe.maxKeySize,
476 pe.algParamSpec,
477 pe.exemptionMechanism));
480 pe
565 add(CryptoPermissionEntry pe) argument
570 remove(CryptoPermissionEntry pe) argument
575 contains(CryptoPermissionEntry pe) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Palette.cpp249 PALETTEENTRY pe[256]; local
266 numEntries = FetchPaletteEntries(hDC, pe);
271 (0 == memcmp(pe, systemEntriesWin32, numEntries * sizeof(PALETTEENTRY))))
278 memcpy(systemEntriesWin32, pe, numEntries * sizeof(PALETTEENTRY));
309 | (pe[i].peRed << 16)
310 | (pe[i].peGreen << 8)
311 | (pe[i].peBlue);
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSolarisEventPort.java191 // pe->portev_object is file descriptor
193 // pe->portev_events
243 static native void port_get(int port, long pe) throws IOException; argument
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyParser.java410 PermissionEntry pe = parsePermissionEntry();
411 e.add(pe);
635 * pe = new PermissionEntry("java.io.FilePermission",
640 * ge.add(pe);
666 public void add(PermissionEntry pe) argument
668 permissionEntries.addElement(pe);
671 public boolean remove(PermissionEntry pe) argument
673 return permissionEntries.removeElement(pe);
676 public boolean contains(PermissionEntry pe) argument
678 return permissionEntries.contains(pe);
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyFile.java653 } catch (PolicyParser.ParsingException pe) {
656 Object[] source = {policy, pe.getLocalizedMessage()};
659 pe.printStackTrace();
686 PolicyEntry pe = new PolicyEntry(new CodeSource(null,
688 pe.add(SecurityConstants.LOCAL_LISTEN_PERMISSION);
689 pe.add(new PropertyPermission("java.version",
691 pe.add(new PropertyPermission("java.vendor",
693 pe.add(new PropertyPermission("java.vendor.url",
695 pe.add(new PropertyPermission("java.class.version",
697 pe
1672 getPrincipalInfo(PolicyParser.PrincipalEntry pe, Principal[] pdp) argument
1926 expandPermissionName(PolicyParser.PermissionEntry pe, KeyStore keystore) argument
[all...]
H A DPolicyParser.java540 PermissionEntry pe = parsePermissionEntry();
541 e.add(pe);
836 * pe = new PermissionEntry("java.io.FilePermission",
841 * ge.add(pe);
869 public void add(PermissionEntry pe) argument
871 permissionEntries.addElement(pe);
874 public boolean remove(PrincipalEntry pe) argument
876 return principals.remove(pe);
879 public boolean remove(PermissionEntry pe) argument
881 return permissionEntries.removeElement(pe);
884 contains(PrincipalEntry pe) argument
889 contains(PermissionEntry pe) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java242 PolicyParser.PrincipalEntry pe = prinList.next();
244 verifyPrincipal(pe.getPrincipalClass(),
245 pe.getPrincipalName());
250 Object[] source = {pe.getPrincipalClass()};
259 PolicyParser.PermissionEntry pe = perms.nextElement();
261 verifyPermission(pe.permission, pe.name, pe.action);
266 Object[] source = {pe.permission};
272 Object[] source = {pe
406 addEntry(PolicyEntry pe, int index) argument
427 addPrinEntry(PolicyEntry pe, PolicyParser.PrincipalEntry newPrin, int index) argument
453 addPermEntry(PolicyEntry pe, PolicyParser.PermissionEntry newPerm, int index) argument
476 removePermEntry(PolicyEntry pe, PolicyParser.PermissionEntry perm) argument
488 removeEntry(PolicyEntry pe) argument
[all...]

Completed in 76 milliseconds