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

1 2 3 4 5 6 7 891011>>

  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
AddressListParserConstants.java 17 package org.apache.james.mime4j.field.address.parser;
AddressListParserTreeConstants.java 1 /* Generated By:JJTree: Do not edit this line. /Users/jason/Projects/apache-mime4j-0.3/target/generated-sources/jjtree/org/apache/james/mime4j/field/address/parser/AddressListParserTreeConstants.java */
3 package org.apache.james.mime4j.field.address.parser;
24 "address",
Node.java 3 package org.apache.james.mime4j.field.address.parser;
Token.java 17 package org.apache.james.mime4j.field.address.parser;
  /external/kernel-headers/original/asm-x86/
pgtable_32.h 278 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) \
283 pte_update_defer((vma)->vm_mm, (address), (ptep)); \
284 flush_tlb_page(vma, address); \
301 #define ptep_clear_flush_young(vma, address, ptep) \
304 __young = ptep_test_and_clear_young((vma), (address), (ptep)); \
306 flush_tlb_page(vma, address); \
324 * Full address destruction in progress; paravirt does not
393 * control the given virtual address
395 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ReverseGeocoder.java 22 import android.location.Address;
75 private static Address sCurrentAddress; // last known address
100 Address addr1 = lookupAddress(setMinLatitude, setMinLongitude, true);
101 Address addr2 = lookupAddress(setMaxLatitude, setMaxLongitude, true);
126 Address currentAddress = lookupAddress(
181 // Compare thoroughfare (street address) next.
230 // valid address.
283 private String getLocalityAdminForAddress(final Address addr, final boolean approxLocation) {
304 public Address lookupAddress(final double latitude, final double longitude
313 Address address = null; local
    [all...]
  /external/v8/src/
serialize.cc 82 Address address(int i) { return refs_[i].address; } function in class:v8::internal::ExternalReferenceTable
97 Address address; member in struct:v8::internal::ExternalReferenceTable::ExternalReferenceEntry
104 // For a few types of references, we can get their address from their id.
110 // For other types of references, the caller will figure out the address.
111 void Add(Address address, TypeCode type, uint16_t id, const char* name);
122 Address address local
602 Address address; local
737 Address address = Allocate(space_number, space, size); local
1273 int address = address_mapper_.MappedTo(heap_object); local
1333 int address = address_mapper_.MappedTo(heap_object); local
    [all...]
spaces-inl.h 64 Address Page::AllocationTop() {
70 Address Page::AllocationWatermark() {
75 return address() + AllocationWatermarkOffset();
85 void Page::SetAllocationWatermark(Address allocation_watermark) {
107 void Page::SetCachedAllocationWatermark(Address allocation_watermark) {
112 Address Page::CachedAllocationWatermark() {
127 int Page::GetRegionNumberForAddress(Address addr) {
140 ASSERT_PAGE_ALIGNED(this->address());
151 uint32_t Page::GetRegionMaskForAddress(Address addr) {
156 uint32_t Page::GetRegionMaskForSpan(Address start, int length_in_bytes)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PServedUser.java 30 import gov.nist.javax.sip.address.AddressImpl;
45 public PServedUser(AddressImpl address)
48 this.address = address;
130 retval.append(address.encode());
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
tcpport.cc 65 Connection* TCPPort::CreateConnection(const Candidate& address,
68 if ((address.protocol() != "tcp") && (address.protocol() != "ssltcp"))
80 if ((address.protocol() == "ssltcp") && (origin == ORIGIN_THIS_PORT))
85 GetIncoming(address.address(), true)) {
87 conn = new TCPConnection(this, address, socket);
89 conn = new TCPConnection(this, address);
99 // Note: We still add the address, since otherwise the remote side won't
102 talk_base::SocketAddress address = socket_->GetLocalAddress(&allocated) local
    [all...]
  /libcore/luni/src/main/java/libcore/net/http/
HttpConnection.java 45 * Address} inner class.
51 private final Address address; field in class:HttpConnection
62 private HttpConnection(Address config, int connectTimeout) throws IOException {
63 this.address = config;
96 Address address = (proxy.type() == Proxy.Type.DIRECT) local
97 ? new Address(uri)
98 : new Address(uri, proxy, requiresTunnel);
99 return HttpConnectionPool.INSTANCE.get(address, connectTimeout)
116 Address address = new Address(uri, selectedProxy, requiresTunnel); local
    [all...]
  /external/chromium/net/disk_cache/
entry_impl.cc 294 EntryImpl::EntryImpl(BackendImpl* backend, Addr address, bool read_only)
297 entry_.LazyInit(backend->File(address), address);
408 memset(entry_store, 0, sizeof(EntryStore) * entry_.address().num_blocks());
414 node->contents = entry_.address().value();
420 Addr address(0);
421 if (!CreateBlock(entry_store->key_len + 1, &address))
424 entry_store->long_key = address.value();
425 File* key_file = GetBackingFile(address, kKeyFileIndex);
429 if (address.is_block_file()
    [all...]
block_files.cc 223 MappedFile* BlockFiles::GetFile(Addr address) {
226 DCHECK(address.is_block_file() || !address.is_initialized());
227 if (!address.is_initialized())
230 int file_index = address.FileNumber();
269 Addr address(block_type, block_count, header->this_file, index);
270 block_address->set_value(address.value());
271 Trace("CreateBlock 0x%x", address.value());
275 void BlockFiles::DeleteBlock(Addr address, bool deep) {
277 if (!address.is_initialized() || address.is_separate_file()
    [all...]
  /external/v8/tools/
grokdump.py 137 ("address", ctypes.c_uint64),
325 def IsValidAddress(self, address):
326 return self.FindLocation(address) is not None
328 def ReadU8(self, address):
329 location = self.FindLocation(address)
332 def ReadU32(self, address):
333 location = self.FindLocation(address)
336 def ReadBytes(self, address, size):
337 location = self.FindLocation(address)
340 def FindLocation(self, address)
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerX86Common.h 87 // may often be a memory location (explictly described using an Address
95 void add32(TrustedImm32 imm, Address address)
97 m_assembler.addl_im(imm.m_value, address.offset, address.base);
105 void add32(Address src, RegisterID dest)
110 void add32(RegisterID src, Address dest)
125 void and32(RegisterID src, Address dest)
130 void and32(Address src, RegisterID dest)
135 void and32(TrustedImm32 imm, Address address
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryExt.java 31 import javax.sip.address.Address;
60 * @param address --
61 * address for the header.
64 public ReferredByHeader createReferredByHeader(Address address);
91 * @param address -
92 * Address
97 public PAssertedIdentityHeader createPAssertedIdentityHeader(Address address)
    [all...]
  /external/webkit/Source/WebKit2/Platform/mac/
SharedMemoryMac.cpp 82 static inline void* toPointer(mach_vm_address_t address)
84 return reinterpret_cast<void*>(static_cast<uintptr_t>(address));
96 mach_vm_address_t address; local
97 kern_return_t kr = mach_vm_allocate(mach_task_self(), &address, round_page(size), VM_FLAGS_ANYWHERE);
104 kr = mach_make_memory_entry_64(mach_task_self(), &memoryObjectSize, address, VM_PROT_DEFAULT, &port, MACH_PORT_NULL);
107 mach_vm_deallocate(mach_task_self(), address, round_page(size)); local
115 sharedMemory->m_data = toPointer(address);
172 mach_vm_address_t address = toVMAddress(m_data); local
184 kern_return_t kr = mach_make_memory_entry_64(mach_task_self(), &size, address, machProtection(protection), &port, MACH_PORT_NULL);
  /libcore/luni/src/main/java/java/net/
Inet6Address.java 29 * An IPv6 address. See {@link InetAddress}.
55 * Constructs an {@code InetAddress} representing the {@code address} and
58 * @param address
59 * the network address.
61 * the name associated with the address.
72 * Constructs an IPv6 address according to the given {@code host}, {@code
76 * the host name associated with the address.
78 * the network address.
81 * @return the Inet6Address instance representing the IP address.
83 * if the address is null or has an invalid length
118 Inet6Address address = Inet6Address.getByAddress(host, addr, 0); local
    [all...]
  /bionic/libc/kernel/arch-sh/asm/
pgtable_32.h 132 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
133 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
134 #define pgd_offset_k(address) pgd_offset(&init_mm, address)
135 #define pte_index(address) ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
136 #define pte_offset_kernel(dir, address) ((pte_t *) pmd_page_vaddr(*(dir)) + pte_index(address))
    [all...]
  /external/bluetooth/bluez/serial/
proxy.c 82 bdaddr_t src; /* Local address */
83 bdaddr_t dst; /* Remote address */
86 char *address; /* TTY or Unix socket name */ member in struct:serial_proxy
129 g_free(prx->address);
270 static inline int unix_socket_connect(const char *address)
278 if (strncmp("x00", address, 3) == 0) {
281 * must be removed from the original address.
283 strncpy(addr.sun_path + 1, address + 3,
286 /* Filesystem address */
287 strncpy(addr.sun_path, address, sizeof(addr.sun_path) - 1)
447 char address[18]; local
929 const char *address = addr; local
1019 const char *pattern, *address; local
1178 char *group_str = group_list[i], *uuid_str, *address; local
    [all...]
  /external/qemu/memcheck/
memcheck_proc_management.h 221 * matching given address range.
229 target_ulong address,
232 return allocmap_find(&proc->alloc_map, address, block_size);
236 * matching given address.
243 procdesc_find_malloc(ProcDesc* proc, target_ulong address)
245 return procdesc_find_malloc_for_range(proc, address, 1);
249 * the given process, matching given address.
256 procdesc_pull_malloc(ProcDesc* proc, target_ulong address, MallocDescEx* pulled)
258 return allocmap_pull(&proc->alloc_map, address, pulled);
273 /* Finds mmapping entry for the given address in the given process
    [all...]
  /external/v8/src/mips/
ic-mips.cc 118 bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) {
124 bool LoadIC::PatchInlinedContextualLoad(Address address,
133 bool StoreIC::PatchInlinedStore(Address address, Object* map, int offset) {
139 bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) {
145 bool KeyedStoreIC::PatchInlinedStore(Address address, Object* map)
    [all...]
  /external/quake/quake/src/QW/client/
net_udp.c 157 // Returns true if we can't bind the address locally--in other words,
177 // It is not a local address
238 struct sockaddr_in address; local
246 address.sin_family = AF_INET;
249 address.sin_addr.s_addr = inet_addr(com_argv[i+1]);
250 Con_Printf("Binding to IP Interface Address of %s\n",
251 inet_ntoa(address.sin_addr));
253 address.sin_addr.s_addr = INADDR_ANY;
255 address.sin_port = 0;
257 address.sin_port = htons((short)port)
267 struct sockaddr_in address; local
    [all...]
net_wins.c 133 // Returns true if we can't bind the address locally--in other words,
153 // It is not a local address
234 struct sockaddr_in address; local
244 address.sin_family = AF_INET;
247 address.sin_addr.s_addr = inet_addr(com_argv[i+1]);
248 Con_Printf("Binding to IP Interface Address of %s\n",
249 inet_ntoa(address.sin_addr));
251 address.sin_addr.s_addr = INADDR_ANY;
254 address.sin_port = 0;
256 address.sin_port = htons((short)port)
266 struct sockaddr_in address; local
    [all...]
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoderICU.java 69 long address = 0; local
71 address = NativeConverter.openConverter(icuCanonicalName);
72 float averageBytesPerChar = NativeConverter.getAveBytesPerChar(address);
73 float maxBytesPerChar = NativeConverter.getMaxBytesPerChar(address);
74 byte[] replacement = makeReplacement(icuCanonicalName, address);
75 CharsetEncoderICU result = new CharsetEncoderICU(cs, averageBytesPerChar, maxBytesPerChar, replacement, address);
76 address = 0; // CharsetEncoderICU has taken ownership; its finalizer will do the free.
79 if (address != 0) {
80 NativeConverter.closeConverter(address);
85 private static byte[] makeReplacement(String icuCanonicalName, long address) {
    [all...]

Completed in 351 milliseconds

1 2 3 4 5 6 7 891011>>