/external/valgrind/main/memcheck/tests/ |
badpoll.c | 12 struct pollfd* ufds = malloc(2 * sizeof(struct pollfd) - 1); local 13 assert(ufds); 15 ufds[0].fd = 0; 16 ufds[0].events = 0; 17 //ufds[1].fd = 0; // leave undefined so we get another error. 18 ufds[1].events = 0; 21 // but not the undefined value error due to ufds[1].fd not being defined. 22 poll(ufds, 2, 200);
|
badpoll.stderr.exp | 1 Syscall param poll(ufds.fd) points to uninitialised byte(s) 8 Syscall param poll(ufds.revents) points to unaddressable byte(s)
|
/system/core/debuggerd/ |
getevent.cpp | 31 static struct pollfd* ufds; variable in typeref:struct:pollfd 69 new_ufds = reinterpret_cast<pollfd*>(realloc(ufds, sizeof(ufds[0]) * (nfds + 1))); 74 ufds = new_ufds; 82 ufds[nfds].fd = fd; 83 ufds[nfds].events = POLLIN; 97 memmove(ufds + i, ufds + i + 1, sizeof(ufds[0]) * count); 170 ufds = reinterpret_cast<pollfd*>(calloc(1, sizeof(ufds[0]))) [all...] |
/system/core/toolbox/ |
getevent.c | 16 static struct pollfd *ufds; variable in typeref:struct:pollfd 344 new_ufds = realloc(ufds, sizeof(ufds[0]) * (nfds + 1)); 349 ufds = new_ufds; 385 ufds[nfds].fd = fd; 386 ufds[nfds].events = POLLIN; 403 memmove(ufds + i, ufds + i + 1, sizeof(ufds[0]) * count); 593 ufds = calloc(1, sizeof(ufds[0])) [all...] |
/system/core/init/ |
init.c | 1004 struct pollfd ufds[4]; local 1118 ufds[fd_count].fd = get_property_set_fd(); 1119 ufds[fd_count].events = POLLIN; 1120 ufds[fd_count].revents = 0; 1125 ufds[fd_count].fd = get_signal_fd(); 1126 ufds[fd_count].events = POLLIN; 1127 ufds[fd_count].revents = 0; 1132 ufds[fd_count].fd = get_keychord_fd(); 1133 ufds[fd_count].events = POLLIN; 1134 ufds[fd_count].revents = 0 [all...] |
property_service.c | 270 struct pollfd ufds[1]; local 285 ufds[0].fd = s; 286 ufds[0].events = POLLIN; 287 ufds[0].revents = 0; 288 nr = TEMP_FAILURE_RETRY(poll(ufds, 1, timeout_ms));
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/pulse/ |
mainloop.h | 123 typedef int (*pa_poll_func)(struct pollfd *ufds, unsigned long nfds, int timeout, void*userdata);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/ |
mainloop.h | 123 typedef int (*pa_poll_func)(struct pollfd *ufds, unsigned long nfds, int timeout, void*userdata);
|
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-generic.c | 3857 struct vki_pollfd* ufds = (struct vki_pollfd *)ARG1; local 3877 struct vki_pollfd* ufds = (struct vki_pollfd *)ARG1; local [all...] |
syswrap-linux.c | 1259 struct vki_pollfd* ufds = (struct vki_pollfd *)ARG1; local 1286 struct vki_pollfd* ufds = (struct vki_pollfd *)ARG1; local [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_common_syscalls.inc | [all...] |
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/ |
_linux.h | 488 extern int __syscall_poll(struct pollfd *ufds, unsigned long int nfds,
|
/external/compiler-rt/include/sanitizer/ |
linux_syscall_hooks.h | [all...] |
/external/valgrind/main/memcheck/tests/x86-linux/ |
scalar.stderr.exp | [all...] |