Searched refs:factory (Results 76 - 100 of 371) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DTransportTubeFactory.java44 * of JAX-WS client runtime) relies on this factory to create a suitable transport {@link Tube}
77 * Creates a transport {@link Tube} for the given port, if this factory can do so,
85 * null to indicate that this factory isn't capable of creating a transport
90 * if this factory is capable of creating a transport tube but some fatal
106 for (TransportTubeFactory factory : ServiceFinder.find(TransportTubeFactory.class,classLoader)) {
107 Tube tube = factory.doCreate(context);
109 TransportTubeFactory.logger.fine(factory.getClass()+" successfully created "+tube);
118 for (TransportPipeFactory factory : ServiceFinder.find(TransportPipeFactory.class,classLoader)) {
119 Pipe pipe = factory.doCreate(ctxt);
121 logger.fine(factory
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/utils/
H A DFactoryImpl.java50 SAXParserFactory factory =
55 return factory;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DFP2RegisterDecoder.java39 SPARCInstructionFactory factory) {
43 return factory.newFP2RegisterInstruction(name, opf, (SPARCFloatRegister)rs2, (SPARCFloatRegister)rd);
36 decodeFloatInstruction(int instruction, SPARCRegister rs1, SPARCRegister rs2, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DFPMoveDecoder.java39 SPARCInstructionFactory factory) {
43 return factory.newFPMoveInstruction(name, opf, (SPARCFloatRegister)rs2, (SPARCFloatRegister)rd);
36 decodeFloatInstruction(int instruction, SPARCRegister rs1, SPARCRegister rs2, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DSPARCDisassembler.java36 protected final SPARCInstructionFactory factory; field in class:SPARCDisassembler
38 public SPARCDisassembler(long startPc, byte[] code, SPARCInstructionFactory factory) { argument
40 this.factory = factory;
48 return callDecoder.decode(instruction, factory);
56 return decoder.decode(instruction, factory);
83 return getFormat3Decoder(row, column).decode(instruction, factory);
93 return getFormat3ADecoder(row, column).decode(instruction, factory);
H A DV9CCBranchDecoder.java32 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
33 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9CasDecoder.java37 SPARCV9InstructionFactory factory) {
38 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
34 decodeV9AsiLoadStore(int instruction, SPARCV9RegisterIndirectAddress addr, SPARCRegister rd, SPARCV9InstructionFactory factory) argument
H A DV9PopcDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
32 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9RdprDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
31 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DV9WrprDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
31 SPARCV9InstructionFactory v9factory = (SPARCV9InstructionFactory) factory;
H A DMemoryInstructionDecoder.java67 Instruction decode(int instruction, SPARCInstructionFactory factory) { argument
70 boolean isV9Okay = (factory instanceof SPARCV9InstructionFactory);
72 return factory.newIllegalInstruction(instruction);
74 return decodeMemoryInstruction(instruction, addr, rd, factory);
85 SPARCRegister rd, SPARCInstructionFactory factory);
83 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DCallDecoder.java33 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
42 return factory.newCallInstruction(name, address, size, prefixes);
H A DConditionalJmpDecoder.java36 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
41 return factory.newCondJmpInstruction(name, (X86PCRelativeAddress)addr, byteIndex-instrStartIndex, prefixes);
H A DJmpDecoder.java33 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
42 return factory.newJmpInstruction(name, address, size, prefixes);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/soql/
H A DJSDB.java42 private JSJavaFactory factory = new JSJavaFactoryImpl();
49 return factory;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/policy/
H A DPolicyResolverFactory.java46 for (PolicyResolverFactory factory : ServiceFinder.find(PolicyResolverFactory.class)) {
47 PolicyResolver policyResolver = factory.doCreate();
/openjdk7/jdk/test/java/security/cert/CertificateFactory/
H A DSlowStream.java30 CertificateFactory factory = CertificateFactory.getInstance("X.509");
31 if (factory.generateCertificates(System.in).size() != 5) {
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DRMIMasterSocketFactory.java42 * the factory for the successful mechanism is stored in an internal
76 /** table of hosts successfully connected to and the factory used */
86 /** default factory for initial use for direct socket connection */
131 * successfully before, then use the same factory again. Otherwise,
144 * the fallback procedure and delegate to the initial factory.
150 RMISocketFactory factory;
154 * use the same factory.
156 factory = successTable.get(host);
157 if (factory != null) {
160 "previously successful factory foun
300 rememberFactory(String host, RMISocketFactory factory) argument
356 private RMISocketFactory factory; field in class:RMIMasterSocketFactory.AsyncConnector
379 AsyncConnector(RMISocketFactory factory, String host, int port, AccessControlContext acc) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/client/
H A DServiceInterceptorFactory.java92 public static boolean registerForThread(ServiceInterceptorFactory factory) { argument
93 return threadLocalFactories.get().add(factory);
99 public static boolean unregisterForThread(ServiceInterceptorFactory factory) { argument
100 return threadLocalFactories.get().remove(factory);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/
H A DClientThread.java32 private SSLSocketFactory factory; field in class:ClientThread
43 factory = ctx.getSocketFactory();
60 factory = ctx.getSocketFactory();
78 s = (SSLSocket) factory.createSocket(server, port);
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DTerminalFactory.java38 * A factory for CardTerminal objects.
43 * one of the static factory methods in this class
104 TerminalFactory factory = null;
106 factory = TerminalFactory.getInstance(type, null);
110 if (factory == null) {
111 // if that did not work, try the Sun PC/SC factory
119 factory = TerminalFactory.getInstance(type, null, sun);
124 if (factory == null) {
126 factory = new TerminalFactory
130 defaultFactory = factory;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DUsesJAXBContextFeature.java59 private final JAXBContextFactory factory; field in class:UsesJAXBContextFeature
72 factory = factoryClass.getConstructor().newInstance();
96 * @param factory
99 public UsesJAXBContextFeature(@Nullable JAXBContextFactory factory) { argument
100 this.factory = factory;
108 this.factory = new JAXBContextFactory() {
124 return factory;
/openjdk7/jdk/test/com/sun/tracing/
H A DBasicFunctionality.java49 public static ProviderFactory factory; field in class:BasicFunctionality
54 factory = ProviderFactory.getDefaultFactory();
55 if (factory != null) {
56 bp = factory.createProvider(BasicProvider.class);
69 if (factory == null) {
70 fail("ProviderFactory.getDefaultFactory: Did not create factory");
76 factory.createProvider(null);
81 factory.createProvider(InvalidProvider.class);
H A DBasicWithSecurityMgr.java49 public static ProviderFactory factory; field in class:BasicWithSecurityMgr
56 factory = ProviderFactory.getDefaultFactory();
57 if (factory != null) {
58 bp = factory.createProvider(BasicProvider.class);
71 if (factory == null) {
72 fail("ProviderFactory.getDefaultFactory: Did not create factory");
78 factory.createProvider(null);
83 factory.createProvider(InvalidProvider.class);
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSManagerImpl.java83 MechanismFactory factory = list.getMechFactory(mech);
84 return factory.getNameTypes().clone();
191 MechanismFactory factory = list.getMechFactory(mech);
192 return factory.getCredentialElement(name, initLifetime,
201 MechanismFactory factory = list.getMechFactory(mech);
202 return factory.getNameElement(name, nameType);
210 MechanismFactory factory = list.getMechFactory(mech);
211 return factory.getNameElement(name, nameType);
222 MechanismFactory factory = list.getMechFactory(mech, p);
223 return factory
[all...]

Completed in 85 milliseconds

1234567891011>>