Lines Matching refs:rptr
29 output_rpcent (const char *call, struct rpcent *rptr) in output_rpcent() argument
33 if (rptr == NULL) in output_rpcent()
38 call, rptr->r_name, rptr->r_number); in output_rpcent()
39 for (pptr = rptr->r_aliases; *pptr != NULL; pptr++) in output_rpcent()
47 struct rpcent *rptr; in test_rpc() local
49 rptr = getrpcbyname ("portmap"); in test_rpc()
50 output_rpcent ("getrpcyname (\"portmap\")", rptr); in test_rpc()
52 rptr = getrpcbynumber (100000); in test_rpc()
53 output_rpcent ("getrpcbynumber (100000)", rptr); in test_rpc()
58 rptr = getrpcent (); in test_rpc()
59 output_rpcent ("getrpcent ()", rptr); in test_rpc()
61 while (rptr != NULL); in test_rpc()