/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
OpenSSLSocketFactoryImpl.java | 78 public Socket createSocket(InetAddress address, 83 return new OpenSSLSocketImpl(address,
|
/libcore/luni/src/main/native/ |
zip.h | 95 static NativeZipStream* toNativeZipStream(jlong address) { 96 return reinterpret_cast<NativeZipStream*>(static_cast<uintptr_t>(address));
|
/libcore/luni/src/test/java/libcore/java/nio/ |
SelectorTest.java | 43 InetSocketAddress address = new InetSocketAddress(PORT); local 44 ss.bind(address);
|
/packages/apps/Calendar/src/com/android/calendar/ |
EmailAddressAdapter.java | 60 String address = cursor.getString(DATA_INDEX); local 62 return new Rfc822Token(name, address, null).toString();
|
/packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/ |
SimpleNode.java | 3 package org.apache.james.mime4j.field.address.parser; 5 public class SimpleNode extends org.apache.james.mime4j.field.address.parser.BaseNode implements Node {
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/ |
malloc_allocator.h | 77 address(reference __x) const { return &__x; } function in class:malloc_allocator 80 address(const_reference __x) const { return &__x; } function in class:malloc_allocator
|
/external/qemu/memcheck/ |
memcheck_malloc_map.c | 47 /* Gets address of the beginning of an allocation block for the given entry in 52 * Address of the beginning of an allocation block for the given entry in the 61 /* Gets address of the end of an allocation block for the given entry in 66 * Address of the end of an allocation block for the given entry in the map. 136 * address range. 139 * address - Virtual address in the guest's user space to find matching 142 * Address of an allocation descriptors map entry that matches the given 143 * address, or NULL if no such entry has been found. 147 target_ulong address, [all...] |
/external/quake/quake/src/QW/qwfwd/ |
qwfwd.c | 124 /* Map host name to IP address, allowing for dotted decimal */
174 struct sockaddr_in address;
local 188 address.sin_family = AF_INET;
189 address.sin_addr.s_addr = INADDR_ANY;
190 address.sin_port = htons((unsigned short)atoi(argv[1]));
191 if (bind (s, (void *)&address, sizeof(address)) == -1)
|
/external/quake/quake/src/WinQuake/ |
net_mp.cpp | 72 // determine my name & address
82 // see if it's a text IP address (well, close enough)
152 struct sockaddr_in address;
local 161 address.sin_family = AF_INET;
162 address.sin_addr.s_addr = INADDR_ANY;
163 address.sin_port = htons(port);
164 if( bind (newsocket, (void *)&address, sizeof(address)) == -1)
189 this lets you type only as much of the net address as required, using
|
net_wipx.cpp | 77 // determine my name & address
83 // see if it's a text IP address (well, close enough)
162 struct sockaddr_ipx address;
local 180 address.sa_family = AF_IPX;
181 memset(address.sa_netnum, 0, 4);
182 memset(address.sa_nodenum, 0, 6);;
183 address.sa_socket = htons((unsigned short)port);
184 if( bind (newsocket, (void *)&address, sizeof(address)) == 0)
|
/external/v8/tools/ |
codemap.js | 68 * The number of alignment bits in a page address. 83 * @param {number} start The starting address. 93 * code entry with the specified starting address. 95 * @param {number} from The starting address of the entry being moved. 96 * @param {number} to The destination address. 106 * code entry with the specified starting address. 108 * @param {number} start The starting address of the entry being deleted. 118 * @param {number} start The starting address. 131 * @param {number} start The starting address. 169 * Finds a code entry that contains the specified address. Both static an [all...] |
/packages/apps/Email/src/com/android/email/mail/transport/ |
SmtpSender.java | 20 import com.android.email.mail.Address; 123 // Try to get local address in the X.X.X.X format. 199 Address from = Address.unpackFirst(message.mFrom); 200 Address[] to = Address.unpack(message.mTo); 201 Address[] cc = Address.unpack(message.mCc); 202 Address[] bcc = Address.unpack(message.mBcc) [all...] |
/packages/apps/Mms/tests/src/com/android/mms/ |
RecyclerTest.java | 141 private Uri storeMessage(Context context, String address, String message) { 145 values.put(Inbox.ADDRESS, address); 162 Contact cacheContact = Contact.get(address,true); 164 address = cacheContact.getNumber(); 167 if (((threadId == null) || (threadId == 0)) && (address != null)) { 169 context, address));
|
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/include/ |
bfdlink.h | 510 there is none. ABFD, SECTION and ADDRESS identify the location 515 bfd *abfd, asection *section, bfd_vma address); 518 ABFD, SECTION and ADDRESS identify the location from which the 523 asection *section, bfd_vma address, bfd_boolean fatal); 528 any addend that is used. ABFD, SECTION and ADDRESS identify the 535 bfd *abfd, asection *section, bfd_vma address); 538 ABFD, SECTION and ADDRESS identify the location at which the 544 bfd *abfd, asection *section, bfd_vma address); 547 the symbol. ABFD, SECTION and ADDRESS identify the location of 553 bfd *abfd, asection *section, bfd_vma address); [all...] |
/external/chromium/net/disk_cache/ |
backend_impl.cc | 672 FilePath BackendImpl::GetFileName(Addr address) const { 673 if (!address.is_separate_file() || !address.is_initialized()) { 678 std::string tmp = StringPrintf("f_%06x", address.FileNumber()); 682 MappedFile* BackendImpl::File(Addr address) { 685 return block_files_.GetFile(address); 688 bool BackendImpl::CreateExternalFile(Addr* address) { 716 address->set_value(file_address.value()); 740 Addr address(rankings->Data()->contents); 743 if (NewEntry(address, &cache_entry, &dirty) [all...] |
/external/v8/src/ |
platform-freebsd.cc | 125 static void UpdateAllocatedSpaceLimits(void* address, int size) { 126 lowest_ever_allocated = Min(lowest_ever_allocated, address); 129 reinterpret_cast<void*>(reinterpret_cast<char*>(address) + size)); 133 bool OS::IsOutsideAllocatedSpace(void* address) { 134 return address < lowest_ever_allocated || address >= highest_ever_allocated; 170 void OS::Protect(void* address, size_t size) { 175 void OS::Unprotect(void* address, size_t size, bool is_executable) { 301 frames[i].address = addresses[i]; 333 if (0 == munmap(address(), size())) address_ = MAP_FAILED [all...] |
/frameworks/base/core/java/android/server/ |
BluetoothA2dpService.java | 117 String address = sinks[0].getAddress(); 122 String path = mBluetoothService.getObjectPathFromAddress(address); 236 String address = mBluetoothService.getAddressFromObjectPath(path); local 237 BluetoothDevice device = mAdapter.getRemoteDevice(address); 238 ParcelUuid[] remoteUuids = mBluetoothService.getRemoteUuids(address); 463 String address = device.getAddress(); local 464 if (!BluetoothAdapter.checkBluetoothAddress(address)) { 467 Integer data = mBluetoothService.getAuthorizationAgentRequestData(address); 473 return mBluetoothService.setAuthorizationNative(address, value, data.intValue()); 482 String address = mBluetoothService.getAddressFromObjectPath(path) local 584 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local [all...] |
/packages/inputmethods/LatinIME/native/src/ |
dictionary.cpp | 127 int address = 0; 131 address += (mDict[*pos] & (ADDRESS_MASK >> 16)) << 16; 132 address += (mDict[*pos + 1] & 0xFF) << 8; 133 address += (mDict[*pos + 2] & 0xFF); 136 return address; 308 // -- after address or flag 367 int address = 0; 369 address += (mDict[*pos] & 0x3F) << 16; 370 address += (mDict[*pos + 1] & 0xFF) << 8; 371 address += (mDict[*pos + 2] & 0xFF) [all...] |
/external/qemu/hw/ |
pci.c | 435 uint32_t address, int len) 442 if (address <= 0xfc) { 443 val = le32_to_cpu(*(uint32_t *)(d->config + address)); 448 if (address <= 0xfe) { 449 val = le16_to_cpu(*(uint16_t *)(d->config + address)); 454 val = d->config[address]; 461 uint32_t address, uint32_t val, int len) 466 if (len == 4 && ((address >= 0x10 && address < 0x10 + 4 * 6) || 467 (address >= 0x30 && address < 0x34))) [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
DebugInfoEncoder.java | 72 /** current encoding state: bytecode address */ 73 private int address = 0; field in class:DebugInfoEncoder 203 annotate(1, String.format("%04x: prologue end",address)); 216 * Emit any information for the current address. 224 * Figure out what the next important address is. 240 // No next important address == done. 259 emitAdvancePc(next - address); 270 * {@link #address} starting at the given index into {@code 272 * address. 285 && (locals.get(curLocalIdx).getAddress() == address)) { [all...] |
/external/v8/test/cctest/ |
test-serialize.cc | 85 static Address AddressOf(T id) { 86 return ExternalReference(id).address(); 121 encoder.Encode(keyed_load_function_prototype.address())); 125 encoder.Encode(the_hole_value_location.address())); 129 encoder.Encode(stack_limit_address.address())); 133 encoder.Encode(real_stack_limit_address.address())); 135 encoder.Encode(ExternalReference::debug_break().address())); 137 encoder.Encode(ExternalReference::new_space_start().address())); 139 encoder.Encode(ExternalReference::roots_address().address())); 157 CHECK_EQ(keyed_load_function.address(), [all...] |
test-mark-compact.cc | 51 Address low = reinterpret_cast<Address>(mem); 52 Address high = low + mem_size; 56 Address address = NULL; local 58 s.Push(HeapObject::FromAddress(address)); 59 address += kPointerSize; 63 Address value = s.Pop()->address(); 64 address -= kPointerSize [all...] |
/external/grub/netboot/ |
pci.c | 88 unsigned long address; member in struct:__anon3616 94 unsigned long address; member in struct:__anon3617 101 unsigned long address; /* %ebx */ local 114 "=b" (address), 124 return address + entry; 307 pci_indirect.address = pcibios_entry; 354 * directory by scanning the permissible address range from 390 bios32_indirect.address = bios32_entry; 445 /* Strip the I/O address out of the returned value */ 447 /* Get the memory base address */ [all...] |
/external/elfutils/libdw/ |
dwarf_getsrclines.c | 47 new_line->line.addr = address; \ 296 Dwarf_Word address = 0; local 325 + (line_range * address advance) + opcode_base 335 address += address_increment; 368 address = 0; 379 /* The value is an address. The size is defined as 381 address size field from the CU header. */ 383 address = read_4ubyte_unaligned_inc (dbg, linep); 385 address = read_8ubyte_unaligned_inc (dbg, linep); 465 address. * [all...] |
/libcore/luni/src/main/java/java/net/ |
InetAddress.java | 39 * An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and 47 * <h4>IPv4 numeric address formats</h4> 57 * address. 63 * <i>returns</i> a textual numeric address will use four-dot decimal form. 65 * <h4>IPv6 numeric address formats</h4> 71 * hexadecimal values of the eight 16-bit pieces of the address. 85 * The "::" can only appear once in an address. The "::" can also be 86 * used to compress the leading and/or trailing zeros in an address 347 int address = 0; local 386 int address = 0; local [all...] |