Searched refs:rpc (Results 1 - 25 of 310) sorted by relevance

1234567891011>>

/freebsd-10.0-release/usr.sbin/rpc.umntall/
H A DMakefile4 PROG= rpc.umntall
5 MAN= rpc.umntall.8
6 SRCS= rpc.umntall.c mounttab.c
/freebsd-10.0-release/contrib/ofed/management/libibmad/src/
H A Dvendor.c62 ib_rpc_t rpc = {0}; local
75 rpc.mgtclass = call->mgmt_class;
77 rpc.method = call->method;
78 rpc.attr.id = call->attrid;
79 rpc.attr.mod = call->mod;
80 rpc.timeout = resp_expected ? call->timeout : 0;
81 rpc.datasz = range1 ? IB_VENDOR_RANGE1_DATA_SIZE : IB_VENDOR_RANGE2_DATA_SIZE;
82 rpc.dataoffs = range1 ? IB_VENDOR_RANGE1_DATA_OFFS : IB_VENDOR_RANGE2_DATA_OFFS;
85 rpc.oui = call->oui;
88 rpc
[all...]
H A Dserv.c54 mad_send(ib_rpc_t *rpc, ib_portid_t *dport, ib_rmpp_hdr_t *rmpp, void *data) argument
63 if (mad_build_pkt(umad, rpc, dport, rmpp, data) < 0)
67 IBWARN("data offs %d sz %d", rpc->dataoffs, rpc->datasz);
69 (char *)umad_get_mad(umad) + rpc->dataoffs, rpc->datasz);
72 if (umad_send(madrpc_portid(), mad_class_agent(rpc->mgtclass),
73 umad, IB_MAD_SIZE, rpc->timeout, 0) < 0) {
86 ib_rpc_t rpc = {0}; local
106 rpc
[all...]
H A Dsmp.c54 ib_rpc_t rpc = {0}; local
60 rpc.mgtclass = IB_SMI_DIRECT_CLASS; /* direct SMI */
62 rpc.mgtclass = IB_SMI_CLASS; /* Lid routed SMI */
64 rpc.method = IB_MAD_METHOD_SET;
65 rpc.attr.id = attrid;
66 rpc.attr.mod = mod;
67 rpc.timeout = timeout;
68 rpc.datasz = IB_SMP_DATA_SIZE;
69 rpc.dataoffs = IB_SMP_DATA_OFFS;
75 return mad_rpc(srcport, &rpc, porti
91 ib_rpc_t rpc = {0}; local
[all...]
H A Dmad.c109 mad_encode(void *buf, ib_rpc_t *rpc, ib_dr_path_t *drpath, void *data) argument
111 int is_resp = rpc->method & IB_MAD_RESPONSE;
114 mad_set_field(buf, 0, IB_MAD_METHOD_F, rpc->method);
116 mad_set_field(buf, 0, IB_MAD_CLASSVER_F, rpc->mgtclass == IB_SA_CLASS ? 2 : 1);
117 mad_set_field(buf, 0, IB_MAD_MGMTCLASS_F, rpc->mgtclass);
121 if (rpc->mgtclass == IB_SMI_DIRECT_CLASS) {
128 mad_set_field(buf, 0, IB_DRSMP_STATUS_F, rpc->rstatus);
131 mad_set_field(buf, 0, IB_MAD_STATUS_F, rpc->rstatus);
134 if (!rpc->trid)
135 rpc
171 mad_build_pkt(void *umad, ib_rpc_t *rpc, ib_portid_t *dport, ib_rmpp_hdr_t *rmpp, void *data) argument
[all...]
H A Dsa.c55 ib_rpc_t rpc = {0}; local
66 rpc.mgtclass = IB_SA_CLASS;
67 rpc.method = sa->method;
68 rpc.attr.id = sa->attrid;
69 rpc.attr.mod = sa->mod;
70 rpc.mask = sa->mask;
71 rpc.timeout = timeout;
72 rpc.datasz = IB_SA_DATA_SIZE;
73 rpc.dataoffs = IB_SA_DATA_OFFS;
74 rpc
[all...]
/freebsd-10.0-release/include/rpc/
H A Drpc.h1 /* $NetBSD: rpc.h,v 1.13 2000/06/02 22:57:56 fvdl Exp $ */
31 * from: @(#)rpc.h 1.9 88/02/08 SMI
32 * from: @(#)rpc.h 2.4 89/07/11 4.0 RPCSRC
37 * rpc.h, Just includes the billions of rpc header files necessary to
45 #include <rpc/types.h> /* some typedefs */
50 #include <rpc/xdr.h> /* generic (de)serializer */
53 #include <rpc/auth.h> /* generic authenticator (client side) */
56 #include <rpc/clnt.h> /* generic rpc stuf
[all...]
/freebsd-10.0-release/sys/rpc/
H A Drpc.h1 /* $NetBSD: rpc.h,v 1.13 2000/06/02 22:57:56 fvdl Exp $ */
31 * from: @(#)rpc.h 1.9 88/02/08 SMI
32 * from: @(#)rpc.h 2.4 89/07/11 4.0 RPCSRC
37 * rpc.h, Just includes the billions of rpc header files necessary to
45 #include <rpc/types.h> /* some typedefs */
50 #include <rpc/xdr.h> /* generic (de)serializer */
53 #include <rpc/auth.h> /* generic authenticator (client side) */
56 #include <rpc/clnt.h> /* generic rpc stuf
[all...]
/freebsd-10.0-release/lib/libc/rpc/
H A Drpc_commondata.c39 #include <rpc/rpc.h>
H A Drpcsec_gss_stub.c29 #include <rpc/rpc.h>
30 #include <rpc/rpcsec_gss.h>
H A Dpmap_prot.c49 #include <rpc/types.h>
50 #include <rpc/xdr.h>
51 #include <rpc/pmap_prot.h>
H A Dauthunix_prot.c49 #include <rpc/types.h>
50 #include <rpc/xdr.h>
51 #include <rpc/auth.h>
52 #include <rpc/auth_unix.h>
H A Dsvc_run.c40 * This is the rpc server side idle loop
47 #include <rpc/rpc.h>
53 #include <rpc/rpc.h>
/freebsd-10.0-release/libexec/rpc.rquotad/
H A DMakefile3 PROG = rpc.rquotad
5 MAN = rpc.rquotad.8
/freebsd-10.0-release/libexec/rpc.rwalld/
H A DMakefile3 PROG = rpc.rwalld
5 MAN = rpc.rwalld.8
/freebsd-10.0-release/libexec/rpc.sprayd/
H A DMakefile3 PROG = rpc.sprayd
5 MAN = rpc.sprayd.8
/freebsd-10.0-release/share/doc/psd/23.rpc/
H A DMakefile3 VOLUME= psd/23.rpc
4 SRCS= stubs rpc.prog.ms
/freebsd-10.0-release/lib/librpcsec_gss/
H A Drpcsec_gss_misc.c29 #include <rpc/rpc.h>
30 #include <rpc/rpcsec_gss.h>
/freebsd-10.0-release/sys/rpc/rpcsec_gss/
H A Drpcsec_gss_misc.c33 #include <rpc/rpc.h>
34 #include <rpc/rpcsec_gss.h>
/freebsd-10.0-release/lib/librpcsvc/
H A Drwall.c45 #include <rpc/rpc.h>
/freebsd-10.0-release/libexec/rpc.rstatd/
H A DMakefile3 PROG = rpc.rstatd
5 MAN = rpc.rstatd.8
/freebsd-10.0-release/libexec/rpc.rusersd/
H A DMakefile3 PROG = rpc.rusersd
5 MAN = rpc.rusersd.8
/freebsd-10.0-release/share/examples/sunrpc/msg/
H A Dmsg_proc.c8 #include <rpc/rpc.h> /* always need this here */
/freebsd-10.0-release/tools/regression/lib/libc/nss/
H A Dtest-getrpc.c32 #include <rpc/rpc.h>
116 free_rpcent(struct rpcent *rpc) argument
120 assert(rpc != NULL);
122 free(rpc->r_name);
124 for (cp = rpc->r_aliases; *cp; ++cp)
126 free(rpc->r_aliases);
170 sdump_rpcent(struct rpcent *rpc, char *buffer, size_t buflen) argument
176 rpc->r_name, rpc
201 rpcent_read_snapshot_func(struct rpcent *rpc, char *line) argument
280 struct rpcent *rpc; local
295 rpcent_test_correctness(struct rpcent *rpc, void *mdata) argument
331 rpcent_check_ambiguity(struct rpcent_test_data *td, struct rpcent *rpc) argument
342 struct rpcent *rpc; local
384 struct rpcent *rpc; local
407 rpcent_test_getrpcent(struct rpcent *rpc, void *mdata) argument
[all...]
/freebsd-10.0-release/usr.sbin/ypserv/
H A Dyp_svc_udp.c36 #include <rpc/rpc.h>
37 #include <rpc/svc_dg.h>

Completed in 135 milliseconds

1234567891011>>