/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/ |
new_allocator.h | 76 address(reference __x) const { return &__x; } function in class:new_allocator 79 address(const_reference __x) const { return &__x; } function in class:new_allocator
|
/external/chromium/chrome/browser/ui/webui/options/ |
autofill_options_handler.cc | 323 DictionaryValue address; local 324 address.SetString("guid", profile->guid()); 327 address.Set("fullName", list.release()); 328 address.SetString("companyName", profile->GetInfo(COMPANY_NAME)); 329 address.SetString("addrLine1", profile->GetInfo(ADDRESS_HOME_LINE1)); 330 address.SetString("addrLine2", profile->GetInfo(ADDRESS_HOME_LINE2)); 331 address.SetString("city", profile->GetInfo(ADDRESS_HOME_CITY)); 332 address.SetString("state", profile->GetInfo(ADDRESS_HOME_STATE)); 333 address.SetString("postalCode", profile->GetInfo(ADDRESS_HOME_ZIP)); 334 address.SetString("country", profile->CountryCode()) [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
candidate.h | 43 const talk_base::SocketAddress& address, float preference, 47 : name_(name), protocol_(protocol), address_(address), 57 const talk_base::SocketAddress & address() const { return address_; } function in class:cricket::Candidate 58 void set_address(const talk_base::SocketAddress & address) { 59 address_ = address;
|
/external/llvm/bindings/python/llvm/ |
disassembler.py | 68 The pc argument specifies the address that the first byte is at. 93 long address of instruction. 103 address = pc 105 while address < end_address: 108 c_uint64(len(source) - offset), c_uint64(address), 114 yield (address, result, out_str.value) 116 address += result
|
/external/v8/src/ |
platform-cygwin.cc | 131 static void UpdateAllocatedSpaceLimits(void* address, int size) { 135 lowest_ever_allocated = Min(lowest_ever_allocated, address); 138 reinterpret_cast<void*>(reinterpret_cast<char*>(address) + size)); 142 bool OS::IsOutsideAllocatedSpace(void* address) { 143 return address < lowest_ever_allocated || address >= highest_ever_allocated; 168 void OS::Free(void* address, const size_t size) { 170 int result = munmap(address, size); 176 void OS::ProtectCode(void* address, const size_t size) { 178 VirtualProtect(address, size, PAGE_EXECUTE_READ, &old_protect) [all...] |
platform.h | 181 // Returns the address of allocated memory, or NULL if failed. 185 static void Free(void* address, const size_t size); 192 static void ProtectCode(void* address, const size_t size); 195 static void Guard(void* address, const size_t size); 197 // Generate a random address to be used for hinting mmap(). 224 void* address; member in struct:v8::internal::OS::StackFrame 337 // by address(). 350 // Returns the start address of the reserved memory. 351 // If the memory was reserved with an alignment, this address is not 354 void* address() { function in class:v8::internal::VirtualMemory 378 void* address = address_; local [all...] |
/external/valgrind/main/coregrind/ |
pub_core_threadstate.h | 194 Addr address; member in struct:__anon16947::__anon16948::__anon16954 203 Addr address; member in struct:__anon16947::__anon16948::__anon16956 234 ULong address; member in struct:__anon16947::__anon16948::__anon16963 238 ULong address; member in struct:__anon16947::__anon16948::__anon16964 253 Addr address; member in struct:__anon16947::__anon16948::__anon16967 333 /* Address of the highest legitimate word in this stack. This is
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/ |
syn_filt_neon.s | 38 MOV r4, r3 @ copy mem[] address 39 MOV r5, r13 @ copy yy = y_buf address 60 ADD r4, r13, #32 @ yy[i] address 68 ADD r10, r4, r8, LSL #1 @ y[i], yy[i] address 95 ADD r5, r13, #160 @ yy[64] address
|
/frameworks/ex/chips/src/com/android/ex/chips/ |
RecipientEntry.java | 53 /** Destination for this contact entry. Would be an email address or a phone number. */ 107 * Construct a RecipientEntry from just an address that has been entered. 108 * This address has not been resolved to a contact and therefore does not 111 public static RecipientEntry constructFakeEntry(final String address, final boolean isValid) { 112 final Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(address); 113 final String tokenizedAddress = tokens.length > 0 ? tokens[0].getAddress() : address; 133 * i.e. the display name came from an email address or a phone number, we don't use it 142 * Construct a RecipientEntry from just an address that has been entered 143 * with both an associated display name. This address has not been resolved 146 public static RecipientEntry constructGeneratedEntry(String display, String address, [all...] |
/libcore/luni/src/main/java/java/net/ |
MulticastSocket.java | 32 * Stores the address supplied to setInterface so we can return it from getInterface. The 59 * Constructs a {@code MulticastSocket} bound to the address and port specified by 72 * Returns an address of the outgoing network interface used by this socket. To avoid 84 // the address was not set at the IPv4 level so check the IPv6 163 * if the specified address is not a multicast address. 180 * if the specified group address is not a multicast address. 196 * if the specified group address is not a multicast address [all...] |
/libcore/luni/src/main/java/libcore/io/ |
ForwardingOs.java | 40 public void bind(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException { os.bind(fd, address, port); } 44 public void connect(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException { os.connect(fd, address, port); } 66 public String getnameinfo(InetAddress address, int flags) throws GaiException { return os.getnameinfo(address, flags); } 81 public InetAddress inet_pton(int family, String address) { return os.inet_pton(family, address); } 90 public void mincore(long address, long byteCount, byte[] vector) throws ErrnoException { os.mincore(address, byteCount, vector); [all...] |
Os.java | 31 public void bind(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException; 35 public void connect(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException; 58 public String getnameinfo(InetAddress address, int flags) throws GaiException; 73 public InetAddress inet_pton(int family, String address); 82 public void mincore(long address, long byteCount, byte[] vector) throws ErrnoException; 84 public void mlock(long address, long byteCount) throws ErrnoException; 85 public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException; 86 public void msync(long address, long byteCount, int flags) throws ErrnoException; 87 public void munlock(long address, long byteCount) throws ErrnoException; 88 public void munmap(long address, long byteCount) throws ErrnoException [all...] |
/frameworks/base/core/java/android/bluetooth/ |
BluetoothAdapter.java | 48 * instantiate a {@link BluetoothDevice} using a known MAC address, and create 407 * address. 410 * available to validate a Bluetooth address. 412 * hardware address, even if this adapter has never seen that device. 414 * @param address valid Bluetooth MAC address 415 * @throws IllegalArgumentException if address is invalid 417 public BluetoothDevice getRemoteDevice(String address) { 418 return new BluetoothDevice(address); 423 * address [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_symbolizer.cc | 41 bool LoadedModule::containsAddress(uptr address) const { 43 if (ranges_[i].beg <= address && address < ranges_[i].end) 268 // to address info to mark that names are unknown. 295 info->address = addr; 357 LoadedModule *FindModuleForAddress(uptr address) { 368 if (modules_[i].containsAddress(address)) { 395 uptr SymbolizeCode(uptr address, AddressInfo *frames, uptr max_frames) { 396 return symbolizer.SymbolizeCode(address, frames, max_frames); 399 bool SymbolizeData(uptr address, DataInfo *info) [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/ |
SelectorKernel.java | 62 private InetSocketAddress address; field in class:SelectorKernel 77 public SelectorKernel( InetSocketAddress address ) 79 this.address = address; 98 throw new KernelException( "Error hosting:" + address, e ); 111 throw new KernelException( "Error closing host connection:" + address, e ); 237 setName( "Selector@" + address ); 250 // Bind the server socket to the specified address and port 251 serverChannel.socket().bind(address); 257 log.log( Level.INFO, "Hosting TCP connection:{0}.", address ); [all...] |
/external/bluetooth/bluedroid/btif/src/ |
btif_core.c | 381 if (memcmp(local_addr->address, null_bdaddr, BD_ADDR_LEN) != 0) 385 local_addr->address[0], local_addr->address[1], local_addr->address[2], 386 local_addr->address[3], local_addr->address[4], local_addr->address[5]); 396 if(btif_config_get_str("Local", "Adapter", "Address", val, &val_size)) 411 local_addr->address[0], local_addr->address[1], local_addr->address[2] [all...] |
btif_gatt_client.c | 161 memcpy(p_dev_cb->remote_dev[i].bd_addr.address, p_bda, BD_ADDR_LEN); 172 memcpy(p_dev_cb->remote_dev[i].bd_addr.address, p_bda, BD_ADDR_LEN); 188 !memcmp(p_dev_cb->remote_dev[i].bd_addr.address, p_bda, BD_ADDR_LEN)) 218 btif_dm_update_ble_remote_properties( p_btif_cb->bd_addr.address, bdname.name, 320 bdcpy(data.bda.address, p_data->notify.bda); 343 bdcpy(bda.address, p_data->open.remote_bda); 356 bdcpy(bda.address, p_data->close.remote_bda); 376 if (!btif_gattc_find_bdaddr(p_btif_cb->bd_addr.address)) 378 btif_gattc_add_remote_bdaddr(p_btif_cb->bd_addr.address, p_btif_cb->addr_type); 416 bdcpy(btif_cb.bd_addr.address, p_data->inq_res.bd_addr) [all...] |
/external/freetype/src/base/ |
ftdbgmem.c | 93 FT_Byte* address; member in struct:FT_MemNodeRec_ 285 hash = FT_MEM_VAL( node->address ) % new_size; 371 "leaked memory block at address %p, size %8ld in (%s:%ld)\n", 372 node->address, node->size, 379 ft_mem_table_free( table, node->address ); 382 node->address = NULL; 431 FT_Byte* address ) 437 hash = FT_MEM_VAL( address ); 446 if ( node->address == address ) [all...] |
/packages/apps/Bluetooth/jni/ |
com_android_bluetooth_btservice_AdapterService.cpp | 260 ALOGE("Address is NULL (unable to allocate) in %s", __FUNCTION__); 266 ALOGE("Address is NULL in %s", __FUNCTION__); 270 ALOGV("%s: Properties: %d, Address: %s", __FUNCTION__, num_properties, 290 ALOGE("Address is null in %s", __FUNCTION__); 295 ALOGE("Address allocation failed in %s", __FUNCTION__); 316 ALOGE("Address is null in %s", __FUNCTION__); 321 ALOGE("Address allocation failed in %s", __FUNCTION__); 354 ALOGE("Address is null in %s", __FUNCTION__); 388 ALOGE("Address is null in %s", __FUNCTION__); 592 static jboolean createBondNative(JNIEnv* env, jobject obj, jbyteArray address) { [all...] |
/frameworks/opt/telephony/src/java/android/provider/ |
Telephony.java | 77 * The address of the other party 80 public static final String ADDRESS = "address"; 208 * @param address the address of the sender 217 Uri uri, String address, String body, String subject, 219 return addMessageToUri(resolver, uri, address, body, subject, 228 * @param address the address of the sender 238 Uri uri, String address, String body, String subject [all...] |
/external/chromium/net/base/ |
ip_endpoint_unittest.cc | 52 EXPECT_EQ(tests[index].ip_address, endpoint.address()); 62 EXPECT_EQ(src.address(), dest.address()); 72 EXPECT_EQ(src.address(), dest.address()); 96 EXPECT_EQ(ip_endpoint.address(), ip_endpoint2.address());
|
/external/chromium/net/disk_cache/ |
entry_impl.h | 34 EntryImpl(BackendImpl* backend, Addr address, bool read_only); 74 // Returns the address of the next entry on the list of entries with the same 78 // Sets the address of the next entry on the list of entries with the same 80 void SetNextAddress(Addr address); 179 bool CreateBlock(int size, Addr* address); 181 // Deletes the data pointed by address, maybe backed by files_[index]. 183 // |address| *before* calling this method because we don't want to have an 184 // entry using an address that is already free. 185 void DeleteData(Addr address, int index); 190 // Returns a pointer to the file that stores the given address [all...] |
/external/elfutils/libdwfl/ |
libdwfl.h | 78 /* Fill *ADDR with the loaded address of the section called SECNAME in 130 effective page size for the address space DWFL describes. 141 an address inside this segment, dwfl_addrsegment may return the NDX of a 147 mapping of an address to a segment index that starts at or below 201 pointer, **USERDATA is initially null; *START and *END give the address 202 range covered by the module; *DWBIAS is the address bias for debugging 225 /* Find the module containing the given address. */ 226 extern Dwfl_Module *dwfl_addrmodule (Dwfl *dwfl, Dwarf_Addr address); 228 /* Find the segment, if any, and module, if any, containing ADDRESS. 230 if no segment matches the address. Regardless of the return value [all...] |
/frameworks/base/core/java/android/text/util/ |
Rfc822Tokenizer.java | 26 * address list fields, and also provides a method for converting 47 StringBuilder address = new StringBuilder(); local 65 if (address.length() > 0) { 67 address.toString(), 76 address.setLength(0); 135 address.append(c); 150 if (address.length() > 0) { 152 address.toString(), 306 * Terminates the specified address with a comma and space.
|
/system/core/run-as/ |
package.c | 72 /* Open 'filename' and map it into our address-space. 73 * Returns buffer address, or NULL on error 82 void* address = NULL; local 131 address = TEMP_FAILURE_RETRY(mmap(NULL, length, PROT_READ, MAP_PRIVATE, fd, 0)); 132 if (address == MAP_FAILED) { 133 address = NULL; 146 return address; 151 unmap_file(void* address, size_t size) 154 TEMP_FAILURE_RETRY(munmap(address, size));
|