HomeSort by relevance Sort by last modified time
    Searched refs:xargs (Results 1 - 25 of 46) sorted by null

1 2

  /onnv/onnv-gate/usr/src/cmd/xargs/
Makefile 28 PROG= xargs
29 # /usr/xpg6/bin/xargs is a symlink to /usr/bin/xargs
30 ROOTXPG6SYMLINK= $(ROOTXPG6BIN)/xargs
32 OBJS1= xargs.o
  /onnv/onnv-gate/usr/src/lib/libbc/inc/include/rpc/
svc.h 96 * xdrproc_t xargs;
109 #define SVC_GETARGS(xprt, xargs, argsp) \
110 (*(xprt)->xp_ops->xp_getargs)((xprt), (xargs), (argsp))
111 #define svc_getargs(xprt, xargs, argsp) \
112 (*(xprt)->xp_ops->xp_getargs)((xprt), (xargs), (argsp))
119 #define SVC_FREEARGS(xprt, xargs, argsp) \
120 (*(xprt)->xp_ops->xp_freeargs)((xprt), (xargs), (argsp))
121 #define svc_freeargs(xprt, xargs, argsp) \
122 (*(xprt)->xp_ops->xp_freeargs)((xprt), (xargs), (argsp))
clnt.h 130 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
133 * xdrproc_t xargs;
139 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \
140 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
141 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \
142 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
  /onnv/onnv-gate/usr/src/lib/libnsl/rpc/
