HomeSort by relevance Sort by last modified time
    Searched refs:address (Results 51 - 75 of 1915) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/elfutils/tests/
run-dwfl-addr-sect.sh 31 address 0x64 => module "" section 4 + 0
32 address 0x8 => module "" section 1 + 0x8
33 address 0x98 => module "" section 7 + 0
  /external/webkit/Source/JavaScriptCore/wtf/
MallocZoneSupport.h 46 void* operator()(vm_address_t address, size_t size) const
49 kern_return_t err = (*m_reader)(m_task, address, size, static_cast<void**>(&output));
56 T* operator()(T* address, size_t size=sizeof(T)) const
58 return static_cast<T*>((*this)(reinterpret_cast<vm_address_t>(address), size));
62 T* nextEntryInLinkedList(T** address) const
64 T** output = (*this)(address);
  /external/nist-sip/java/gov/nist/javax/sip/header/
To.java 32 import gov.nist.javax.sip.address.AddressImpl;
70 setAddress(from.address);
94 if (address != null) {
95 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
98 address.encode(buffer);
99 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
112 * Conveniance accessor function to get the hostPort field from the address.
118 if (address == null)
120 return address.getHostPort();
124 * Get the display name from the address
    [all...]
  /libcore/luni/src/main/java/java/nio/
NIOAccess.java 29 * address."
36 int address = b.effectiveDirectAddress; local
37 if (address == 0) {
40 return address + (b.position << b._elementSizeShift);
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
fixChangeLogPatch.pl 42 # 2009-12-22 Alice <alice@email.address>
51 # 2009-12-21 Alice <alice@email.address>
67 2010-12-22 Bob <bob@email.address>
79 2010-12-22 Bob <bob@email.address>
94 -2010-12-22 Bob <bob@email.address>
102 2010-12-22 Alice <alice@email.address>
111 -2010-12-22 Bob <bob@email.address>
119 2010-12-22 Alice <alice@email.address>
134 -2010-12-22 Bob <bob@email.address>
138 2010-12-22 Alice <alice@email.address>
    [all...]
  /external/chromium/net/udp/
datagram_client_socket.h 20 // Initialize this socket as a client socket to server at |address|.
22 virtual int Connect(const IPEndPoint& address) = 0;
  /external/elfutils/libdwfl/
dwfl_validate_address.c 1 /* Validate an address and the relocatability of an offset from it.
53 dwfl_validate_address (Dwfl *dwfl, Dwarf_Addr address, Dwarf_Sword offset)
55 Dwfl_Module *mod = INTUSE(dwfl_addrmodule) (dwfl, address);
59 Dwarf_Addr relative = address;
67 relative = address + offset;
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
UdpEndpoint.java 56 private SocketAddress address; field in class:UdpEndpoint
61 public UdpEndpoint( UdpKernel kernel, long id, SocketAddress address, DatagramSocket socket )
64 this.address = address;
76 return address;
105 return String.valueOf(address);
124 data.remaining(), address );
132 throw new KernelException( "Error sending datagram to:" + address, e );
138 return "UdpEndpoint[" + id + ", " + address + "]";
  /external/nist-sip/java/gov/nist/javax/sip/
UtilsExt.java 30 public String generateCallIdentifier(String address);
  /external/nist-sip/java/javax/sip/address/
Hop.java 1 package javax.sip.address;
  /external/valgrind/main/gdbserver_tests/
mcmain_pic.stdout.exp 0 address of main 0x........
3 address of another_func 0x........
  /libcore/luni/src/main/java/libcore/io/
NioBufferIterator.java 28 private final int address; field in class:NioBufferIterator
34 NioBufferIterator(int address, int size, boolean swap) {
35 this.address = address;
49 Memory.peekByteArray(address + position, dst, dstOffset, byteCount);
54 byte result = Memory.peekByte(address + position);
60 int result = Memory.peekInt(address + position, swap);
66 Memory.peekIntArray(address + position, dst, dstOffset, intCount, swap);
71 short result = Memory.peekShort(address + position, swap);
  /external/openssh/
monitor_mm.c 48 long diff = (char *)a->address - (char *)b->address;
62 void *address, size_t size)
70 tmp->address = address;
75 fatal("mm_make_entry(%p): double address %p->%p(%lu)",
76 mm, tmp2, address, (u_long)size);
86 void *address; local
101 address = xmmap(size);
102 if (address == (void *)MAP_FAILED
158 void *address; local
    [all...]
  /external/opencv/cv/src/
cvoptflowlk.cpp 281 int address; local
298 address = BufferAddress;
316 II[address].xx = GradX * GradX;
317 II[address].xy = GradX * GradY;
318 II[address].yy = GradY * GradY;
319 II[address].xt = GradX * GradT;
320 II[address].yt = GradY * GradT;
321 address++;
336 II[address].xx = GradX * GradX;
337 II[address].xy = GradX * GradY
457 int address; local
    [all...]
  /external/chromium/net/socket/
tcp_server_socket_unittest.cc 30 IPEndPoint address; variable
31 ParseAddress("127.0.0.1", 0, &address);
32 ASSERT_EQ(OK, socket_.Listen(address, kListenBacklog));
36 void ParseAddress(std::string ip_str, int port, IPEndPoint* address) {
41 *address = IPEndPoint(ip_number, port);
45 AddressList address; local
46 EXPECT_EQ(OK, socket->GetPeerAddress(&address));
49 address.head()->ai_addr, address.head()->ai_addrlen));
59 TCPClientSocket connecting_socket(AddressList(local_address_.address(),
    [all...]
server_socket.h 23 virtual int Listen(const net::IPEndPoint& address, int backlog) = 0;
25 // Gets current address the socket is bound to.
26 virtual int GetLocalAddress(IPEndPoint* address) const = 0;
  /external/nist-sip/java/gov/nist/javax/sip/address/
AddressFactoryImpl.java 26 package gov.nist.javax.sip.address;
31 import javax.sip.address.*;
34 * Implementation of the JAIN-SIP address factory.
46 public class AddressFactoryImpl implements javax.sip.address.AddressFactory {
56 *Create an empty address object.
61 public javax.sip.address.Address createAddress() {
65 * Creates an Address with the new display name and URI attribute
69 * address. A <code>null</code> value does not set the display name.
70 * @param uri - the new URI value of the address
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerX86.h 60 void add32(TrustedImm32 imm, AbsoluteAddress address)
62 m_assembler.addl_im(imm.m_value, address.m_ptr);
65 void addWithCarry32(TrustedImm32 imm, AbsoluteAddress address)
67 m_assembler.adcl_im(imm.m_value, address.m_ptr);
70 void and32(TrustedImm32 imm, AbsoluteAddress address)
72 m_assembler.andl_im(imm.m_value, address.m_ptr);
75 void or32(TrustedImm32 imm, AbsoluteAddress address)
77 m_assembler.orl_im(imm.m_value, address.m_ptr);
80 void sub32(TrustedImm32 imm, AbsoluteAddress address)
82 m_assembler.subl_im(imm.m_value, address.m_ptr)
    [all...]
  /external/llvm/include/llvm/Support/
MemoryObject.h 21 /// access to 64-bit address spaces.
27 /// getBase - Returns the lowest valid address in the region.
29 /// @result - The lowest valid address.
33 /// contiguous, so the highest valid address of the region
41 /// @param address - The address of the byte, in the same space as getBase().
45 virtual int readByte(uint64_t address, uint8_t* ptr) const = 0;
52 /// @param address - The address of the first byte, in the same space as
61 virtual int readBytes(uint64_t address,
    [all...]
  /external/qemu/android/
async-console.h 28 SockAddress address; member in struct:__anon11696
34 /* Initialize the console connector. This attempts to connect to the address
39 const SockAddress* address,
  /external/qemu/proxy/
proxy_http_int.h 21 SockAddress server_addr; /* server address and port */
30 SockAddress* address );
35 SockAddress* address );
  /frameworks/base/voip/java/android/net/rtp/
