/frameworks/base/services/java/com/android/server/display/ |
WifiDisplayAdapter.java | 169 public void requestConnectLocked(final String address, final boolean trusted) { 171 Slog.d(TAG, "requestConnectLocked: address=" + address + ", trusted=" + trusted); 176 if (!isRememberedDisplayLocked(address)) { 178 + "an unknown wifi display: " + address); 188 mDisplayController.requestConnect(address); 194 private boolean isRememberedDisplayLocked(String address) { 196 if (display.getDeviceAddress().equals(address)) { 218 public void requestRenameLocked(String address, String alias) { 220 Slog.d(TAG, "requestRenameLocked: address=" + address + ", alias=" + alias) 335 String address = display.getDeviceAddress(); local [all...] |
/packages/apps/Bluetooth/jni/ |
com_android_bluetooth_a2dp.cpp | 193 static jboolean connectA2dpNative(JNIEnv *env, jobject object, jbyteArray address) { 201 addr = env->GetByteArrayElements(address, NULL); 211 env->ReleaseByteArrayElements(address, addr, 0); 215 static jboolean disconnectA2dpNative(JNIEnv *env, jobject object, jbyteArray address) { 221 addr = env->GetByteArrayElements(address, NULL); 230 env->ReleaseByteArrayElements(address, addr, 0);
|
/external/android-clat/ |
setif.c | 29 * adds an IP address to/from an interface, returns 0 on success and <0 on failure 31 * family - address family (AF_INET, AF_INET6) 32 * address - pointer to a struct in_addr or in6_addr 34 * broadcast - broadcast address (only for AF_INET, ignored for AF_INET6) 36 int add_address(const char *ifname, int family, const void *address, int prefixlen, const void *broadcast) { 63 if(nla_put(msg, IFA_LOCAL, addr_size, address) < 0) { 69 if(nla_put(msg, IFA_ADDRESS, addr_size, address) < 0) {
|
/external/elfutils/tests/ |
dwfl-bug-fd-leak.c | 43 elfutils_open (pid_t pid, Dwarf_Addr address) 67 Dwarf *dbg = dwfl_addrdwarf (dwfl, address, &bias); 76 Elf *elf = dwfl_module_getelf (dwfl_addrmodule (dwfl, address), &bias);
|
/external/qemu/proxy/ |
proxy_int.h | 70 SockAddress address; /* for debugging */ member in struct:ProxyConnection 98 SockAddress* address, 186 * handle this address */ 189 const SockAddress* address );
|
/external/webkit/Source/JavaScriptCore/wtf/ |
PageAllocationAligned.cpp | 49 vm_address_t address = 0; local 50 vm_map(current_task(), &address, size, alignmentMask, flags, MEMORY_OBJECT_NULL, 0, FALSE, protection, PROT_READ | PROT_WRITE | PROT_EXEC, VM_INHERIT_DEFAULT); local 51 return PageAllocationAligned(reinterpret_cast<void*>(address), size);
|
/external/webkit/Tools/Scripts/ |
run-leaks | 120 # Returns a list of hash references with the keys { address, size, type, callStack, leaksOutput } 156 my ($address) = ($line =~ /Leak: ([[:xdigit:]x]+)/); 157 if (!defined($address)) { 158 reportError("Could not parse Leak address."); 174 "address" => $address,
|
/libcore/luni/src/main/java/java/net/ |
InetSocketAddress.java | 24 * This class represents a socket endpoint described by a IP address and a port 48 * no specified address. The range for valid port numbers is between 0 and 60 * {@code address}. The range for valid port numbers is between 0 and 65535 61 * inclusive. If {@code address} is {@code null} this socket is bound to the 62 * IPv4 wildcard address. 66 * @param address 67 * the specified address to which this socket is bound. 69 public InetSocketAddress(InetAddress address, int port) { 73 this.addr = (address == null) ? Inet4Address.ANY : address; [all...] |
/packages/apps/Email/src/com/android/email/activity/ |
NfcHandler.java | 32 * This class implements sharing the e-mail address of the 71 private static NdefMessage buildMailtoNdef(String address) { 72 if (TextUtils.isEmpty(address)) { 77 accountBytes = URLEncoder.encode(address, "UTF-8")
|
/dalvik/libdex/ |
DexDebugInfo.cpp | 157 u4 address = 0; local 206 localInReg[reg].startAddress = address; 220 address += readUnsignedLeb128(&stream); 236 emitLocalCbIfLive(cnxt, reg, address, 247 localInReg[reg].startAddress = address; 258 emitLocalCbIfLive (cnxt, reg, address, localInReg, localCb); 277 * and we don't want to mess with the existing start address. 280 localInReg[reg].startAddress = address; 293 address += adjopcode / DBG_LINE_RANGE; 298 done = posCb(cnxt, address, line) [all...] |
/development/tools/axl/ |
udpEater.py | 40 data, address = svrsocket.recvfrom(8192)
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
InetSocketAddressTest.java | 33 InetSocketAddress address = new InetSocketAddress("127.0.0.1", 0); local 34 assertEquals("/127.0.0.1:0", address.toString()); 35 String localhostName = address.getHostName(); 37 assertEquals(localhostName+"/127.0.0.1:0", address.toString()); 102 assertEquals("Address", init.getAddress(), desr.getAddress());
|
/external/chromium/third_party/libjingle/source/talk/base/ |
basicpacketsocketfactory.cc | 54 const SocketAddress& address, int min_port, int max_port) { 61 if (BindSocket(socket, address, min_port, max_port) < 0) { 113 socket, proxy_info.address, proxy_info.username, proxy_info.password); 116 socket, user_agent, proxy_info.address,
|
nethelpers.h | 52 const SocketAddress& address() const { return addr_; } function in class:talk_base::AsyncResolver
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/ |
Network.java | 184 public void connectToServer( InetAddress address, int port, int remoteUdpPort ) throws IOException 186 UdpConnector fast = new UdpConnector( address, remoteUdpPort ); 187 SocketConnector reliable = new SocketConnector( address, port ); 189 setPrimaryConnectors( reliable, fast, new TcpConnectorFactory(address) );
|
/external/llvm/lib/Target/X86/Disassembler/ |
X86Disassembler.h | 119 uint64_t address,
|
/external/nist-sip/java/gov/nist/javax/sip/ |
DefaultAddressResolver.java | 31 import javax.sip.address.Hop; 39 * feature. The address resolover is consulted to convert a Hop into a meaningful address. The default 44 * some address that cannot be resolved you should register an AddressResolver with the stack. 61 * @see gov.nist.core.net.AddressResolver#resolveAddress(javax.sip.address.Hop)
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
AddressParser.java | 28 import gov.nist.javax.sip.address.*; 45 public AddressParser(String address) { 46 this.lexer = new Lexer("charLexer", address); 92 public AddressImpl address( boolean inclParams ) throws ParseException { method in class:AddressParser 94 dbg_enter("address"); 120 throw createParseException("Bad address spec"); 125 dbg_leave("address"); 137 * Fix for issue #230, restructured the code such that parsing for any address appearing without '<' '>' 166 * CVS: address here. If this is your work then delete this line. 210 * CVS: address here. If this is your work then delete this line [all...] |
ToParser.java | 28 import gov.nist.javax.sip.address.*; 92 * Fix for issue #230, restructured the code such that parsing for any address appearing without '<' '>' 123 * CVS: address here. If this is your work then delete this line. 164 * CVS: address here. If this is your work then delete this line.
|
/external/nist-sip/java/javax/sip/header/ |
HeaderFactory.java | 8 import javax.sip.address.Address; 9 import javax.sip.address.URI; 41 ContactHeader createContactHeader(Address address); 79 FromHeader createFromHeader(Address address, String tag) 125 RecordRouteHeader createRecordRouteHeader(Address address); 127 ReferToHeader createReferToHeader(Address address) [all...] |
/external/nist-sip/java/javax/sip/message/ |
Request.java | 4 import javax.sip.address.URI;
|
/external/opencv/otherlibs/highgui/ |
_highgui.h | 79 CvCapture* cvCreateCameraCapture_Socket( const char *address, const char* port, int width, int height );
|
/external/oprofile/module/x86/ |
op_fixmap.c | 188 unsigned int address; local 195 address = *(unsigned short *)phys_to_virt(0x40E); 196 address <<= 4; 197 return smp_scan_config(address, 0x1000);
|
/external/qemu/elff/ |
dwarf_die.cc | 99 DIEObject* DIEObject::get_leaf_for_address(Elf_Xword address) {
101 contains_address<Elf_Xword>(address) :
102 contains_address<Elf_Word>(address);
104 /* For CU DIEs address range may be zero size, even though its child DIEs
105 * occupie some address space. So, if CU DIE's address range doesn't
106 * contain the given address, we still want to go and check the children.
112 /* This DIE contains given address (or may contain it, if this is a CU DIE).
114 * this address. */
117 DIEObject* leaf = child->get_leaf_for_address(address);
[all...] |
elff_api.h | 74 /* PC address information descriptor.
75 * This descriptor contains as much information about a PC address as it was
78 /* Name of the routine containing the address. If name of the routine
92 /* Line number in the source file for the address. If file_name field of this
96 /* If routine that contains the given address has been inlined (or it is part
100 * the given address has been inlined. The second entry contains information
102 * containing the given address has not been inlined, this field is set to
138 /* Gets PC address information.
141 * address - PC address to get information for. Address must be relative to [all...] |