svid_funcs.c 69 clnt_call(CLIENT *cl, uint32_t proc, xdrproc_t xargs, caddr_t argsp,
72 return ((*(cl)->cl_ops->cl_call)(cl, proc, xargs, argsp, xres, resp,
77 clnt_send(CLIENT *cl, uint32_t proc, xdrproc_t xargs, caddr_t argsp)
79 return ((*(cl)->cl_ops->cl_send)(cl, proc, xargs, argsp));
131 svc_freeargs(SVCXPRT *xprt, xdrproc_t xargs, char *argsp)
133 return ((*(xprt)->xp_ops->xp_freeargs)(xprt, xargs, argsp));
137 svc_getargs(SVCXPRT *xprt, xdrproc_t xargs, char *argsp)
139 return ((*(xprt)->xp_ops->xp_getargs)(xprt, xargs, argsp));
clnt_raw.c 144 clnt_raw_call(CLIENT *h, rpcproc_t proc, xdrproc_t xargs, caddr_t argsp,
173 (!(*xargs)(xdrs, argsp)))
228 clnt_raw_send(CLIENT *h, rpcproc_t proc, xdrproc_t xargs, caddr_t argsp)
252 (!(*xargs)(xdrs, argsp)))
clnt_bcast.c 102 const rpcproc_t proc, const xdrproc_t xargs, caddr_t argsp,
273 barg.xdr_args = xargs;
304 barg_pmap.xdr_args = xargs;
630 const xdrproc_t xargs, caddr_t argsp, xdrproc_t const xresults,
633 return (rpc_broadcast_exp(prog, vers, proc, xargs, argsp,
clnt_door.c 175 clnt_door_call(CLIENT *cl, rpcproc_t proc, xdrproc_t xargs, caddr_t argsp,
216 (!(*xargs)(&xdrs, argsp))) {
298 clnt_door_send(CLIENT *cl, rpcproc_t proc, xdrproc_t xargs, caddr_t argsp)
  /onnv/onnv-gate/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
ldap_principal2.c 216 free_xargs(xargs)
217 xargs_t xargs;
219 if (xargs.dn)
220 free (xargs.dn);
221 if (xargs.linkdn)
222 free(xargs.linkdn);
223 if (xargs.containerdn)
224 free (xargs.containerdn);
225 if (xargs.tktpolicydn)
226 free (xargs.tktpolicydn)
474 xargs_t xargs = {0}; local
    [all...]
  /onnv/onnv-gate/usr/src/pkgdefs/common_files/
i.initd 151 ) | xargs $REMOVEF $PKGINST 2>/dev/null | xargs rm -f
i.ftpusers 51 | xargs rm -f
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWxcu6/
prototype_com 65 s none usr/xpg6/bin/xargs=../../bin/xargs
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWcsd/
preinstall 34 grep -v '.*@[0-9][0-9]*:*' | xargs rm -f >/dev/null 2>&1
  /onnv/onnv-gate/usr/src/cmd/svc/milestone/
rmtmpfiles 83 /usr/bin/xargs /usr/bin/rm -rf -- 2>/dev/null
  /onnv/onnv-gate/usr/src/uts/common/rpc/
svc.h 522 #define SVC_GETARGS(clone_xprt, xargs, argsp) \
523 (*(clone_xprt)->xp_ops->xp_getargs)((clone_xprt), (xargs), (argsp))
528 #define SVC_FREEARGS(clone_xprt, xargs, argsp) \
529 (*(clone_xprt)->xp_ops->xp_freeargs)((clone_xprt), (xargs), (argsp))
579 #define SVC_GETARGS(xprt, xargs, argsp) \
580 (*(xprt)->xp_ops->xp_getargs)((xprt), (xargs), (argsp))
581 #define svc_getargs(xprt, xargs, argsp) \
582 (*(xprt)->xp_ops->xp_getargs)((xprt), (xargs), (argsp))
589 #define SVC_FREEARGS(xprt, xargs, argsp) \
590 (*(xprt)->xp_ops->xp_freeargs)((xprt), (xargs), (argsp)
    [all...]
clnt.h 519 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
522 * xdrproc_t xargs;
533 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \
534 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
535 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \
536 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
541 * CLNT_SEND(rh, proc, xargs, argsp)
544 * xdrproc_t xargs;
549 #define CLNT_SEND(rh, proc, xargs, argsp) \
550 ((*(rh)->cl_ops->cl_send)(rh, proc, xargs, argsp)
    [all...]
  /onnv/onnv-gate/usr/src/stand/lib/fs/nfs/
clnt.h 96 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
99 * xdrproc_t xargs;
105 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \
106 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
clnt_budp.c 227 clntbudp_call(cl, proc, xargs, argsp, xresults, resultsp, utimeout)
230 xdrproc_t xargs; /* xdr routine for args */
282 (! (*xargs)(xdrs, argsp)))
  /onnv/onnv-gate/usr/src/lib/libdtrace/common/
dt_provider.c 235 dt_node_t *xargs, *nargs; local
276 xargs = dt_probe_alloc_args(pvp, xc);
279 if ((xc != 0 && xargs == NULL) || (nc != 0 && nargs == NULL))
292 nargs, nc, xargs, xc)) == NULL) {
391 dt_node_t *nargs, uint_t nargc, dt_node_t *xargs, uint_t xargc)
404 * and xargs be specified but set to NULL, indicating a void prototype.
407 assert(xargs == NULL);
409 xargs = nargs;
426 prp->pr_xargs = xargs;
442 for (i = 0; i < xargc; i++, xargs = xargs->dn_list)
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun4u/starfire/io/
idn_proto.c 88 idn_xdcargs_t xargs);
97 idn_xdcargs_t xargs);
99 idn_xdcargs_t xargs);
177 idn_xdcargs_t xargs);
197 idn_xdcargs_t xargs);
203 idn_xdcargs_t xargs);
205 idn_xdcargs_t xargs);
207 idn_xdcargs_t xargs);
209 idn_xdcargs_t xargs);
211 idn_xdcargs_t xargs);
819 idn_xdcargs_t xargs; local
862 idn_xdcargs_t xargs; local
1591 idn_xdcargs_t xargs; local
2608 idn_xdcargs_t xargs; local
3230 idn_xdcargs_t xargs; local
7475 idn_xdcargs_t xargs; local
    [all...]
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWsndmr/
postinstall 89 xargs rmdir > /dev/null 2>&1
  /onnv/onnv-gate/usr/src/tools/scripts/
bindrop.sh 270 (cd "$tmpdir/closed/$rootdir"; cat "$tmpdir/deleteme" | xargs rm -f)
299 sort -r | xargs -l rmdir 2>/dev/null )
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
ftpconfig.sh 265 xargs chmod 444)
273 (cd "$home_dir"; find $dir -type d | xargs chmod 111)
274 (cd "$home_dir"; find $dir -type d | xargs chown root:bin)
  /onnv/onnv-gate/usr/src/cmd/dircmp/
dircmp.sh 162 cat $TEMPDIR/dc$$f | xargs ls -lLgnd | \
168 cat $TEMPDIR/dc$$f | xargs ls -lLgnd | \
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWusb/
postinstall 110 nawk '{print $9, $11}' | xargs rm -f
  /onnv/onnv-gate/usr/src/cmd/avs/dscfg/
dscfgadm.sh 243 grep "^dsvol:" | cut -d' ' -f3 | sort | uniq | xargs`
1266 modinfo | grep '(nws:' | grep -v "kRPC Stub" | sort -r | cut -d' ' -f1 | xargs -l modunload -i 2>/dev/null
1267 modinfo | grep '(nws:' | grep -v "kRPC Stub" | sort -r | cut -d' ' -f1 | xargs -l modunload -i 2>/dev/null

Completed in 720 milliseconds

1 2