RtpStream.java 63 * Creates a RtpStream on the given local address. Note that the local
66 * @param address The network address of the local host to bind to.
67 * @throws SocketException if the address cannot be bound or a problem
70 RtpStream(InetAddress address) throws SocketException {
71 mLocalPort = create(address.getHostAddress());
72 mLocalAddress = address;
75 private native int create(String address) throws SocketException;
78 * Returns the network address of the local host.
92 * Returns the network address of the remote host or {@code null} if th
    [all...]
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenTest.java 29 final String address = "jdoe@example.net"; local
31 Rfc822Token rfc822Token1 = new Rfc822Token(name, address, comment);
33 assertEquals(address, rfc822Token1.getAddress());
36 Rfc822Token rfc822Token2 = new Rfc822Token(null, address, comment);
38 assertEquals(address, rfc822Token2.getAddress());
46 Rfc822Token rfc822Token4 = new Rfc822Token(name, address, null);
48 assertEquals(address, rfc822Token4.getAddress());
54 final String address = "jdoe@example.net"; local
56 Rfc822Token rfc822Token = new Rfc822Token(name, address, comment);
86 final String address = "jdoe@example.net" local
105 String address = "jdoe@example.net"; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
ReferredBy.java 13 import gov.nist.javax.sip.address.*;
53 if (address == null)
56 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
59 retval += address.encode();
60 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
91 * CVS: address here. If this is your work then delete this line.
127 * CVS: address here. If this is your work then delete this line.
  /dalvik/vm/native/
sun_misc_Unsafe.cpp 70 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local
73 int result = android_atomic_release_cas(expectedValue, newValue, address);
90 volatile int64_t* address = (volatile int64_t*) (((u1*) obj) + offset); local
94 dvmQuasiAtomicCas64(expectedValue, newValue, address);
111 int32_t* address = (int32_t*) (((u1*) obj) + offset); local
115 (int32_t) newValue, address);
116 dvmWriteBarrierField(obj, address);
129 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local
131 int32_t value = android_atomic_acquire_load(address);
145 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset) local
160 volatile int64_t* address = (volatile int64_t*) (((u1*) obj) + offset); local
176 volatile int64_t* address = (volatile int64_t*) (((u1*) obj) + offset); local
192 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local
208 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local
223 s4* address = (s4*) (((u1*) obj) + offset); local
237 s4* address = (s4*) (((u1*) obj) + offset); local
253 s4* address = (s4*) (((u1*) obj) + offset); local
268 s8* address = (s8*) (((u1*) obj) + offset); local
282 s8* address = (s8*) (((u1*) obj) + offset); local
298 s8* address = (s8*) (((u1*) obj) + offset); local
313 Object** address = (Object**) (((u1*) obj) + offset); local
327 Object** address = (Object**) (((u1*) obj) + offset); local
345 Object** address = (Object**) (((u1*) obj) + offset); local
    [all...]

Completed in 672 milliseconds

1 23 4 5 6 7 8 91011>>