Searched refs:address (Results 326 - 350 of 838) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DDebugger.java57 /** Parse an address from a hex string in the format "0xFFFFFFFF".
58 The length of the address (i.e., 32 or 64 bits) is platform
125 public ReadResult readBytesFromProcess(long address, long numBytes) argument
128 public void writeBytesToProcess(long address, long numBytes, byte[] data) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DObjectListPanel.java124 private Address address; field in class:ObjectListPanel.AddressWrapper
126 private AddressWrapper(Address address) { argument
127 this.address = address;
131 return address.toString();
136 Address addr = wrapper.address;
137 if (AddressOps.lessThan(address, addr)) return -1;
138 if (AddressOps.greaterThan(address, addr)) return 1;
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLServerSocket.java163 * If <i>address</i> is null, it will default accepting connections
169 * @param address the address of the network interface through
179 protected SSLServerSocket(int port, int backlog, InetAddress address) argument
181 { super(port, backlog, address); }
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DPrincipalImpl.java60 * <LI> an IP address
75 * Constructs a principal using an Internet Protocol (IP) address.
77 * @param address the Internet Protocol (IP) address.
79 public PrincipalImpl(InetAddress address) { argument
81 add[0] = address;
123 * Returns a string representation of this principal. In case of multiple address, the first one is returned.
132 * Returns the Internet Protocol (IP) address for this principal. In case of multiple address, the first one is returned.
134 * @return the Internet Protocol (IP) address fo
[all...]
/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/
H A DSctpServerChannel.java88 * to a specific address via one of its socket's {@link #bind bind}
116 * association this method verifies that the address and port number of the
150 * Binds the channel's socket to a local address and configures the socket
160 * The local address to bind the socket, or {@code null} to
161 * bind the socket to an automatically assigned socket address
172 * If the type of the given address is not supported
188 * Binds the channel's socket to a local address and configures the socket
192 * and the local address. Once a relationship is established then
194 * may not necesssarily be with the address {@code local} as it may be
196 * at least one local address boun
279 bindAddress(InetAddress address) argument
325 unbindAddress(InetAddress address) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DSocketAttachingConnector.java78 * Create an "address" from the hostname and port connector
89 String address = host + argument(ARG_PORT, arguments).value();
90 return super.attach(address, arguments);
H A DGenericListeningConnector.java45 static final String ARG_ADDRESS = "address";
55 * and optionally an "address" connector argument.
70 getString("generic_listening.address.label"),
71 getString("generic_listening.address"),
98 * have "address" and "timeout" connector arguments.
104 public String startListening(String address, Map<String,? extends Connector.Argument> args) argument
113 listener = transportService.startListening(address);
115 return listener.address();
122 String address = argument(ARG_ADDRESS, args).value();
123 return startListening(address, arg
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp92 address os::current_stack_pointer() {
96 return (address) ((char*)esp + sizeof(long)*2);
99 return (address) esp;
104 // Must never look like an address returned by reserve_memory,
115 address os::Linux::ucontext_get_pc(ucontext_t * uc) {
116 return (address)uc->uc_mcontext.gregs[REG_PC];
190 CAST_FROM_FN_PTR(address, os::current_frame));
267 address stub = NULL;
269 address pc = NULL;
273 pc = (address) o
[all...]
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dthread_windows_x86.cpp65 ExtendedPC addr = ExtendedPC((address)uc->Rip);
69 ExtendedPC addr = ExtendedPC((address)uc->Eip);
/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.inline.hpp29 if (THREAD == _owner || THREAD->is_lock_owned((address) _owner)) {
86 if (THREAD->is_lock_owned((address) _owner)) {
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DPollArrayWrapper.c73 jlong address, jint numfds,
79 a = (struct pollfd *) jlong_to_ptr(address);
72 Java_sun_nio_ch_PollArrayWrapper_poll0(JNIEnv *env, jobject this, jlong address, jint numfds, jlong timeout) argument
/openjdk7/jdk/src/windows/classes/java/net/
H A DDualStackPlainDatagramSocketImpl.java79 throw new NullPointerException("argument address");
89 protected synchronized int peek(InetAddress address) throws IOException { argument
92 if (address == null)
93 throw new NullPointerException("Null address in peek()");
98 address = peekPacket.getAddress();
131 throw new NullPointerException("null address || null buffer");
137 protected void connect0(InetAddress address, int port) throws SocketException { argument
140 if (address == null)
141 throw new NullPointerException("address");
143 socketConnect(nativefd, address, por
270 socketConnect(int fd, InetAddress address, int port) argument
284 socketSend(int fd, byte[] data, int offset, int length, InetAddress address, int port, boolean connected) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSctpServerChannelImpl.java60 public SctpServerChannel bindAddress(InetAddress address) argument
66 public SctpServerChannel unbindAddress(InetAddress address) argument
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DRegistryFileTypeDetector.java63 return queryStringValue(keyBuffer.address(), nameBuffer.address());
H A DWindowsUserDefinedFileAttributeView.java48 // syntax to address named streams
121 long address = buffer.address();
141 BackupResult result = BackupRead(handle, address,
147 int streamId = unsafe.getInt(address + OFFSETOF_STREAM_ID);
148 long streamSize = unsafe.getLong(address + OFFSETOF_STREAM_SIZE);
149 int nameSize = unsafe.getInt(address + OFFSETOF_STREAM_NAME_SIZE);
153 result = BackupRead(handle, address, nameSize, false, context);
161 unsafe.copyMemory(null, address, nameAsArray,
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DLotsOfCancels.java90 InetSocketAddress address = new InetSocketAddress("127.0.0.1", 7359);
97 server.socket().bind(address, 5000);
102 ClientThread client = new ClientThread(address);
201 private final SocketAddress address; field in class:LotsOfCancels.ClientThread
206 ClientThread(SocketAddress address) throws Exception { argument
207 this.address = address;
243 channel.connect(address);
/openjdk7/jdk/src/share/native/java/util/zip/
H A DAdler32.c59 jlong address, jint off, jint len)
61 Bytef *buf = (Bytef *)jlong_to_ptr(address);
58 Java_java_util_zip_Adler32_updateByteBuffer(JNIEnv *env, jclass cls, jint adler, jlong address, jint off, jint len) argument
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DPollArrayWrapper.java54 pollArrayAddress = pollArray.address();
113 pollArrayAddress = pollArray.address();
H A DEPollPort.java60 // address of the poll array passed to epoll_wait
61 private final long address; field in class:EPollPort
104 this.address = allocatePollArray(MAX_EPOLL_EVENTS);
126 freePollArray(address);
194 int n = epollWait(epfd, address, MAX_EPOLL_EVENTS);
204 long eventAddress = getEvent(address, n);
H A DKQueuePort.java57 // address of the poll array passed to kqueue_wait
58 private final long address; field in class:KQueuePort
102 this.address = allocatePollArray(MAX_KEVENTS_TO_POLL);
124 freePollArray(address);
196 int n = keventPoll(kqfd, address, MAX_KEVENTS_TO_POLL);
206 long keventAddress = getEvent(address, n);
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DGnomeFileTypeDetector.java72 byte[] type = probeUsingGio(buffer.address());
75 byte[] type = probeUsingGnomeVfs(buffer.address());
/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_64.cpp76 static address handle_unsafe_access() {
78 address pc = thread->saved_exception_pc();
82 address npc = Assembler::locate_next_instruction(pc);
87 // return address of next instruction to execute
99 __ incrementl(ExternalAddress((address)&counter));
109 // c_rarg0: call wrapper address address
110 // c_rarg1: result address
113 // c_rarg4: (interpreter) entry point address
134 // 1 [ return address ]
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DicBuffer.cpp76 address ICStub::destination() const {
85 void ICStub::set_stub(CompiledIC *ic, oop cached_value, address dest_addr) {
167 bool InlineCacheBuffer::contains(address instruction_address) {
182 void InlineCacheBuffer::create_transition_stub(CompiledIC *ic, oop cached_oop, address entry) {
205 address InlineCacheBuffer::ic_destination_for(CompiledIC *ic) {
/openjdk7/jdk/test/com/sun/jdi/
H A DExclusiveBind.java95 * Launch (in server mode) a debuggee with the given address and
98 private static Process launch(String address, boolean suspend, String class_name) throws IOException { argument
117 cmd += ",address=" + address + " " + class_name;
130 * - Launch a debuggee in server=y,suspend=y,address=${port}
132 * - Second debuggee should fail with an error (address already in use)
141 String address = String.valueOf(port);
144 Process process1 = launch(address, true, "HelloWorld");
149 // launch a second debuggee with the same address
150 Process process2 = launch(address, fals
[all...]
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DB5017051.java80 InetSocketAddress address = httpServer.getAddress();
83 URL url = new URL("http://" + address.getHostName() + ":" + address.getPort() + "/test/");
92 URL url2 = new URL("http://" + address.getHostName() + ":" + address.getPort() + "/test2/");

Completed in 89 milliseconds

<<11121314151617181920>>