Searched refs:action (Results 1 - 25 of 30) sorted by relevance

12

/bionic/libc/upstream-openbsd/lib/libc/stdlib/
H A Dtsearch.c96 trecurse(node *root, void (*action)(const void *, VISIT, int), int level)
99 (*action)(root, leaf, level);
101 (*action)(root, preorder, level);
103 trecurse(root->left, action, level + 1);
104 (*action)(root, postorder, level);
106 trecurse(root->right, action, level + 1);
107 (*action)(root, endorder, level);
113 twalk(const void *vroot, void (*action)(const void *, VISIT, int))
117 if (root != (node *)0 && action != (void (*)(const void *, VISIT, int))0)
118 trecurse(root, action,
[all...]
/bionic/libc/private/
H A Dbionic_fortify.h64 static inline void __check_buffer_access(const char* fn, const char* action, argument
67 __fortify_fatal("%s: prevented %zu-byte %s %zu-byte buffer", fn, claim, action, actual);
/bionic/libc/kernel/uapi/xen/
H A Dgntalloc.h44 __u32 action; member in struct:ioctl_gntalloc_unmap_notify
H A Dgntdev.h61 __u32 action; member in struct:ioctl_gntdev_unmap_notify
/bionic/libc/versioner-dependencies/common/kernel_uapi/xen/
H A Dgntalloc.h44 __u32 action; member in struct:ioctl_gntalloc_unmap_notify
H A Dgntdev.h61 __u32 action; member in struct:ioctl_gntdev_unmap_notify
/bionic/tests/
H A DScopedSignalHandler.h33 ScopedSignalHandler(int signal_number, void (*action)(int, siginfo_t*, void*), argument
38 action_.sa_sigaction = action;
H A Dsys_ptrace_test.cpp256 struct sigaction action, oldaction; local
257 action.sa_handler = [](int) {};
258 sigemptyset(&action.sa_mask);
259 action.sa_flags = 0;
260 ASSERT_EQ(0, sigaction(SIGALRM, &action, &oldaction)) << strerror(errno);
/bionic/libc/bionic/
H A Dtermios.cpp73 int tcflow(int fd, int action) { argument
74 return ioctl(fd, TCXONC, static_cast<unsigned long>(action));
/bionic/libc/include/android/
H A Dlegacy_termios_inlines.h50 static __inline int tcflow(int fd, int action) { argument
51 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
/bionic/tools/versioner/current/android/
H A Dlegacy_termios_inlines.h50 static __inline int tcflow(int fd, int action) { argument
51 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
/bionic/libc/kernel/uapi/linux/
H A Dfib_rules.h42 __u8 action; member in struct:fib_rule_hdr
H A Dblktrace_api.h115 __u32 action; member in struct:blk_io_trace
H A Dpkt_cls.h69 int action; member in struct:tc_police
100 #define tc_gen __u32 index; __u32 capab; int action; int refcnt; int bindcnt
H A Daudit.h411 __u32 action; member in struct:audit_rule_data
H A Dxfrm.h432 __u8 action; member in struct:xfrm_userpolicy_info
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dfib_rules.h42 __u8 action; member in struct:fib_rule_hdr
H A Dblktrace_api.h115 __u32 action; member in struct:blk_io_trace
H A Dpkt_cls.h69 int action; member in struct:tc_police
100 #define tc_gen __u32 index; __u32 capab; int action; int refcnt; int bindcnt
H A Daudit.h411 __u32 action; member in struct:audit_rule_data
H A Dxfrm.h432 __u8 action; member in struct:xfrm_userpolicy_info
/bionic/linker/
H A Dlinked_list.h156 void for_each(F action) const {
158 action(si);
164 bool visit(F action) const {
166 if (!action(e->element)) {
H A Dlinker_soinfo.h349 void for_each_dt_needed(const soinfo* si, F action) { argument
352 action(fix_dt_needed(si->get_string(d->d_un.d_val), si->get_realpath()));
/bionic/libc/kernel/uapi/scsi/
H A Dscsi_bsg_fc.h61 uint8_t action; member in struct:fc_bsg_ctels_reply::__anon1074
/bionic/libc/versioner-dependencies/common/kernel_uapi/scsi/
H A Dscsi_bsg_fc.h61 uint8_t action; member in struct:fc_bsg_ctels_reply::__anon2147

Completed in 1681 milliseconds

12