Searched refs:s_args (Results 1 - 14 of 14) sorted by relevance

/freebsd-9.3-release/usr.bin/truss/
H A Damd64-fbsd.c84 char **s_args; /* the printable arguments */ member in struct:freebsd_syscall
101 if (fsc->s_args) {
103 free(fsc->s_args[i]);
104 free(fsc->s_args);
200 fsc->s_args = calloc(1, (1 + fsc->nargs) * sizeof(char *));
222 fsc->s_args[i] = print_arg(&sc->args[i],
244 if (fsc->s_args[1]) {
245 free(fsc->s_args[1]);
246 fsc->s_args[1] = NULL;
250 if (fsc->s_args[
[all...]
H A Damd64-fbsd32.c86 char **s_args; /* the printable arguments */ member in struct:freebsd32_syscall
104 if (fsc->s_args) {
106 free(fsc->s_args[i]);
107 free(fsc->s_args);
201 fsc->s_args = calloc(1, (1 + fsc->nargs) * sizeof(char *));
223 fsc->s_args[i] = print_arg(&sc->args[i],
245 if (fsc->s_args[1]) {
246 free(fsc->s_args[1]);
247 fsc->s_args[1] = NULL;
251 if (fsc->s_args[
[all...]
H A Damd64-linux32.c82 char **s_args; /* the printable arguments */ member in struct:linux_syscall
98 if (fsc->s_args) {
100 free(fsc->s_args[i]);
101 free(fsc->s_args);
175 fsc->s_args = calloc(1, (1 + fsc->nargs) * sizeof(char *));
197 fsc->s_args[i] = print_arg(&sc->args[i],
219 if (fsc->s_args[1]) {
220 free(fsc->s_args[1]);
221 fsc->s_args[1] = NULL;
225 if (fsc->s_args[
[all...]
H A Di386-fbsd.c84 char **s_args; /* the printable arguments */ member in struct:freebsd_syscall
101 if (fsc->s_args) {
103 free(fsc->s_args[i]);
104 free(fsc->s_args);
194 fsc->s_args = calloc(1, (1 + fsc->nargs) * sizeof(char *));
216 fsc->s_args[i] = print_arg(&sc->args[i],
238 if (fsc->s_args[1]) {
239 free(fsc->s_args[1]);
240 fsc->s_args[1] = NULL;
244 if (fsc->s_args[
[all...]
H A Di386-linux.c82 char **s_args; /* the printable arguments */ member in struct:linux_syscall
98 if (fsc->s_args) {
100 free(fsc->s_args[i]);
101 free(fsc->s_args);
175 fsc->s_args = calloc(1, (1 + fsc->nargs) * sizeof(char *));
197 fsc->s_args[i] = print_arg(&sc->args[i],
219 if (fsc->s_args[1]) {
220 free(fsc->s_args[1]);
221 fsc->s_args[1] = NULL;
225 if (fsc->s_args[
[all...]
H A Dia64-fbsd.c83 char **s_args; /* the printable arguments */ member in struct:freebsd_syscall
100 if (fsc->s_args) {
102 free(fsc->s_args[i]);
103 free(fsc->s_args);
176 fsc->s_args = calloc(1, (1 + fsc->nargs) * sizeof(char *));
198 fsc->s_args[i] = print_arg(&sc->args[i],
220 if (fsc->s_args[1]) {
221 free(fsc->s_args[1]);
222 fsc->s_args[1] = NULL;
226 if (fsc->s_args[
[all...]
H A Dmips-fbsd.c88 char **s_args; /* the printable arguments */ member in struct:freebsd_syscall
105 if (fsc->s_args) {
107 free(fsc->s_args[i]);
108 free(fsc->s_args);
228 fsc->s_args = calloc(1, (1 + fsc->nargs) * sizeof(char *));
250 fsc->s_args[i] = print_arg(&sc->args[i],
272 if (fsc->s_args[1]) {
273 free(fsc->s_args[1]);
274 fsc->s_args[1] = NULL;
278 if (fsc->s_args[
[all...]
H A Dpowerpc-fbsd.c88 char **s_args; /* the printable arguments */ member in struct:freebsd_syscall
105 if (fsc->s_args) {
107 free(fsc->s_args[i]);
108 free(fsc->s_args);
205 fsc->s_args = calloc(1, (1 + fsc->nargs) * sizeof(char *));
227 fsc->s_args[i] = print_arg(&sc->args[i],
249 if (fsc->s_args[1]) {
250 free(fsc->s_args[1]);
251 fsc->s_args[1] = NULL;
255 if (fsc->s_args[
[all...]
H A Dpowerpc64-fbsd.c83 char **s_args; /* the printable arguments */ member in struct:freebsd_syscall
100 if (fsc->s_args) {
102 free(fsc->s_args[i]);
103 free(fsc->s_args);
193 fsc->s_args = calloc(1, (1 + fsc->nargs) * sizeof(char *));
215 fsc->s_args[i] = print_arg(&sc->args[i],
237 if (fsc->s_args[1]) {
238 free(fsc->s_args[1]);
239 fsc->s_args[1] = NULL;
243 if (fsc->s_args[
[all...]
H A Dsparc64-fbsd.c89 char **s_args; /* the printable arguments */ member in struct:freebsd_syscall
106 if (fsc->s_args) {
108 free(fsc->s_args[i]);
109 free(fsc->s_args);
222 fsc->s_args = calloc(1, (1 + fsc->nargs) * sizeof(char *));
244 fsc->s_args[i] = print_arg(&sc->args[i],
266 if (fsc->s_args[1]) {
267 free(fsc->s_args[1]);
268 fsc->s_args[1] = NULL;
272 if (fsc->s_args[
[all...]
H A Dsyscalls.c1222 char **s_args)
1253 if (s_args[i])
1254 len += fprintf(trussinfo->outfile, "%s", s_args[i]);
1268 char **s_args, int errorp, long retval, struct syscall *sc)
1285 print_syscall(trussinfo, name, nargs, s_args);
1221 print_syscall(struct trussinfo *trussinfo, const char *name, int nargs, char **s_args) argument
1267 print_syscall_ret(struct trussinfo *trussinfo, const char *name, int nargs, char **s_args, int errorp, long retval, struct syscall *sc) argument
/freebsd-9.3-release/usr.bin/xlint/lint1/
H A Dlint1.h254 #define s_args u._s_args macro
H A Ddecl.c1342 decl->s_args = args;
1366 sym->s_args = NULL;
1783 * we have remembered the params in rdsmy->s_args and compare
1806 dsym->s_args = rdsym->s_args;
2081 args = rdsym->s_args;
2240 args = funcsym->s_args;
2347 funcsym->s_args = NULL;
H A Dfunc.c233 if (!fsym->s_type->t_proto && fsym->s_args == NULL)

Completed in 82 milliseconds