Searched refs:interf (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/src/share/sample/nio/multicast/
H A DMulticastAddress.java53 private final NetworkInterface interf; field in class:MulticastAddress
55 private MulticastAddress(InetAddress group, int port, NetworkInterface interf) { argument
58 this.interf = interf;
72 NetworkInterface interf() { method in class:MulticastAddress
73 return interf;
122 NetworkInterface interf = null;
125 interf = NetworkInterface.getByName(components[1]);
129 if (interf == null) {
134 return new MulticastAddress(group, port, interf);
[all...]
H A DSender.java70 if (target.interf() != null) {
71 dc.setOption(StandardSocketOptions.IP_MULTICAST_IF, target.interf());
H A DReader.java51 System.err.println("usage: java Reader group:port@interf [-only source...] [-block source...]");
76 if (target.interf() == null)
113 MembershipKey key = dc.join(target.group(), target.interf());
120 dc.join(target.group(), target.interf(), source);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DMembershipKeyImpl.java43 private final NetworkInterface interf; field in class:MembershipKeyImpl
57 NetworkInterface interf,
62 this.interf = interf;
76 NetworkInterface interf,
82 super(ch, group, interf, source);
111 NetworkInterface interf,
117 super(ch, group, interf, source);
162 return interf;
212 sb.append(interf
55 MembershipKeyImpl(MulticastChannel ch, InetAddress group, NetworkInterface interf, InetAddress source) argument
74 Type4(MulticastChannel ch, InetAddress group, NetworkInterface interf, InetAddress source, int groupAddress, int interfAddress, int sourceAddress) argument
109 Type6(MulticastChannel ch, InetAddress group, NetworkInterface interf, InetAddress source, byte[] groupAddress, int index, byte[] sourceAddress) argument
[all...]
H A DNet.java248 static Inet4Address anyInet4Address(final NetworkInterface interf) { argument
251 Enumeration<InetAddress> addrs = interf.getInetAddresses();
519 static int join4(FileDescriptor fd, int group, int interf, int source) argument
522 return joinOrDrop4(true, fd, group, interf, source);
528 static void drop4(FileDescriptor fd, int group, int interf, int source) argument
531 joinOrDrop4(false, fd, group, interf, source);
534 private static native int joinOrDrop4(boolean join, FileDescriptor fd, int group, int interf, int source) argument
540 static int block4(FileDescriptor fd, int group, int interf, int source) argument
543 return blockOrUnblock4(true, fd, group, interf, source);
549 static void unblock4(FileDescriptor fd, int group, int interf, in argument
555 blockOrUnblock4(boolean block, FileDescriptor fd, int group, int interf, int source) argument
601 setInterface4(FileDescriptor fd, int interf) argument
[all...]
H A DMembershipRegistry.java51 MembershipKey checkMembership(InetAddress group, NetworkInterface interf, argument
58 if (key.networkInterface().equals(interf)) {
H A DDatagramChannelImpl.java216 NetworkInterface interf = (NetworkInterface)value;
218 int index = interf.getIndex();
224 Inet4Address target = Net.anyInet4Address(interf);
789 NetworkInterface interf,
830 MembershipKey key = registry.checkMembership(group, interf, source);
839 int index = interf.getIndex();
853 key = new MembershipKeyImpl.Type6(this, group, interf, source,
858 Inet4Address target = Net.anyInet4Address(interf);
871 key = new MembershipKeyImpl.Type4(this, group, interf, source,
882 NetworkInterface interf)
788 innerJoin(InetAddress group, NetworkInterface interf, InetAddress source) argument
881 join(InetAddress group, NetworkInterface interf) argument
889 join(InetAddress group, NetworkInterface interf, InetAddress source) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DMulticastChannel.java157 * @param interf
180 MembershipKey join(InetAddress group, NetworkInterface interf) argument
200 * @param interf
228 MembershipKey join(InetAddress group, NetworkInterface interf, InetAddress source) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/proxy/
H A DCompositeInvocationHandler.java34 /** Add an invocation handler for all methods on interface interf.
36 void addInvocationHandler( Class interf, InvocationHandler handler ) ; argument
H A DCompositeInvocationHandlerImpl.java46 public void addInvocationHandler( Class interf, argument
49 classToInvocationHandler.put( interf, handler ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DPresentationManagerImpl.java271 private Class interf ; field in class:PresentationManagerImpl.NodeImpl
275 return interf ;
278 public NodeImpl( Class interf )
280 this.interf = interf ;
285 return "RMI:" + interf.getName() + ":0000000000000000" ;
291 Class[] interfaces = interf.getInterfaces() ;
304 return "NodeImpl[" + interf + "]" ;
309 return interf.hashCode() ;
322 return other.interf
[all...]
H A DIDLNameTranslatorImpl.java142 public static IDLNameTranslator get( Class interf )
145 return new IDLNameTranslatorImpl(new Class[] { interf } );
229 Class interf = interf_[ctr] ;
232 final Method[] methods = interf.getMethods();
252 if (idlTypesUtil.isPropertyAccessorMethod(nextMethod, interf)) {
350 Class interf = interf_[ctr] ;
351 String mappedContainerName = getMappedContainerName(interf);
H A DIDLNameTranslatorImpl_save.sjava133 public static IDLNameTranslator get( Class interf )
136 return new IDLNameTranslatorImpl(new Class[] { interf } );
216 Class interf = interf_[ctr] ;
219 Method[] methods = interf.getMethods();
234 nextMethod, interf ) ;
336 Class interf = interf_[ctr] ;
337 String mappedContainerName = getMappedContainerName(interf);
/openjdk7/jdk/src/share/classes/sun/management/jdp/
H A DJdpBroadcaster.java81 NetworkInterface interf = NetworkInterface.getByInetAddress(srcAddress);
87 channel.setOption(StandardSocketOptions.IP_MULTICAST_IF, interf);
/openjdk7/jdk/test/sun/management/jdp/
H A DJdpClient.java140 for (NetworkInterface interf : Collections.list(nets)) {
141 if (interf.supportsMulticast()) {
143 channel.join(address, interf);
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DNet.c432 jint group, jint interf, jint source)
441 mreq.imr_interface.s_addr = htonl(interf);
452 mreq_source.imr_interface.s_addr = htonl(interf);
470 jint group, jint interf, jint source)
482 mreq_source.imr_interface.s_addr = htonl(interf);
567 Java_sun_nio_ch_Net_setInterface4(JNIEnv* env, jobject this, jobject fdo, jint interf) argument
573 in.s_addr = htonl(interf);
431 Java_sun_nio_ch_Net_joinOrDrop4(JNIEnv *env, jobject this, jboolean join, jobject fdo, jint group, jint interf, jint source) argument
469 Java_sun_nio_ch_Net_blockOrUnblock4(JNIEnv *env, jobject this, jboolean block, jobject fdo, jint group, jint interf, jint source) argument
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DNet.c353 jint group, jint interf, jint source)
362 mreq.imr_interface.s_addr = htonl(interf);
369 mreq_source.imr_interface.s_addr = htonl(interf);
386 jint group, jint interf, jint source)
394 mreq_source.imr_interface.s_addr = htonl(interf);
472 Java_sun_nio_ch_Net_setInterface4(JNIEnv* env, jobject this, jobject fdo, jint interf) argument
478 in.s_addr = htonl(interf);
352 Java_sun_nio_ch_Net_joinOrDrop4(JNIEnv *env, jobject this, jboolean join, jobject fdo, jint group, jint interf, jint source) argument
385 Java_sun_nio_ch_Net_blockOrUnblock4(JNIEnv *env, jobject this, jboolean block, jobject fdo, jint group, jint interf, jint source) argument
/openjdk7/hotspot/src/share/vm/oops/
H A DklassVtable.hpp212 void initialize(klassOop interf, int offset) { _interface = interf; _offset = offset; } argument
H A DcpCacheOop.cpp256 klassOop interf = method->method_holder();
257 assert(instanceKlass::cast(interf)->is_interface(), "must be an interface");
259 set_f1(interf);
H A DinstanceKlass.cpp625 instanceKlass* interf = instanceKlass::cast(klassOop(local_interfaces()->obj_at(i))); local
626 assert(interf->is_interface(), "expected interface");
627 interf->add_implementor(this_as_oop());
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParseException.java240 static ParseException methodClash (Scanner scanner, String interf, String method) argument
242 return arg2 ("methodClash", scanner, interf, method);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java476 for(TypeMirror interf: interfaces) {
480 writer.print(interf.toString());
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp808 KlassHandle interf; local
815 interf = KlassHandle(THREAD, cp->resolved_klass_at(interface_index));
828 interf = KlassHandle(THREAD, k);
831 if (!Klass::cast(interf())->is_interface()) {
834 interfaces->obj_at_put(index, interf());
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp2945 oop interf = Klass::cast((klassOop)interfaces->obj_at(i))->java_mirror(); local
2946 if (interf == NULL) {
2949 if (!CallbackInvoker::report_interface_reference(mirror, interf)) {

Completed in 147 milliseconds