Searched defs:addr (Results 26 - 50 of 2343) sorted by relevance

1234567891011>>

/external/strace/tests-m32/
H A Dumovestr.c36 char *addr = tail_alloc(tail_len); local
37 memset(addr, '/', tail_len - 1);
38 addr[tail_len - 1] = '\0';
39 if (chdir(addr))
H A Dnet-yy-netlink.c48 struct sockaddr_nl addr = { local
52 struct sockaddr *const sa = tail_memdup(&addr, sizeof(addr));
54 *len = sizeof(addr);
67 fd, inode, addr.nl_pid, (unsigned) *len);
73 fd, addr.nl_pid, addr.nl_pid, (unsigned) *len);
77 printf("close(%d<NETLINK:[SOCK_DIAG:%u]>) = 0\n", fd, addr.nl_pid);
H A Dseccomp-strict.c44 const kernel_ulong_t addr = (kernel_ulong_t) 0xfacefeeddeadbeefULL; local
47 rc = syscall(__NR_seccomp, -1L, -1L, addr);
49 " = %s\n", -1, -1, (unsigned long long) addr, sprintrc(rc));
/external/strace/tests-mx32/
H A Dmlock.c13 const char *addr = tail_alloc(size); local
15 long rc = syscall(__NR_mlock, addr, size);
16 printf("mlock(%p, %d) = %s\n", addr, size, sprintrc(rc));
18 rc = syscall(__NR_munlock, addr, size);
19 printf("munlock(%p, %d) = %s\n", addr, size, sprintrc(rc));
H A Dmlock2.c40 const unsigned long addr = (unsigned long) 0xfacefeeddeadbeefULL; local
43 long rc = syscall(__NR_mlock2, addr, len, -1UL);
45 " = %ld %s (%m)\n", addr, len, rc, errno2name());
H A Dsyslog.c14 const long addr = (long) 0xfacefeeddeadbeefULL; local
15 int rc = syscall(__NR_syslog, SYSLOG_ACTION_READ, addr, -1);
17 addr, rc, errno2name());
H A Dumovestr.c36 char *addr = tail_alloc(tail_len); local
37 memset(addr, '/', tail_len - 1);
38 addr[tail_len - 1] = '\0';
39 if (chdir(addr))
H A Dnet-yy-netlink.c48 struct sockaddr_nl addr = { local
52 struct sockaddr *const sa = tail_memdup(&addr, sizeof(addr));
54 *len = sizeof(addr);
67 fd, inode, addr.nl_pid, (unsigned) *len);
73 fd, addr.nl_pid, addr.nl_pid, (unsigned) *len);
77 printf("close(%d<NETLINK:[SOCK_DIAG:%u]>) = 0\n", fd, addr.nl_pid);
H A Dseccomp-strict.c44 const kernel_ulong_t addr = (kernel_ulong_t) 0xfacefeeddeadbeefULL; local
47 rc = syscall(__NR_seccomp, -1L, -1L, addr);
49 " = %s\n", -1, -1, (unsigned long long) addr, sprintrc(rc));
/external/syslinux/com32/lib/
H A Dinet.c32 char *inet_ntoa(struct in_addr addr) argument
35 const uint8_t *bytes = (const uint8_t *)&addr.s_addr;
/external/valgrind/none/tests/linux/
H A Dmremap4.c16 void *addr = shmat(shmid, NULL, 0); local
17 assert(addr != (void *)-1);
19 addr = mremap(addr, 100 * 4096, 40 * 4096, 0);
20 assert(addr != (void *)-1);
H A Dmremap5.c16 void *addr = shmat(shmid, NULL, 0); local
17 assert(addr != (void *)-1);
19 addr = mremap(addr, 100 * 4096, 400 * 4096, MREMAP_MAYMOVE);
20 assert(addr != (void *)-1);
/external/clang/test/CodeGen/
H A D2003-11-18-CondExprLValue.c5 void split_large_page(unsigned long addr, pgprot_t prot) argument
7 (addr ? prot : ((pgprot_t) { 0x001 } )).pgprot;
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dmincore.cc11 void *addr = mmap(nullptr, 20 * PS, PROT_READ | PROT_WRITE, local
14 res = mincore(addr, 10 * PS, vec);
20 ((char *)addr)[i * PS] = 1;
21 res = mincore(addr, 10 * PS, vec);
27 ((char *)addr)[i * PS] = 1;
28 res = mincore(addr, 10 * PS, vec);
/external/compiler-rt/test/msan/Linux/
H A Dmincore.cc12 void *addr = mmap(nullptr, 20 * PS, PROT_READ | PROT_WRITE, local
16 res = mincore(addr, 10 * PS, vec);
21 res = mincore(addr, 10 * PS + 42, vec);
26 res = mincore(addr, 10 * PS - 1, vec);
31 res = mincore(addr, 1, vec);
/external/elfutils/libdwfl/
H A Ddwfl_module_addrname.c32 dwfl_module_addrname (Dwfl_Module *mod, GElf_Addr addr) argument
36 return INTUSE(dwfl_module_addrinfo) (mod, addr, &off, &sym,
/external/strace/
H A Dprint_timex.c45 struct tcb *const tcp, const kernel_ulong_t addr)
49 if (umove_or_printaddr(tcp, addr, &tx))
44 MPERS_PRINTER_DECL(int, print_timex, struct tcb *const tcp, const kernel_ulong_t addr) argument
H A Dsigaltstack.c45 print_stack_t(struct tcb *const tcp, const kernel_ulong_t addr) argument
49 if (umove_or_printaddr(tcp, addr, &ss))
H A Dstat.c33 decode_struct_stat(struct tcb *const tcp, const kernel_ulong_t addr) argument
37 if (fetch_struct_stat(tcp, addr, &st))
H A Dstat64.c33 decode_struct_stat64(struct tcb *const tcp, const kernel_ulong_t addr) argument
37 if (fetch_struct_stat64(tcp, addr, &st))
/external/strace/tests/
H A Dnet-yy-netlink.c48 struct sockaddr_nl addr = { local
52 struct sockaddr *const sa = tail_memdup(&addr, sizeof(addr));
54 *len = sizeof(addr);
67 fd, inode, addr.nl_pid, (unsigned) *len);
73 fd, addr.nl_pid, addr.nl_pid, (unsigned) *len);
77 printf("close(%d<NETLINK:[SOCK_DIAG:%u]>) = 0\n", fd, addr.nl_pid);
H A Dseccomp-strict.c44 const kernel_ulong_t addr = (kernel_ulong_t) 0xfacefeeddeadbeefULL; local
47 rc = syscall(__NR_seccomp, -1L, -1L, addr);
49 " = %s\n", -1, -1, (unsigned long long) addr, sprintrc(rc));
/external/v8/src/runtime/
H A Druntime-futex.cc38 size_t addr = (index << 2) + NumberToSize(sta->byte_offset()); local
40 return FutexEmulation::Wait(isolate, array_buffer, addr, value, timeout);
54 size_t addr = (index << 2) + NumberToSize(sta->byte_offset()); local
56 return FutexEmulation::Wake(isolate, array_buffer, addr, count);
69 size_t addr = (index << 2) + NumberToSize(sta->byte_offset()); local
71 return FutexEmulation::NumWaitersForTesting(isolate, array_buffer, addr);
/external/valgrind/none/tests/s390x/
H A Dcvb.c83 static signed int dec_to_hex(unsigned long *addr) argument
86 register unsigned long *_addr asm("4") = addr;
/external/wpa_supplicant_8/hostapd/src/fst/
H A Dfst_ctrl_iface.h17 int fst_ctrl_iface_mb_info(const u8 *addr, char *buf, size_t buflen);
26 fst_ctrl_iface_mb_info(const u8 *addr, char *buf, size_t buflen) argument

Completed in 667 milliseconds

1234567891011>>