/external/parameter-framework/asio/include/asio/ip/ |
H A D | address.hpp | 2 // ip/address.hpp 29 * The asio::ip::address class provides the ability to use either IP 36 class address class in namespace:asio::ip 40 ASIO_DECL address(); 42 /// Construct an address from an IPv4 address. 43 ASIO_DECL address(const asio::ip::address_v4& ipv4_address); 45 /// Construct an address from an IPv6 address. 46 ASIO_DECL address(cons [all...] |
/external/parameter-framework/asio-1.10.6/include/asio/ip/ |
H A D | address.hpp | 2 // ip/address.hpp 29 * The asio::ip::address class provides the ability to use either IP 36 class address class in namespace:asio::ip 40 ASIO_DECL address(); 42 /// Construct an address from an IPv4 address. 43 ASIO_DECL address(const asio::ip::address_v4& ipv4_address); 45 /// Construct an address from an IPv6 address. 46 ASIO_DECL address(cons [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
H A D | AddressHeaderIms.java | 33 import javax.sip.address.Address; 35 import gov.nist.javax.sip.address.AddressImpl; 45 protected AddressImpl address; field in class:AddressHeaderIms 52 return address; 57 * @param address Address to set 59 public void setAddress(Address address) { argument 60 this.address = (AddressImpl) address; 77 if (this.address != null) 78 retval.address [all...] |
H A D | PAssociatedURI.java | 37 import gov.nist.javax.sip.address.AddressImpl; 38 import gov.nist.javax.sip.address.GenericURI; 39 import javax.sip.address.URI; 48 * has allocated to a user for his own usage (address-of-record). </p> 81 * @param address to be set in the header 83 public PAssociatedURI(AddressImpl address) argument 86 this.address = address; 91 * @param associatedURI - GenericURI to be set in the address of this header 96 this.address [all...] |
/external/sfntly/cpp/src/sfntly/port/ |
H A D | atomic.h | 24 static inline size_t AtomicIncrement(size_t* address) { argument 26 return InterlockedIncrement64(reinterpret_cast<LONGLONG*>(address)); 28 return InterlockedIncrement(reinterpret_cast<LONG*>(address)); 32 static inline size_t AtomicDecrement(size_t* address) { argument 34 return InterlockedDecrement64(reinterpret_cast<LONGLONG*>(address)); 36 return InterlockedDecrement(reinterpret_cast<LONG*>(address)); 44 static inline size_t AtomicIncrement(size_t* address) { argument 45 return OSAtomicIncrement32Barrier(reinterpret_cast<int32_t*>(address)); 48 static inline size_t AtomicDecrement(size_t* address) { argument 49 return OSAtomicDecrement32Barrier(reinterpret_cast<int32_t*>(address)); 61 AtomicIncrement(size_t* address) argument 65 AtomicDecrement(size_t* address) argument [all...] |
/external/lzma/C/ |
H A D | Alloc.h | 12 void MyFree(void *address);
19 void MidFree(void *address);
21 void BigFree(void *address);
26 #define MidFree(address) MyFree(address)
28 #define BigFree(address) MyFree(address)
|
H A D | 7zAlloc.h | 14 void SzFree(void *p, void *address);
17 void SzFreeTemp(void *p, void *address);
|
H A D | Alloc.c | 38 void MyFree(void *address)
argument 41 if (address != 0)
42 fprintf(stderr, "\nFree; count = %10d, addr = %8X", --g_allocCount, (unsigned)address);
44 free(address);
59 void MidFree(void *address)
argument 62 if (address != 0)
65 if (address == 0)
67 VirtualFree(address, 0, MEM_RELEASE);
115 void BigFree(void *address)
argument 118 if (address ! 131 SzFree(void *p, void *address) argument 135 SzBigFree(void *p, void *address) argument [all...] |
/external/nist-sip/java/gov/nist/javax/sip/address/ |
H A D | RouterExt.java | 26 package gov.nist.javax.sip.address; 28 import javax.sip.address.Hop; 29 import javax.sip.address.Router;
|
H A D | AddressImpl.java | 29 package gov.nist.javax.sip.address; 31 import javax.sip.address.*; 48 implements javax.sip.address.Address { 71 /** address field 73 protected GenericURI address; field in class:AddressImpl 75 /** Match on the address only. 92 return address.match(that.address); 95 && address.match(that.address); 239 setAddess(javax.sip.address.URI address) argument 318 setURI(URI address) argument [all...] |
H A D | SipURIExt.java | 1 package gov.nist.javax.sip.address; 3 import javax.sip.address.SipURI;
|
/external/ImageMagick/MagickCore/ |
H A D | memory-private.h | 36 #define MagickAssumeAligned(address) \ 37 __builtin_assume_aligned((address),CACHE_LINE_SIZE) 39 #define MagickAssumeAligned(address) (address) 42 #define MagickAssumeAligned(address) (address)
|
/external/nist-sip/java/javax/sip/header/ |
H A D | HeaderAddress.java | 3 import javax.sip.address.Address; 7 void setAddress(Address address); argument
|
/external/libchrome/base/mac/ |
H A D | scoped_mach_vm.cc | 10 void ScopedMachVM::reset(vm_address_t address, vm_size_t size) { argument 11 DCHECK_EQ(address % PAGE_SIZE, 0u); 15 if (address_ < address) { 18 std::min(size_, address - address_)); 20 if (address_ + size_ > address + size) { 21 vm_address_t deallocate_start = std::max(address_, address + size); 28 address_ = address;
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
H A D | MemoryObject.cpp | 16 int MemoryObject::readBytes(uint64_t address, argument 20 uint64_t current = address; 26 while (current - address < size) { 27 if (readByte(current, &buf[(current - address)])) 34 *copied = current - address;
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
H A D | ReplyTo.java | 32 import gov.nist.javax.sip.address.*; 61 /** Default constructor given an address. 63 *@param address -- address of this header. 66 public ReplyTo(AddressImpl address) { argument 68 this.address = address; 85 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 88 retval += address.encode(); 89 if (address [all...] |
H A D | Route.java | 31 import gov.nist.javax.sip.address.AddressImpl; 59 /** Default constructor given an address. 61 *@param address -- address of this header. 65 public Route(AddressImpl address) { argument 67 this.address = address; 73 *@return the hashcode of the encoded address. 76 return this.address.getHostPort().encode().toLowerCase().hashCode(); 91 boolean addrFlag = address [all...] |
/external/v8/src/ |
H A D | external-reference-table.cc | 66 const char* ExternalReferenceTable::ResolveSymbol(void* address) { argument 68 return backtrace_symbols(&address, 1)[0]; 76 Add(ExternalReference::roots_array_start(isolate).address(), 78 Add(ExternalReference::address_of_stack_limit(isolate).address(), 80 Add(ExternalReference::address_of_real_stack_limit(isolate).address(), 82 Add(ExternalReference::new_space_allocation_limit_address(isolate).address(), 84 Add(ExternalReference::new_space_allocation_top_address(isolate).address(), 86 Add(ExternalReference::mod_two_doubles_operation(isolate).address(), 88 Add(ExternalReference::handle_scope_next_address(isolate).address(), 90 Add(ExternalReference::handle_scope_limit_address(isolate).address(), 309 Address address; member in struct:v8::internal::CBuiltinEntry 371 Address address; member in struct:v8::internal::AccessorRefTable 437 Address address = Deoptimizer::GetDeoptimizationEntry( local 451 Address address = reinterpret_cast<Address>(*api_external_references); local [all...] |
/external/elfutils/libdwfl/ |
H A D | dwfl_addrdwarf.c | 1 /* Fetch libdw handle from address. 32 dwfl_addrdwarf (Dwfl *dwfl, Dwarf_Addr address, Dwarf_Addr *bias) argument 34 return INTUSE(dwfl_module_getdwarf) (INTUSE(dwfl_addrmodule) (dwfl, address),
|
H A D | dwfl_addrmodule.c | 1 /* Find module containing address. 32 dwfl_addrmodule (Dwfl *dwfl, Dwarf_Addr address) argument 35 (void) INTUSE(dwfl_addrsegment) (dwfl, address, &mod);
|
/external/google-breakpad/src/google_breakpad/processor/ |
H A D | memory_region.h | 52 // The base address of this memory region. 58 // Access to data of various sizes within the memory region. address 60 // defined by its base address and size. The location pointed to by 61 // value is set to the value at address. Byte-swapping is performed 63 // program. Returns true on success. Fails and returns false if address 66 virtual bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const = 0; 67 virtual bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const = 0; 68 virtual bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const = 0; 69 virtual bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const = 0;
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
H A D | Person.java | 21 public Address address; field in class:Person
|
/external/syslinux/gpxe/src/include/gpxe/ |
H A D | nvs.h | 40 * @v address Address from which to read 47 int ( * read ) ( struct nvs_device *nvs, unsigned int address, 52 * @v address Address to which to write 59 int ( * write ) ( struct nvs_device *nvs, unsigned int address, 63 extern int nvs_read ( struct nvs_device *nvs, unsigned int address, 65 extern int nvs_write ( struct nvs_device *nvs, unsigned int address,
|
/external/autotest/server/site_tests/bluetooth_Sanity_ValidAddress/ |
H A D | bluetooth_Sanity_ValidAddress.py | 13 Verify that the client Bluetooth adapter has a valid address. 22 # Read the address both via BlueZ and via the kernel mgmt_ops interface. 29 'BlueZ and Kernel adapter address differ: %s != %s' % 32 address = controller_info[0] 33 logging.debug('Bluetooth address of adapter is %s', address) 35 # Sanity check the address 36 if address == '00:00:00:00:00:00': 37 raise error.TestFail('Adapter address is all zeros') 38 if address [all...] |
/external/elfutils/libdw/ |
H A D | dwarf_cfi_addrframe.c | 36 dwarf_cfi_addrframe (Dwarf_CFI *cache, Dwarf_Addr address, Dwarf_Frame **frame) argument 42 struct dwarf_fde *fde = __libdw_find_fde (cache, address); 46 int error = __libdw_frame_at_address (cache, fde, address, frame);
|