/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/WebKitTools/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,
|
/frameworks/base/core/java/android/net/ |
WebAddress.java | 27 * Web Address Parser 31 * browser address widget. 65 public WebAddress(String address) throws ParseException { 66 if (address == null) { 70 // android.util.Log.d(LOGTAG, "WebAddress: " + address); 78 Matcher m = sAddressPattern.matcher(address); 109 throw new ParseException("Bad address");
|
MailTo.java | 92 // Address can be specified in both the headers and just after the 94 String address = email.getPath(); local 95 if (address != null) { 98 address += ", " + addr; 100 m.mHeaders.put(TO, address); 107 * Retrieve the To address line from the parsed mailto URL. This could be 108 * several email address that are comma-space delimited. 117 * Retrieve the CC address line from the parsed mailto URL. This could be 118 * several email address that are comma-space delimited.
|
/libcore/luni/src/main/java/java/net/ |
InetSocketAddress.java | 24 * This class represents a socket endpoint described by a IP address and a port 39 * no specified address. The range for valid port numbers is between 0 and 51 * {@code address}. The range for valid port numbers is between 0 and 65535 52 * inclusive. If {@code address} is {@code null} this socket is bound to the 53 * IPv4 wildcard address. 57 * @param address 58 * the specified address to which this socket is bound. 60 public InetSocketAddress(InetAddress address, int port) { 64 if (address == null) { 67 addr = address; [all...] |
/packages/apps/Email/src/org/apache/james/mime4j/field/address/ |
AddressList.java | 20 package org.apache.james.mime4j.field.address;
22 import org.apache.james.mime4j.field.address.parser.AddressListParser;
23 import org.apache.james.mime4j.field.address.parser.ParseException;
29 * An immutable, random-access list of Address objects.
38 * @param addresses An ArrayList that contains only Address objects.
56 * Gets an address.
58 public Address get(int index) {
61 return (Address) addresses.get(index);
66 * in this address list. Use this if you don't care
84 Address addr = get(i); [all...] |
MailboxList.java | 20 package org.apache.james.mime4j.field.address;
52 * Gets an address.
|
/development/tools/axl/ |
udpEater.py | 40 data, address = svrsocket.recvfrom(8192)
|
/external/bluetooth/bluez/src/ |
manager.h | 35 struct btd_adapter *manager_find_adapter_by_address(const char *address);
|
textfile.h | 30 const char *address, const char *name);
|
/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/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...] |
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/ |
alloca.c | 54 provide an "address metric" ADDRESS_FUNCTION macro. */ 110 static char *addr = NULL; /* Address of first `dummy', once known. */ 111 auto char dummy; /* To get stack address. */ 202 /* Address of header. */ 234 the high-address end of a stack segment. (The stack 249 long sstcpt:32; /* Pointer to task common address block. */ 295 long current_address; /* Current stack segment address. */ 299 long initial_address; /* Address of initial segment. */ 309 long this_address; /* Address of this block. */ 314 long link; /* Address of trailer block of previou [all...] |
/frameworks/base/core/java/android/text/util/ |
Rfc822Token.java | 20 * This class stores an RFC 822-like name, address, and comment, 27 * Creates a new Rfc822Token with the specified name, address, 30 public Rfc822Token(String name, String address, String comment) { 32 mAddress = address; 44 * Returns the address part. 65 * Changes the address to the specified address. 67 public void setAddress(String address) { 68 mAddress = address; 80 * the comment (in parentheses), and the address (in angle brackets) [all...] |
/libcore/luni/src/main/java/com/ibm/icu4jni/charset/ |
CharsetDecoderICU.java | 65 long address = 0; local 67 address = NativeConverter.openConverter(icuCanonicalName); 68 float averageCharsPerByte = NativeConverter.getAveCharsPerByte(address); 69 CharsetDecoderICU result = new CharsetDecoderICU(cs, averageCharsPerByte, address); 70 address = 0; // CharsetDecoderICU has taken ownership; its finalizer will do the free. 74 if (address != 0) { 75 NativeConverter.closeConverter(address); 80 private CharsetDecoderICU(Charset cs, float averageCharsPerByte, long address) { 82 this.converterHandle = address;
|
/system/extras/tests/bionic/libc/common/ |
test_udp.c | 31 printf(" -a<inet> use specific IP address\n"); 41 int address = htonl(INADDR_ANY); local 68 address = si_other.sin_addr.s_addr; 83 si_me.sin_addr.s_addr = address; 106 si_other.sin_addr.s_addr = address;
|
/external/kernel-headers/original/linux/ |
mm.h | 59 struct mm_struct * vm_mm; /* The address space we belong to. */ 60 unsigned long vm_start; /* Our start address within vm_mm. */ 61 unsigned long vm_end; /* The first byte after our end address 64 /* linked list of VM areas per task, sorted by address */ 73 * For areas with an address space and backing store, 199 struct page * (*nopage)(struct vm_area_struct * area, unsigned long address, int *type); 200 int (*populate)(struct vm_area_struct * area, unsigned long address, unsigned long len, pgprot_t prot, unsigned long pgoff, int nonblock); 257 * On machines where all RAM is mapped into kernel address space, 258 * we can simply calculate the virtual address. On machines with 260 * dynamically, so we need a place to store that address [all...] |
/external/skia/src/images/ |
SkImageDecoder_libico.cpp | 235 //change the config, and use different address getter, and place index vs color, and add the color table 259 //U32* address = bm->getAddr32(x, y); 289 SkPMColor* address = bm->getAddr32(x,y); local 304 *address = (alphaBit-1)&(colors[colorBit]); 307 address = address + 1; 317 SkPMColor* address = bm->getAddr32(x, y); local 321 *address = (alphaBit-1)&(colors[pixel]); 325 address = address + 1 337 SkPMColor* address = bm->getAddr32(x, y); local 347 SkPMColor* address = bm->getAddr32(x, y); local 361 SkPMColor* address = bm->getAddr32(x, y); local [all...] |
/libcore/luni/src/main/native/ |
org_apache_harmony_luni_platform_OSMemory.cpp | 38 template <typename T> static T cast(jint address) { 39 return reinterpret_cast<T>(static_cast<uintptr_t>(address)); 67 static void OSMemory_free(JNIEnv* env, jclass, jint address) { 68 jlong* p = reinterpret_cast<jlong*>(static_cast<uintptr_t>(address)); 292 static void OSMemory_unmap(JNIEnv*, jclass, jint address, jlong size) { 293 munmap(cast<void*>(address), size); 296 static void OSMemory_load(JNIEnv*, jclass, jint address, jlong size) { 297 if (mlock(cast<void*>(address), size) != -1) { 298 munlock(cast<void*>(address), size); 302 static jboolean OSMemory_isLoaded(JNIEnv*, jclass, jint address, jlong size) [all...] |
/external/ppp/pppd/ |
cbcp.c | 311 char address[256]; local 314 address[0] = 0; 338 memcpy(address, pckt, opt_len - 4); 339 address[opt_len - 4] = 0; 340 if (address[0]) 341 dbglog("address: %s", address); 453 char address[256]; local 465 memcpy(address, pckt, opt_len - 4); 466 address[opt_len - 4] = 0 [all...] |