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

1 23 4 5 6 7 8 91011>>

  /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;
  /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);
  /frameworks/base/core/java/android/bluetooth/
IBluetooth.aidl 61 boolean createBond(in String address);
62 boolean createBondOutOfBand(in String address, in byte[] hash, in byte[] randomizer);
63 boolean cancelBondProcess(in String address);
64 boolean removeBond(in String address);
66 int getBondState(in String address);
67 boolean setDeviceOutOfBandData(in String address, in byte[] hash, in byte[] randomizer);
69 String getRemoteName(in String address);
70 String getRemoteAlias(in String address);
71 boolean setRemoteAlias(in String address, in String name);
72 int getRemoteClass(in String address);
    [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...]
  /frameworks/base/core/java/android/server/
BluetoothEventLoop.java 76 String address = null;
79 address = (String)msg.obj;
80 if (address != null) {
81 mBluetoothService.setPairingConfirmation(address, true);
94 address = devices[0];
95 mBluetoothService.setBondState(address,
178 private void addDevice(String address, String[] properties) {
181 deviceProperties.addProperties(address, properties);
182 String rssi = deviceProperties.getProperty(address, "RSSI");
183 String classValue = deviceProperties.getProperty(address, "Class")
242 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local
270 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local
287 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local
390 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local
477 String address = mBluetoothService.getAddressFromObjectPath(path); local
500 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local
527 String address = mBluetoothService.getAddressFromObjectPath(objectPath); local
559 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local
595 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local
618 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local
640 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local
705 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local
741 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local
864 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local
914 String address = mBluetoothService.getAddressFromObjectPath(path); local
951 String address = mBluetoothService.getAddressFromObjectPath(path); 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...]
MacroAssemblerX86_64.h 55 void add32(TrustedImm32 imm, AbsoluteAddress address)
57 move(TrustedImmPtr(address.m_ptr), scratchRegister);
58 add32(imm, Address(scratchRegister));
61 void and32(TrustedImm32 imm, AbsoluteAddress address)
63 move(TrustedImmPtr(address.m_ptr), scratchRegister);
64 and32(imm, Address(scratchRegister));
67 void or32(TrustedImm32 imm, AbsoluteAddress address)
69 move(TrustedImmPtr(address.m_ptr), scratchRegister);
70 or32(imm, Address(scratchRegister));
73 void sub32(TrustedImm32 imm, AbsoluteAddress address)
    [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:__anon9338
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...]
  /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...]
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocatorPosix.cpp 66 // Cook up an address to allocate at, using the following recipe:
73 // 2^24, which should put up somewhere in the middle of userspace (in the address range
89 void OSAllocator::commit(void* address, size_t bytes, bool, bool)
92 while (madvise(address, bytes, MADV_FREE_REUSE) == -1 && errno == EAGAIN) { }
95 UNUSED_PARAM(address);
100 void OSAllocator::decommit(void* address, size_t bytes)
103 while (madvise(address, bytes, MADV_FREE_REUSABLE) == -1 && errno == EAGAIN) { }
105 while (madvise(address, bytes, MADV_FREE) == -1 && errno == EAGAIN) { }
107 while (madvise(address, bytes, MADV_DONTNEED) == -1 && errno == EAGAIN) { }
109 UNUSED_PARAM(address);
    [all...]
  /external/nist-sip/java/gov/nist/core/net/
DefaultNetworkLayer.java 74 public Socket createSocket(InetAddress address, int port)
76 return new Socket(address, port);
105 public SSLSocket createSSLSocket(InetAddress address, int port)
107 return (SSLSocket) sslSocketFactory.createSocket(address, port);
111 public SSLSocket createSSLSocket(InetAddress address, int port,
113 return (SSLSocket) sslSocketFactory.createSocket(address, port,
117 public Socket createSocket(InetAddress address, int port,
120 return new Socket(address, port, myAddress, 0);
122 return new Socket(address, port);
127 * address:port
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PAssertedIdentity.java 37 import gov.nist.javax.sip.address.AddressImpl;
57 * @param address address to set
59 public PAssertedIdentity(AddressImpl address) {
61 this.address = address;
77 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
80 retval.append(address.encode());
81 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
PCalledPartyID.java 37 import gov.nist.javax.sip.address.AddressImpl;
52 * @param address address to set
54 public PCalledPartyID(AddressImpl address) {
56 this.address = address;
72 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
75 retval.append(address.encode());
76 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
PProfileKey.java 29 import gov.nist.javax.sip.address.AddressImpl;
46 public PProfileKey(AddressImpl address)
49 this.address = address;
57 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
60 retval.append(address.encode());
61 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
Path.java 36 import gov.nist.javax.sip.address.AddressImpl;
49 * @param address address to set
51 public Path(AddressImpl address) {
53 this.address = address;
71 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
74 retval.append(address.encode());
75 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
  /external/chromium/net/udp/
udp_socket_libevent.cc 81 int UDPSocketLibevent::GetPeerAddress(IPEndPoint* address) const {
83 DCHECK(address);
93 scoped_ptr<IPEndPoint> address(new IPEndPoint());
94 if (!address->FromSockAddr(addr, addr_len))
96 remote_address_.reset(address.release());
99 *address = *remote_address_;
103 int UDPSocketLibevent::GetLocalAddress(IPEndPoint* address) const {
105 DCHECK(address);
115 scoped_ptr<IPEndPoint> address(new IPEndPoint());
116 if (!address->FromSockAddr(addr, addr_len)
    [all...]
udp_socket_win.cc 77 int UDPSocketWin::GetPeerAddress(IPEndPoint* address) const {
79 DCHECK(address);
89 scoped_ptr<IPEndPoint> address(new IPEndPoint());
90 if (!address->FromSockAddr(addr, addr_len))
92 remote_address_.reset(address.release());
95 *address = *remote_address_;
99 int UDPSocketWin::GetLocalAddress(IPEndPoint* address) const {
101 DCHECK(address);
111 scoped_ptr<IPEndPoint> address(new IPEndPoint());
112 if (!address->FromSockAddr(addr, addr_len)
    [all...]

Completed in 1013 milliseconds

1 23 4 5 6 7 8 91011>>