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

/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/linker/
H A Ddebugger.cpp69 int32_t action; member in struct:debugger_msg_t
238 msg.action = DEBUGGER_ACTION_CRASH;
303 struct sigaction action; local
304 memset(&action, 0, sizeof(action));
305 sigemptyset(&action.sa_mask);
306 action.sa_sigaction = debuggerd_signal_handler;
307 action.sa_flags = SA_RESTART | SA_SIGINFO;
310 action.sa_flags |= SA_ONSTACK;
312 sigaction(SIGABRT, &action, nullpt
[all...]
H A Dlinked_list.h140 void for_each(F action) const {
142 action(si);
148 bool visit(F action) const {
150 if (!action(e->element)) {
H A Dlinker.cpp1229 // * calls action(soinfo* si) for each node, and
1230 // * terminates walk if action returns false.
1233 // by the action and true otherwise.
1235 static bool walk_dependencies_tree(soinfo* root_soinfos[], size_t root_soinfos_size, F action) {
1249 if (!action(si)) {
1663 static void for_each_dt_needed(const soinfo* si, F action) {
1666 action(fix_dt_needed(si->get_string(d->d_un.d_val), si->get_realpath()));
1672 static void for_each_dt_needed(const ElfReader& elf_reader, F action) {
1675 action(fix_dt_needed(elf_reader.get_string(d->d_un.d_val), elf_reader.name()));
/bionic/tests/
H A DScopedSignalHandler.h33 ScopedSignalHandler(int signal_number, void (*action)(int, siginfo_t*, void*), argument
38 action_.sa_sigaction = action;
/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/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.h67 int action; member in struct:tc_police
97 #define tc_gen __u32 index; __u32 capab; int action; int refcnt; int bindcnt
H A Daudit.h404 __u32 action; member in struct:audit_rule_data
H A Dxfrm.h431 __u8 action; member in struct:xfrm_userpolicy_info
H A Dethtool.h389 __s32 action; member in struct:ethtool_rx_ntuple_flow_spec
H A Dpkt_sched.h121 int action; member in struct:tc_plug_qopt
/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.h47 static __inline int tcflow(int fd, int action) { argument
48 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
/bionic/libc/kernel/uapi/scsi/
H A Dscsi_bsg_fc.h61 uint8_t action; member in struct:fc_bsg_ctels_reply::__anon965

Completed in 286 milliseconds