Searched defs:cf (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jdk/test/sun/security/x509/X509CRLImpl/
H A DUnexpectedNPE.java34 CertificateFactory cf = null ; field in class:UnexpectedNPE
59 if (cf == null) {
61 cf = CertificateFactory.getInstance("X.509", "SUN");
69 cf.generateCRL(new ByteArrayInputStream(buf));
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DConfigSpiFile.java46 private ConfigFile cf; field in class:ConfigSpiFile
64 cf = new ConfigFile();
72 cf = new ConfigFile(uriParam.getURI());
99 return cf.getAppConfigurationEntry(name);
103 cf.refresh();
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DMethodFinder.java42 * @param cf ClassFile
47 public abstract void referenceFound(ClassFile cf, Method m, Set<Integer> refs) argument
50 public String parse(ClassFile cf) throws ConstantPoolException { argument
53 for (ConstantPool.CPInfo cpInfo : cf.constant_pool.entries()) {
61 for (Method m : cf.methods) {
73 referenceFound(cf, m, refs);
77 return cprefs.isEmpty() ? "" : cf.getName();
H A DCallerSensitiveFinder.java120 for (ClassFile cf : reader.getClassFiles()) {
121 String classFileName = cf.getName();
126 pool.submit(getTask(cf));
153 public void referenceFound(ClassFile cf, Method m, Set<Integer> refs) argument
156 String name = String.format("%s#%s %s", cf.getName(),
157 m.getName(cf.constant_pool),
158 m.descriptor.getValue(cf.constant_pool));
159 if (!CallerSensitiveFinder.isCallerSensitive(m, cf.constant_pool)) {
166 if (!inMethodHandlesList(cf.getName(), m.getName(cf
177 getTask(final ClassFile cf) argument
[all...]
/openjdk7/jdk/test/sun/security/provider/KeyStore/
H A DCaseSensitiveAliases.java72 private static CertificateFactory cf; field in class:CaseSensitiveAliases
75 if (cf == null) {
76 cf = CertificateFactory.getInstance("X.509");
79 return (X509Certificate)cf.generateCertificate(in);
/openjdk7/jdk/test/javax/crypto/JceSecurity/
H A DMyCertificateFactory.java39 CertificateFactory cf; field in class:MyCertificateFactory
43 cf = CertificateFactory.getInstance("X.509", "SUN");
53 Certificate cert = cf.generateCertificate(inStream);
62 return cf.generateCertPath(inStream);
68 return cf.generateCertPath(inStream, encoding);
74 return cf.generateCertPath(certificates);
78 return cf.getCertPathEncodings();
84 return cf.generateCertificates(inStream);
89 return cf.generateCRL(inStream);
94 return cf
[all...]
/openjdk7/langtools/test/tools/javap/
H A DT6716452.java41 ClassFile cf = ClassFile.read(classFile);
42 for (Method m: cf.methods) {
43 test(cf, m);
50 void test(ClassFile cf, Method m) { argument
51 test(cf, m, Attribute.Code, Code_attribute.class);
52 test(cf, m, Attribute.Exceptions, Exceptions_attribute.class);
57 void test(ClassFile cf, Method m, String name, Class<?> c) { argument
58 int index = m.attributes.getIndex(cf.constant_pool, name);
60 String m_name = m.getName(cf.constant_pool);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DClassDump.java42 public void setClassFilter(ClassFilter cf) { argument
43 classFilter = cf;
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DSourceWriter.java77 public void reset(ClassFile cf, Code_attribute attr) { argument
78 setSource(cf);
132 private void setSource(ClassFile cf) { argument
133 if (cf != classFile) {
134 classFile = cf;
135 sourceLines = splitLines(readSource(cf));
139 private String readSource(ClassFile cf) { argument
154 String className = cf.getName();
156 (SourceFile_attribute) cf.attributes.get(Attribute.SourceFile);
161 String sourceFile = sf.getSourceFile(cf
[all...]
H A DClassWriter.java107 protected void setClassFile(ClassFile cf) { argument
108 classFile = cf;
120 public void write(ClassFile cf) { argument
121 setClassFile(cf);
150 Attribute sfa = cf.getAttribute(Attribute.SourceFile);
160 AccessFlags flags = cf.access_flags;
171 Signature_attribute sigAttr = getSignature(cf.attributes);
175 String sn = getJavaSuperclassName(cf);
205 attrWriter.write(cf, cf
567 getJavaName(ClassFile cf) argument
575 getJavaSuperclassName(ClassFile cf) argument
583 getJavaInterfaceName(ClassFile cf, int index) argument
[all...]
H A DJavapTask.java629 String cfName = cfInfo.cf.getName();
636 ClassFile cf = cfInfo.cf;
637 Attribute a = cf.getAttribute(Attribute.InnerClasses);
644 ConstantPool.CONSTANT_Class_info outerClassInfo = cf.constant_pool.getClassInfo(outerIndex);
646 if (outerClassName.equals(cf.getName())) {
648 ConstantPool.CONSTANT_Class_info innerClassInfo = cf.constant_pool.getClassInfo(innerIndex);
766 ClassFileInfo(JavaFileObject fo, ClassFile cf, byte[] digest, int size) { argument
768 this.cf = cf;
773 public final ClassFile cf; field in class:JavapTask.ClassFileInfo
[all...]
/openjdk7/langtools/test/tools/javac/generics/
H A DOverrideBridge.java122 ClassFile cf = ClassFile.read(f);
123 members.put(cf, readMethod(cf, "m"));
131 static List<Method> readMethod(ClassFile cf, String name) throws ConstantPoolException { argument
133 for (Method m : cf.methods) {
134 if (m.getName(cf.constant_pool).equals(name)) {
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMX509Data.java55 private CertificateFactory cf; field in class:DOMX509Data
223 return (X509Certificate) cf.generateCertificate(bs);
232 return (X509CRL) cf.generateCRL(bs);
241 if (cf == null) {
242 cf = CertificateFactory.getInstance("X.509");
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DClassTranslator.java56 * Create a new ClassFile from {@code cf}, such that for all entries
58 * each occurrence of {@code k} in {@code cf} will be replaced by {@code v}.
60 * @param cf the class file to be processed
64 public ClassFile translate(ClassFile cf, Map<Object,Object> translations) { argument
65 ClassFile cf2 = (ClassFile) translations.get(cf);
67 ConstantPool constant_pool2 = translate(cf.constant_pool, translations);
68 Field[] fields2 = translate(cf.fields, cf.constant_pool, translations);
69 Method[] methods2 = translateMethods(cf.methods, cf
[all...]
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DKeySelectors.java201 private CertificateFactory cf; field in class:KeySelectors.CollectionKeySelector
213 cf = CertificateFactory.getInstance("X509");
221 certs.add((X509Certificate)cf.generateCertificate(fis));
297 cf.generateCertificate(fis);
323 cf.generateCertificate(fis);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.hpp423 void oops_do_internal(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map, bool use_interpreter_oop_map_cache);
425 void oops_code_blob_do(OopClosure* f, CodeBlobClosure* cf, const RegisterMap* map);
429 void oops_do(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map) { oops_do_internal(f, cf, map, true); } argument
430 void nmethods_do(CodeBlobClosure* cf);
H A DvmThread.cpp691 void VMThread::oops_do(OopClosure* f, CodeBlobClosure* cf) { argument
692 Thread::oops_do(f, cf);
H A Dframe.cpp984 void frame::oops_code_blob_do(OopClosure* f, CodeBlobClosure* cf, const RegisterMap* reg_map) { argument
1000 if (cf != NULL)
1001 cf->do_code_blob(_cb);
1121 void frame::oops_do_internal(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map, bool use_interpreter_oop_map_cache) { argument
1134 oops_code_blob_do(f, cf, map);
1144 void frame::nmethods_do(CodeBlobClosure* cf) { argument
1146 cf->do_code_blob(_cb);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DSunCertPathBuilder.java82 private CertificateFactory cf; field in class:SunCertPathBuilder
99 cf = CertificateFactory.getInstance("X.509");
245 cf.generateCertPath(certPathList), this.trustAnchor,
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DFilterTopComponent.java372 CustomFilter cf = new CustomFilter("My custom filter", "");
373 if (cf.openInEditor()) {
374 sequence.addFilter(cf);
375 FileObject fo = getFileObject(cf);
376 FilterChangedListener listener = new FilterChangedListener(fo, cf);
377 listener.changed(cf);
378 cf.getChangedEvent().addListener(listener);
383 com.sun.hotspot.igv.filter.CustomFilter cf = (com.sun.hotspot.igv.filter.CustomFilter) f;
385 sequence.removeFilter(cf);
387 getFileObject(cf)
399 FilterChangedListener(FileObject fo, CustomFilter cf) argument
600 getFileObject(CustomFilter cf) argument
[all...]
/openjdk7/jdk/test/java/nio/channels/
H A DAsyncCloseAndInterrupt.java430 protected Tester(ChannelFactory cf, InterruptibleChannel ch, argument
433 super(cf + "/" + op + "/" + testName[test]);
554 static void test(ChannelFactory cf, Op op, int test) argument
559 InterruptibleChannel ch = cf.create();
560 Tester t = new Tester(cf, ch, op, test);
606 static void test(ChannelFactory cf, Op op) throws Exception { argument
609 test(cf, op, TEST_INTR);
610 test(cf, op, TEST_PREINTR);
622 test(cf, op, TEST_CLOSE);
625 static void test(ChannelFactory cf) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DParser.java244 private void scaleStmt(ColumnFormat cf) argument
248 cf.setScale(Scale.toScale(t.sval));
257 private void alignStmt(ColumnFormat cf) argument
261 cf.setAlignment(Alignment.toAlignment(t.sval));
269 private void headerStmt(ColumnFormat cf) argument
274 cf.setHeader(headerString);
281 private void widthStmt(ColumnFormat cf) argument
286 cf.setWidth((int)width);
293 private void formatStmt(ColumnFormat cf) argument
298 cf
440 dataStmt(ColumnFormat cf) argument
456 statementList(ColumnFormat cf) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/ldap/
H A DLDAPCertStore.java152 private CertificateFactory cf; field in class:LDAPCertStore
192 cf = CertificateFactory.getInstance("X.509");
440 Certificate cert = cf.generateCertificate(bais);
716 CRL crl = cf.generateCRL(new ByteArrayInputStream(encodedCRL[i]));
/openjdk7/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java62 ClassFile cf = getClassFile("Test");
64 testFields(cf);
65 testMethods(cf);
66 testInnerClasses(cf); // recursive
72 void testFields(ClassFile cf) throws Exception { argument
73 String cn = cf.getName();
74 ConstantPool cp = cf.constant_pool;
75 for (Field f: cf.fields) {
80 void testMethods(ClassFile cf) throws Exception { argument
81 String cn = cf
88 testInnerClasses(ClassFile cf) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_TextComponent.cpp383 COMPOSITIONFORM cf = { CFS_FORCE_POSITION, {0,0}, {0,0,0,0} }; local
384 GetCaretPos(&(cf.ptCurrentPos));
387 ::MapWindowPoints(GetHWnd(), GetProxyFocusOwner(), (LPPOINT)&cf.ptCurrentPos, 1);
388 ImmSetCompositionWindow(hIMC, &cf);
676 CHARFORMAT cf; local
677 memset(&cf, 0, sizeof(cf));
678 cf.cbSize = sizeof(cf);
679 cf
[all...]

Completed in 218 milliseconds

12