Searched refs:auxstr (Results 1 - 20 of 20) sorted by relevance
/external/strace/ |
H A D | membarrier.c | 46 tcp->auxstr = sprintflags("", membarrier_cmds, tcp->u_rval);
|
H A D | file_handle.c | 68 * Abusing tcp->auxstr as a temporary storage. 71 tcp->auxstr = (void *) (unsigned long) h.handle_bytes; 75 unsigned int i = (unsigned long) tcp->auxstr; 96 tcp->auxstr = NULL;
|
H A D | fcntl.c | 143 tcp->auxstr = sprintflags("flags ", fdflags, tcp->u_rval); 148 tcp->auxstr = sprint_open_modes(tcp->u_rval); 171 tcp->auxstr = xlookup(lockfcmds, tcp->u_rval); 176 tcp->auxstr = sprintflags("seals ", f_seals, tcp->u_rval); 181 tcp->auxstr = signame(tcp->u_rval);
|
H A D | ioprio.c | 84 tcp->auxstr = sprint_ioprio(tcp->u_rval);
|
H A D | personality.c | 67 tcp->auxstr = outstr;
|
H A D | sched.c | 42 tcp->auxstr = xlookup(schedulers, tcp->u_rval); 43 if (tcp->auxstr != NULL)
|
H A D | ldt.c | 94 tcp->auxstr = outstr;
|
H A D | signal.c | 254 tcp->auxstr = sprintsigmask_val("old mask ", tcp->u_rval); 380 tcp->auxstr = "SIG_ERR"; break; 382 tcp->auxstr = "SIG_DFL"; break; 384 tcp->auxstr = "SIG_IGN"; break; 386 tcp->auxstr = NULL; 398 tcp->auxstr = sprintsigmask_val("mask ", tcp->u_rval); 432 tcp->auxstr = sprintsigmask_val("old mask ", tcp->u_rval);
|
H A D | poll.c | 114 tcp->auxstr = "Timeout"; 185 tcp->auxstr = outstr;
|
H A D | prctl.c | 125 tcp->auxstr = sprintflags("", secbits, tcp->u_rval); 299 tcp->auxstr = xlookup(pr_mce_kill_policy, tcp->u_rval); 300 return tcp->auxstr ? RVAL_STR : RVAL_UDECIMAL;
|
H A D | desc.c | 145 tcp->auxstr = "Timeout"; 193 tcp->auxstr = outstr;
|
H A D | time.c | 174 tcp->auxstr = xlookup(adjtimex_state, tcp->u_rval); 175 if (tcp->auxstr)
|
H A D | v4l2.c | 355 || (exiting(tcp) && tcp->auxstr && !syserror(tcp))) { 358 tcp->auxstr = (c.id & V4L2_CTRL_FLAG_NEXT_CTRL) ? "" : NULL; 359 if (tcp->auxstr) { 617 tcp->auxstr = outstr; 641 tcp->auxstr = outstr;
|
H A D | syscall.c | 1046 if ((sys_res & RVAL_STR) && tcp->auxstr) 1047 tprintf(" (%s)", tcp->auxstr); 1103 if ((sys_res & RVAL_STR) && tcp->auxstr) 1104 tprintf(" (%s)", tcp->auxstr);
|
H A D | net.c | 1025 /* Abusing tcp->auxstr as temp storage. 1028 tcp->auxstr = sprint_timespec(tcp, tcp->u_arg[4]); 1041 tprints(tcp->auxstr); 1042 tcp->auxstr = NULL; 1047 tcp->auxstr = "Timeout"; 1055 tcp->auxstr = str;
|
H A D | defs.h | 303 const char *auxstr; /* Auxiliary info from syscall (see RVAL_STR) */ member in struct:tcb 394 #define RVAL_STR 020 /* Print `auxstr' field after return val */
|
/external/valgrind/coregrind/m_syswrap/ |
H A D | priv_types_n_macros.h | 221 Since these names exist in the global namespace, 'auxstr' should 234 #define DEFN_PRE_TEMPLATE(auxstr, name) \ 235 void vgSysWrap_##auxstr##_##name##_before \ 243 #define DEFN_POST_TEMPLATE(auxstr, name) \ 244 void vgSysWrap_##auxstr##_##name##_after \ 255 #define DECL_TEMPLATE(auxstr, name) \ 257 void vgSysWrap_##auxstr##_##name##_before \ 265 void vgSysWrap_##auxstr##_##name##_after \ 276 #define WRAPPER_ENTRY_X_(auxstr, sysno, name) \ 277 [sysno] = { vgSysWrap_##auxstr## [all...] |
/external/valgrind/helgrind/ |
H A D | hg_errors.h | 79 const HChar* auxstr,
|
H A D | hg_errors.c | 363 HChar* auxstr; /* optional, persistent, in tool-arena */ member in struct:__anon19789::__anon19790::__anon19797 635 const HChar* auxstr, ExeContext* auxctx ) 644 xe.XE.Misc.auxstr = auxstr ? string_table_strdup(auxstr) : NULL; 945 if (xe->XE.Misc.auxstr) { 946 emit(" <auxwhat>%s</auxwhat>\n", xe->XE.Misc.auxstr); 957 if (xe->XE.Misc.auxstr) { 958 emit(" %s\n", xe->XE.Misc.auxstr); 634 record_error_Misc_w_aux( Thread* thr, const HChar* errstr, const HChar* auxstr, ExeContext* auxctx ) argument
|
H A D | hg_main.c | 2107 const HChar* auxstr = "Lock was previously acquired"; local 2109 HG_(record_error_Misc_w_aux)( thr, errstr, auxstr, lk->acquired_at );
|
Completed in 359 milliseconds