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

<<11121314151617181920>>

  /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...]
  /external/valgrind/main/exp-ptrcheck/tests/
arith.stderr.exp 6 Both args derived from address 0x........ of 40-byte block alloc'd
16 First arg derived from address 0x........ of 40-byte block alloc'd
21 Second arg derived from address 0x........ of 40-byte block alloc'd
31 Both args derived from address 0x........ of 40-byte block alloc'd
42 Second arg derived from address 0x........ of 40-byte block alloc'd
52 Both args derived from address 0x........ of 40-byte block alloc'd
63 Second arg derived from address 0x........ of 40-byte block alloc'd
73 Both args derived from address 0x........ of 40-byte block alloc'd
  /external/webkit/Tools/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/net/
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.
  /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...]
  /frameworks/base/services/jni/
com_android_server_connectivity_Vpn.cpp 130 char address[65]; local
135 while (sscanf(addresses, " %64[^/]/%d %n", address, &prefix, &chars) == 2) {
138 if (strchr(address, ':')) {
139 // Add an IPv6 address.
140 if (inet_pton(AF_INET6, address, &ifr6.ifr6_addr) != 1 ||
152 // Add an IPv4 address.
153 if (inet_pton(AF_INET, address, as_in_addr(&ifr4.ifr_addr)) != 1 ||
174 LOGD("Address added on %s: %s/%d", name, address, prefix);
179 LOGE("Invalid address: %s/%d", address, prefix)
209 char address[65]; local
    [all...]
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoderICU.java 54 long address = 0; local
56 address = NativeConverter.openConverter(icuCanonicalName);
57 float averageCharsPerByte = NativeConverter.getAveCharsPerByte(address);
58 CharsetDecoderICU result = new CharsetDecoderICU(cs, averageCharsPerByte, address);
59 address = 0; // CharsetDecoderICU has taken ownership; its finalizer will do the free.
63 if (address != 0) {
64 NativeConverter.closeConverter(address);
69 private CharsetDecoderICU(Charset cs, float averageCharsPerByte, long address) {
71 this.converterHandle = address;
  /ndk/sources/host-tools/make-3.81/
alloca.c 61 provide an "address metric" ADDRESS_FUNCTION macro. */
119 static char *addr = NULL; /* Address of first `dummy', once known. */
120 auto char dummy; /* To get stack address. */
218 /* Address of header. */
253 the high-address end of a stack segment. (The stack
268 long sstcpt:32; /* Pointer to task common address block. */
314 long current_address; /* Current stack segment address. */
318 long initial_address; /* Address of initial segment. */
328 long this_address; /* Address of this block. */
333 long link; /* Address of trailer block of previou
    [all...]
  /ndk/sources/host-tools/ndk-stack/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 t
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
alloca.c 68 provide an "address metric" ADDRESS_FUNCTION macro. */
101 static char *addr = NULL; /* Address of first `dummy', once known. */
102 auto char dummy; /* To get stack address. */
199 /* Address of header. */
241 the high-address end of a stack segment. (The stack
256 long sstcpt:32; /* Pointer to task common address block. */
302 long current_address; /* Current stack segment address. */
306 long initial_address; /* Address of initial segment. */
316 long this_address; /* Address of this block. */
321 long link; /* Address of trailer block of previou
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForEmail.java 27 * Handler for email address data rows.
44 String address = mDbHelper.insertNameLookupForEmail(rawContactId, dataId, email); local
45 if (address != null) {
62 String address = values.getAsString(Email.DATA); local
64 mDbHelper.insertNameLookupForEmail(rawContactId, dataId, address);
98 return values.containsKey(Email.ADDRESS);
103 builder.appendContentFromColumn(Email.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/dbus/dbus/
dbus-server.c 32 #include "dbus-address.h"
56 /* this is a little fragile since it assumes the address doesn't
60 copy_address_with_guid_appended (const DBusString *address,
69 if (!_dbus_string_copy (address, 0, &with_guid,
93 * @param address the server's address
99 const DBusString *address)
104 server->address = NULL;
116 server->address = copy_address_with_guid_appended (address,
1170 char *address; local
    [all...]
  /external/v8/src/
ic.h 73 // Looks up the address of the named utility.
74 static Address AddressFromUtilityId(UtilityId id);
91 Code* target() { return GetTargetAtAddress(address()); }
92 inline Address address();
98 static void Clear(Address address);
130 Address fp() const { return fp_; }
131 Address pc() const { return *pc_address_; }
135 // Computes the address in the original code when the code running i
183 Address address() const { return address_; } function in class:v8::internal::IC_Utility
    [all...]
  /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...]

Completed in 6621 milliseconds

<<11121314151617181920>>