Home
last modified time | relevance | path

Searched refs:auxstr (Results 1 – 24 of 24) sorted by relevance

/external/valgrind/coregrind/m_syswrap/
Dpriv_types_n_macros.h224 #define DEFN_PRE_TEMPLATE(auxstr, name) \ argument
225 void vgSysWrap_##auxstr##_##name##_before \
233 #define DEFN_POST_TEMPLATE(auxstr, name) \ argument
234 void vgSysWrap_##auxstr##_##name##_after \
245 #define DECL_TEMPLATE(auxstr, name) \ argument
247 void vgSysWrap_##auxstr##_##name##_before \
255 void vgSysWrap_##auxstr##_##name##_after \
266 #define WRAPPER_ENTRY_X_(auxstr, sysno, name) \ argument
267 [sysno] = { vgSysWrap_##auxstr##_##name##_before, NULL }
268 #define WRAPPER_ENTRY_XY(auxstr, sysno, name) \ argument
[all …]
/external/strace/
Dfcntl.c146 tcp->auxstr = sprintflags("flags ", fdflags, in print_fcntl()
152 tcp->auxstr = sprint_open_modes(tcp->u_rval); in print_fcntl()
175 tcp->auxstr = xlookup(lockfcmds, (kernel_ulong_t) tcp->u_rval); in print_fcntl()
180 tcp->auxstr = sprintflags("seals ", f_seals, in print_fcntl()
186 tcp->auxstr = signame(tcp->u_rval); in print_fcntl()
Dprctl.c117 tcp->auxstr = xlookup(pr_dumpable, (kernel_ulong_t) tcp->u_rval); in SYS_FUNC()
147 tcp->auxstr = sprintflags("", secbits, in SYS_FUNC()
183 tcp->auxstr = sprintflags("", pr_fp_mode, in SYS_FUNC()
333 tcp->auxstr = xlookup(pr_mce_kill_policy, in SYS_FUNC()
335 return tcp->auxstr ? RVAL_STR : RVAL_UDECIMAL; in SYS_FUNC()
Dsignal.c293 tcp->auxstr = sprint_old_sigmask_val("old mask ", in SYS_FUNC()
391 tcp->auxstr = get_sa_handler_str(tcp->u_rval); in SYS_FUNC()
400 tcp->auxstr = sprint_old_sigmask_val("mask ", tcp->u_rval); in SYS_FUNC()
436 tcp->auxstr = sprintsigmask_val("old mask ", tcp->u_rval); in SYS_FUNC()
680 tcp->auxstr = signame(tcp->u_rval); in SYS_FUNC()
Dsched.c44 tcp->auxstr = xlookup(schedulers, (kernel_ulong_t) tcp->u_rval); in SYS_FUNC()
45 if (tcp->auxstr != NULL) in SYS_FUNC()
Dpoll.c83 tcp->auxstr = "Timeout"; in decode_poll_exiting()
149 tcp->auxstr = outstr; in decode_poll_exiting()
Dprint_time.c47 tcp->auxstr = sprinttime((time_t) tcp->u_rval); in SYS_FUNC()
Dmembarrier.c47 tcp->auxstr = sprintflags("", membarrier_cmds, in SYS_FUNC()
Ddesc.c139 tcp->auxstr = "Timeout"; in decode_select()
186 tcp->auxstr = outstr; in decode_select()
Dnsfs.c48 tcp->auxstr = outstr; in nsfs_ioctl()
Dmmsghdr.c236 tcp->auxstr = "Timeout"; in SYS_FUNC()
245 tcp->auxstr = str; in SYS_FUNC()
Dtime.c175 tcp->auxstr = xlookup(adjtimex_state, (kernel_ulong_t) tcp->u_rval); in do_adjtimex()
176 if (tcp->auxstr) in do_adjtimex()
Dpersonality.c67 tcp->auxstr = outstr; in SYS_FUNC()
Dalpha.c44 tcp->auxstr = outstr; in decode_getxxid()
Dioprio.c85 tcp->auxstr = sprint_ioprio(tcp->u_rval); in SYS_FUNC()
Dldt.c95 tcp->auxstr = outstr; in SYS_FUNC()
Dsyscall.c944 if ((sys_res & RVAL_STR) && tcp->auxstr) in syscall_exiting_trace()
945 tprintf(" (%s)", tcp->auxstr); in syscall_exiting_trace()
992 if ((sys_res & RVAL_STR) && tcp->auxstr) in syscall_exiting_trace()
993 tprintf(" (%s)", tcp->auxstr); in syscall_exiting_trace()
Dv4l2.c406 tcp->auxstr = outstr; in print_v4l2_requestbuffers()
957 tcp->auxstr = outstr; in print_v4l2_create_buffers()
Ddefs.h225 const char *auxstr; /* Auxiliary info from syscall (see RVAL_STR) */ member
DChangeLog-CVS473 * desc.c (sys_fcntl): Do not initialize auxstr for failed syscall.
479 print auxstr for failed syscall as well.
919 timespec which are now printed in the auxstr.
4656 * defs.h (struct tcb): Make auxstr member const.
DChangeLog12670 Unabuse struct tcb.auxstr.
12672 data between entering and exiting stages, all cases of struct tcb.auxstr
12676 instead of abusing tcp->auxstr.
14291 btrfs.c: cleanup use of tcp->auxstr.
14292 * btrfs.c (btrfs_ioctl): Reset tcp->auxstr only if it is set.
35501 * desc.c (decode_select): Set tcp->auxstr as late as possible.
/external/valgrind/helgrind/
Dhg_errors.c363 HChar* auxstr; /* optional, persistent, in tool-arena */ member
635 const HChar* auxstr, ExeContext* auxctx ) in HG_()
644 xe.XE.Misc.auxstr = auxstr ? string_table_strdup(auxstr) : NULL; in HG_()
945 if (xe->XE.Misc.auxstr) { in HG_()
946 emit(" <auxwhat>%s</auxwhat>\n", xe->XE.Misc.auxstr); in HG_()
957 if (xe->XE.Misc.auxstr) { in HG_()
958 emit(" %s\n", xe->XE.Misc.auxstr); in HG_()
Dhg_errors.h79 const HChar* auxstr,
Dhg_main.c2109 const HChar* auxstr = "Lock was previously acquired"; in evh__HG_PTHREAD_MUTEX_LOCK_PRE() local
2111 HG_(record_error_Misc_w_aux)( thr, errstr, auxstr, lk->acquired_at ); in evh__HG_PTHREAD_MUTEX_LOCK_PRE()