Home
last modified time | relevance | path

Searched refs:address (Results 1 – 25 of 31) sorted by relevance

12

/bionic/libc/bionic/
Dsys_shm.cpp34 void* shmat(int id, const void* address, int flags) { in shmat() argument
36 return reinterpret_cast<void*>(syscall(SYS_shmat, id, address, flags)); in shmat()
40 if (syscall(SYS_ipc, SHMAT, id, flags, &result, address, 0) == -1) { in shmat()
59 int shmdt(const void* address) { in shmdt() argument
61 return syscall(SYS_shmdt, address); in shmdt()
63 return syscall(SYS_ipc, SHMDT, 0, 0, 0, address, 0); in shmdt()
/bionic/tests/
Dsys_ptrace_test.cpp110 static void set_watchpoint(pid_t child, uintptr_t address, size_t size) { in set_watchpoint() argument
111 ASSERT_EQ(0u, address & 0x7) << "address: " << address; in set_watchpoint()
119 ASSERT_EQ(0, ptrace(PTRACE_SETHBPREGS, child, -1, &address)) << strerror(errno); in set_watchpoint()
124 dreg_state.dbg_regs[0].addr = address; in set_watchpoint()
134 …ASSERT_EQ(0, ptrace(PTRACE_POKEUSER, child, offsetof(user, u_debugreg[0]), address)) << strerror(e… in set_watchpoint()
150 UNUSED(address); in set_watchpoint()
296 uintptr_t address = uintptr_t(breakpoint_func); in set_breakpoint() local
298 address &= ~3; in set_breakpoint()
304 ASSERT_EQ(0, ptrace(PTRACE_SETHBPREGS, child, 1, &address)) << strerror(errno); in set_breakpoint()
309 dreg_state.dbg_regs[0].addr = reinterpret_cast<uintptr_t>(address); in set_breakpoint()
[all …]
Dthread_local_test.cpp183 void* address; member
230 p == tls_var[n].object.address); in TEST()
236 uintptr_t address= reinterpret_cast<uintptr_t>(p); in TEST() local
237 ASSERT_EQ((address & ~(align - 1)), address); in TEST()
/bionic/libc/kernel/uapi/linux/
Dndctl.h53 __u64 address; member
62 __u64 address; member
73 __u64 address; member
88 __u64 address; member
Dpsp-sev.h71 __u64 address; member
91 __u64 address; member
Drio_mport_cdev.h86 __u64 address; member
91 __u64 address; member
Dqemu_fw_cfg.h75 __be64 address; member
Dx25.h65 struct x25_address address; member
Drose.h68 rose_address address; member
Dmic_common.h55 __le64 address; member
Dswitchtec_ioctl.h53 __u32 address; member
Dvirtio_iommu.h134 __le64 address; member
Duserfaultfd.h50 __u64 address; member
Dfd.h138 unsigned long address; member
Dtcp.h242 __u64 address; member
Dkvm.h70 __u64 address; member
472 __u32 address; member
/bionic/libc/dns/resolv/
Dres_debug.h26 # define Aerror(statp, file, string, error, address) /*empty*/ argument
Dres_send.c1294 const struct sockaddr *address, int alen) in Aerror() argument
1301 if (getnameinfo(address, (socklen_t)alen, hbuf, sizeof(hbuf), in Aerror()
/bionic/libc/arch-x86/bionic/
Dsyscall.S30 # Get and save the system call entry address.
/bionic/docs/
Dnative_allocator.md133 The last is virtual address space consumed in 32 bit applications. There is
134 a limited amount of address space available in 32 bit apps, and there have
136 address space is consumed. For 64 bit executables, this can be ignored.
145 ignore anything related to RSS and virtual address space consumed.
295 address space consumed, speed of allocation. They are designed to
364 and some allocators might leave large virtual address maps around
368 executable, the virtual address space consumed is not much larger than the
Dfdsan.md45 … should ideally be something that uniquely identifies the object (object address for native object…
336 // The obvious choice of tag to use is the address of the object.
/bionic/libc/kernel/uapi/drm/
Di810_drm.h189 void * address; member
Dradeon_drm.h591 unsigned int address; member
596 unsigned int address; member
/bionic/libc/kernel/uapi/sound/
Demu10k1.h288 unsigned int address; member
/bionic/linker/
Dlinker.cpp821 ElfW(Addr) address = reinterpret_cast<ElfW(Addr)>(untag_address(p)); in find_containing_library()
823 if (address < si->base || address - si->base >= si->size) { in find_containing_library()
826 ElfW(Addr) vaddr = address - si->load_bias; in find_containing_library()
2725 ElfW(Addr) address = offset + load_bias; in apply_relr_reloc()
2726 *reinterpret_cast<ElfW(Addr)*>(address) += load_bias; in apply_relr_reloc()

12