Home
last modified time | relevance | path

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

/external/valgrind/coregrind/m_syswrap/
Dpriv_types_n_macros.h234 #define DEFN_PRE_TEMPLATE(auxstr, name) \ argument
235 void vgSysWrap_##auxstr##_##name##_before \
243 #define DEFN_POST_TEMPLATE(auxstr, name) \ argument
244 void vgSysWrap_##auxstr##_##name##_after \
255 #define DECL_TEMPLATE(auxstr, name) \ argument
257 void vgSysWrap_##auxstr##_##name##_before \
265 void vgSysWrap_##auxstr##_##name##_after \
276 #define WRAPPER_ENTRY_X_(auxstr, sysno, name) \ argument
277 [sysno] = { vgSysWrap_##auxstr##_##name##_before, NULL }
278 #define WRAPPER_ENTRY_XY(auxstr, sysno, name) \ argument
[all …]
/external/strace/
Dfcntl.c143 tcp->auxstr = sprintflags("flags ", fdflags, tcp->u_rval); in print_fcntl()
148 tcp->auxstr = sprint_open_modes(tcp->u_rval); in print_fcntl()
171 tcp->auxstr = xlookup(lockfcmds, tcp->u_rval); in print_fcntl()
176 tcp->auxstr = sprintflags("seals ", f_seals, tcp->u_rval); in print_fcntl()
181 tcp->auxstr = signame(tcp->u_rval); in print_fcntl()
Dfile_handle.c71 tcp->auxstr = (void *) (unsigned long) h.handle_bytes; in SYS_FUNC()
75 unsigned int i = (unsigned long) tcp->auxstr; in SYS_FUNC()
96 tcp->auxstr = NULL; in SYS_FUNC()
Dsignal.c254 tcp->auxstr = sprintsigmask_val("old mask ", tcp->u_rval); in SYS_FUNC()
380 tcp->auxstr = "SIG_ERR"; break; in SYS_FUNC()
382 tcp->auxstr = "SIG_DFL"; break; in SYS_FUNC()
384 tcp->auxstr = "SIG_IGN"; break; in SYS_FUNC()
386 tcp->auxstr = NULL; in SYS_FUNC()
398 tcp->auxstr = sprintsigmask_val("mask ", tcp->u_rval); in SYS_FUNC()
432 tcp->auxstr = sprintsigmask_val("old mask ", tcp->u_rval); in SYS_FUNC()
Dprctl.c125 tcp->auxstr = sprintflags("", secbits, tcp->u_rval); in SYS_FUNC()
299 tcp->auxstr = xlookup(pr_mce_kill_policy, tcp->u_rval); in SYS_FUNC()
300 return tcp->auxstr ? RVAL_STR : RVAL_UDECIMAL; in SYS_FUNC()
Dsched.c42 tcp->auxstr = xlookup(schedulers, tcp->u_rval); in SYS_FUNC()
43 if (tcp->auxstr != NULL) in SYS_FUNC()
Dv4l2.c355 || (exiting(tcp) && tcp->auxstr && !syserror(tcp))) { in v4l2_ioctl()
358 tcp->auxstr = (c.id & V4L2_CTRL_FLAG_NEXT_CTRL) ? "" : NULL; in v4l2_ioctl()
359 if (tcp->auxstr) { in v4l2_ioctl()
617 tcp->auxstr = outstr; in v4l2_ioctl()
641 tcp->auxstr = outstr; in v4l2_ioctl()
Dpoll.c114 tcp->auxstr = "Timeout"; in decode_poll_exiting()
185 tcp->auxstr = outstr; in decode_poll_exiting()
Dmembarrier.c46 tcp->auxstr = sprintflags("", membarrier_cmds, tcp->u_rval); in SYS_FUNC()
Ddesc.c145 tcp->auxstr = "Timeout"; in decode_select()
193 tcp->auxstr = outstr; in decode_select()
Dpersonality.c67 tcp->auxstr = outstr; in SYS_FUNC()
Dtime.c174 tcp->auxstr = xlookup(adjtimex_state, tcp->u_rval); in do_adjtimex()
175 if (tcp->auxstr) in do_adjtimex()
Dioprio.c84 tcp->auxstr = sprint_ioprio(tcp->u_rval); in SYS_FUNC()
Dldt.c94 tcp->auxstr = outstr; in SYS_FUNC()
Dsyscall.c1046 if ((sys_res & RVAL_STR) && tcp->auxstr) in trace_syscall_exiting()
1047 tprintf(" (%s)", tcp->auxstr); in trace_syscall_exiting()
1103 if ((sys_res & RVAL_STR) && tcp->auxstr) in trace_syscall_exiting()
1104 tprintf(" (%s)", tcp->auxstr); in trace_syscall_exiting()
Dnet.c1028 tcp->auxstr = sprint_timespec(tcp, tcp->u_arg[4]); in SYS_FUNC()
1041 tprints(tcp->auxstr); in SYS_FUNC()
1042 tcp->auxstr = NULL; in SYS_FUNC()
1047 tcp->auxstr = "Timeout"; in SYS_FUNC()
1055 tcp->auxstr = str; in SYS_FUNC()
Ddefs.h303 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.
/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.c2107 const HChar* auxstr = "Lock was previously acquired"; in evh__HG_PTHREAD_MUTEX_LOCK_PRE() local
2109 HG_(record_error_Misc_w_aux)( thr, errstr, auxstr, lk->acquired_at ); in evh__HG_PTHREAD_MUTEX_LOCK_PRE()