/external/valgrind/coregrind/m_syswrap/ |
D | priv_types_n_macros.h | 234 #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/ |
D | fcntl.c | 143 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()
|
D | file_handle.c | 71 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()
|
D | signal.c | 254 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()
|
D | prctl.c | 125 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()
|
D | sched.c | 42 tcp->auxstr = xlookup(schedulers, tcp->u_rval); in SYS_FUNC() 43 if (tcp->auxstr != NULL) in SYS_FUNC()
|
D | v4l2.c | 355 || (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()
|
D | poll.c | 114 tcp->auxstr = "Timeout"; in decode_poll_exiting() 185 tcp->auxstr = outstr; in decode_poll_exiting()
|
D | membarrier.c | 46 tcp->auxstr = sprintflags("", membarrier_cmds, tcp->u_rval); in SYS_FUNC()
|
D | desc.c | 145 tcp->auxstr = "Timeout"; in decode_select() 193 tcp->auxstr = outstr; in decode_select()
|
D | personality.c | 67 tcp->auxstr = outstr; in SYS_FUNC()
|
D | time.c | 174 tcp->auxstr = xlookup(adjtimex_state, tcp->u_rval); in do_adjtimex() 175 if (tcp->auxstr) in do_adjtimex()
|
D | ioprio.c | 84 tcp->auxstr = sprint_ioprio(tcp->u_rval); in SYS_FUNC()
|
D | ldt.c | 94 tcp->auxstr = outstr; in SYS_FUNC()
|
D | syscall.c | 1046 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()
|
D | net.c | 1028 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()
|
D | defs.h | 303 const char *auxstr; /* Auxiliary info from syscall (see RVAL_STR) */ member
|
D | ChangeLog-CVS | 473 * 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/ |
D | hg_errors.c | 363 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_()
|
D | hg_errors.h | 79 const HChar* auxstr,
|
D | hg_main.c | 2107 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()
|