/bionic/libc/bionic/ |
D | sys_shm.cpp | 34 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/ |
D | sys_ptrace_test.cpp | 110 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 …]
|
D | thread_local_test.cpp | 183 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/ |
D | ndctl.h | 53 __u64 address; member 62 __u64 address; member 73 __u64 address; member 88 __u64 address; member
|
D | psp-sev.h | 71 __u64 address; member 91 __u64 address; member
|
D | rio_mport_cdev.h | 86 __u64 address; member 91 __u64 address; member
|
D | qemu_fw_cfg.h | 75 __be64 address; member
|
D | x25.h | 65 struct x25_address address; member
|
D | rose.h | 68 rose_address address; member
|
D | mic_common.h | 55 __le64 address; member
|
D | switchtec_ioctl.h | 53 __u32 address; member
|
D | virtio_iommu.h | 134 __le64 address; member
|
D | userfaultfd.h | 50 __u64 address; member
|
D | fd.h | 138 unsigned long address; member
|
D | tcp.h | 242 __u64 address; member
|
D | kvm.h | 70 __u64 address; member 472 __u32 address; member
|
/bionic/libc/dns/resolv/ |
D | res_debug.h | 26 # define Aerror(statp, file, string, error, address) /*empty*/ argument
|
D | res_send.c | 1294 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/ |
D | syscall.S | 30 # Get and save the system call entry address.
|
/bionic/docs/ |
D | native_allocator.md | 133 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
|
D | fdsan.md | 45 … 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/ |
D | i810_drm.h | 189 void * address; member
|
D | radeon_drm.h | 591 unsigned int address; member 596 unsigned int address; member
|
/bionic/libc/kernel/uapi/sound/ |
D | emu10k1.h | 288 unsigned int address; member
|
/bionic/linker/ |
D | linker.cpp | 821 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()
|