HomeSort by relevance Sort by last modified time
    Searched refs:Address (Results 76 - 100 of 760) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
execve1.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
9 Address 0x........ is not stack'd, malloc'd or (recently) free'd
14 Address 0x........ is not stack'd, malloc'd or (recently) free'd
clo_redzone_128.stderr.exp 4 Address 0x........ is 69 bytes after a block of size 128 alloc'd
execve2.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
signal2.stderr.exp 3 Address 0x........ is not stack'd, malloc'd or (recently) free'd
badfree-2trace.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
9 Address 0x........ is on thread 1's stack
badfree.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
9 Address 0x........ is on thread 1's stack
badfree3.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
9 Address 0x........ is on thread 1's stack
buflen_check.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
9 Address 0x........ is not stack'd, malloc'd or (recently) free'd
  /external/llvm/include/llvm/MC/
MCExternalSymbolizer.h 50 uint64_t Address, bool IsBranch,
53 int64_t Value, uint64_t Address);
MCSymbolizer.h 61 /// @param Address - Load address of the instruction.
67 int64_t Value, uint64_t Address,
76 uint64_t Address) = 0;
  /external/v8/src/
spaces.h 97 #define ASSERT_PAGE_ALIGNED(address) \
98 ASSERT((OffsetFrom(address) & Page::kPageAlignmentMask) == 0)
100 #define ASSERT_OBJECT_ALIGNED(address) \
101 ASSERT((OffsetFrom(address) & kObjectAlignmentMask) == 0)
103 #define ASSERT_MAP_ALIGNED(address) \
104 ASSERT((OffsetFrom(address) & kMapAlignmentMask) == 0)
210 INLINE(Address address()) { function in class:v8::internal::Bitmap
211 return reinterpret_cast<Address>(this);
214 INLINE(static Bitmap* FromAddress(Address addr))
311 Address address() { return reinterpret_cast<Address>(this); } function in class:v8::internal::MemoryChunk
1761 Address address() { function in class:v8::internal::NewSpacePage
    [all...]
log.h 215 void CallbackEvent(String* name, Address entry_point);
216 void GetterCallbackEvent(String* name, Address entry_point);
217 void SetterCallbackEvent(String* name, Address entry_point);
236 void CodeMoveEvent(Address from, Address to);
238 void CodeDeleteEvent(Address from);
240 void SharedFunctionInfoMoveEvent(Address from, Address to);
242 void SnapshotPositionEvent(Address addr, int pos);
254 Address* stack)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Message.java 67 public abstract Address[] getRecipients(RecipientType type) throws MessagingException;
69 public abstract void setRecipients(RecipientType type, Address[] addresses)
72 public void setRecipient(RecipientType type, Address address) throws MessagingException {
73 setRecipients(type, new Address[] {
74 address
78 public abstract Address[] getFrom() throws MessagingException;
80 public abstract void setFrom(Address from) throws MessagingException;
82 public abstract Address[] getReplyTo() throws MessagingException;
84 public abstract void setReplyTo(Address[] from) throws MessagingException
    [all...]
  /art/compiler/utils/x86/
assembler_x86.h 89 // Operand can be sub classed (e.g: Address).
137 class Address : public Operand {
139 Address(Register base, int32_t disp) {
143 Address(Register base, Offset disp) {
147 Address(Register base, FrameOffset disp) {
152 Address(Register base, MemberOffset disp) {
172 Address(Register index, ScaleFactor scale, int32_t disp) {
179 Address(Register base, Register index, ScaleFactor scale, int32_t disp) {
195 static Address Absolute(uword addr) {
196 Address result
    [all...]
  /external/v8/src/arm/
assembler-arm-inl.h 68 Address RelocInfo::target_address() {
74 Address RelocInfo::target_address_address() {
78 return reinterpret_cast<Address>(Assembler::target_address_address_at(pc_));
87 void RelocInfo::set_target_address(Address target, WriteBarrierMode mode) {
118 Assembler::set_target_address_at(pc_, reinterpret_cast<Address>(target));
128 Address* RelocInfo::target_reference_address() {
130 return reinterpret_cast<Address*>(Assembler::target_address_address_at(pc_));
136 Address address = Memory::Address_at(pc_); local
138 reinterpret_cast<JSGlobalPropertyCell**>(address));
144 Address address = Memory::Address_at(pc_); local
154 Address address = cell->address() + JSGlobalPropertyCell::kValueOffset; local
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_test_util.cc 33 scoped_ptr<Address> address,
43 address.Pass(),
59 const std::string& id, scoped_ptr<Address> address) {
62 address.Pass(),
67 scoped_ptr<Address> GetTestAddress() {
68 return scoped_ptr<Address>(new Address("US",
79 scoped_ptr<Address> GetTestMinimalAddress()
80 scoped_ptr<Address> address = GetTestAddress(); local
222 scoped_ptr<Address> address = GetTestShippingAddress(); local
    [all...]
instrument.h 24 class Address;
40 // Convert the info in |card| to an Instrument using |profile| for address.
50 scoped_ptr<Address> address);
66 const Address* address() const { return address_.get(); } function in class:autofill::wallet::Instrument
90 // The billing address of the instrument.
91 scoped_ptr<Address> address_;
  /external/chromium_org/v8/src/
vm-state-inl.h 83 ExternalCallbackScope::ExternalCallbackScope(Isolate* isolate, Address callback)
89 scope_address_ = reinterpret_cast<Address>(static_cast<intptr_t>(sp));
98 Address ExternalCallbackScope::scope_address() {
102 return reinterpret_cast<Address>(this);
  /external/llvm/include/llvm/Support/
Memory.h 24 /// This class encapsulates the notion of a memory block which has an address
31 MemoryBlock() : Address(0), Size(0) { }
32 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
33 void *base() const { return Address; }
36 void *Address; ///< Address of first byte of memory area
58 /// The actual allocated address is not guaranteed to be near the requested
59 /// address.
70 /// If the address following \p NearBlock is not so aligned, it will be
  /external/llvm/lib/MC/
MCDisassembler.cpp 37 uint64_t Address, bool IsBranch,
42 return Symbolizer->tryAddingSymbolicOperand(Inst, cStream, Value, Address,
48 uint64_t Address) const {
51 Symbolizer->tryAddingPcLoadReferenceComment(cStream, Value, Address);
  /external/nist-sip/java/javax/sip/
Dialog.java 6 import javax.sip.address.Address;
23 Address getLocalParty();
35 Address getRemoteParty();
47 Address getRemoteTarget();
  /external/smack/src/org/xbill/DNS/
ARecord.java 9 * Address Record - maps a domain name to an Internet address
47 * @param address The address that the name refers to
50 ARecord(Name name, int dclass, long ttl, InetAddress address) {
52 if (Address.familyOf(address) != Address.IPv4)
53 throw new IllegalArgumentException("invalid IPv4 address");
54 addr = fromArray(address.getAddress())
64 InetAddress address = st.getAddress(Address.IPv4); local
    [all...]
  /frameworks/base/location/tests/locationtests/src/android/location/
GeocoderTest.java 19 import android.location.Address;
38 List<Address> addresses1 = g.getFromLocation(37.435067, -122.166767, 2);
42 Address addr = addresses1.get(0);
49 List<Address> addresses2 = g.getFromLocationName("San Francisco, CA", 1);
  /frameworks/compile/mclinker/include/mcld/Support/
SystemUtils.h 22 typedef uint8_t* Address;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
DetailsAddressResolver.java 20 import android.location.Address;
36 private Future<Address> mAddressLookupJob;
39 private class AddressLookupJob implements Job<Address> {
47 public Address run(JobContext jc) {
54 public void onAddressAvailable(String address);
66 new FutureListener<Address>() {
68 public void onFutureDone(final Future<Address> future) {
83 private void updateLocation(Address address) {
84 if (address != null)
    [all...]

Completed in 693 milliseconds

1 2 34 5 6 7 8 91011>>