/src/lib/libc/rpc/ |
pmap_getmaps.c | 46 * Client interface to pmap rpc service. 87 CLIENT *client; local in function:__weak_alias 94 client = clnttcp_create(address, PMAPPROG, 96 if (client != NULL) { 97 if (CLNT_CALL(client, (rpcproc_t)PMAPPROC_DUMP, 101 clnt_perror(client, "pmap_getmaps rpc problem"); 103 CLNT_DESTROY(client);
|
pmap_getport.c | 46 * Client interface to pmap rpc service. 79 remote_pmap_getport(CLIENT *client, struct pmap *parms, u_short *port) 81 if (CLNT_CALL(client, (rpcproc_t)PMAPPROC_GETPORT, (xdrproc_t)xdr_pmap, 84 clnt_geterr(client, &rpc_createerr.cf_error); 87 clnt_geterr(client, &rpc_createerr.cf_error); 89 CLNT_DESTROY(client); 92 static CLIENT * 108 CLIENT *client; local in function:pmap_getport [all...] |
pmap_rmt.c | 46 * Client interface to pmap rpc service. 95 CLIENT *client; local in function:pmap_rmtcall 104 client = clntudp_create(addr, PMAPPROG, PMAPVERS, timeout, &sock); 105 if (client != NULL) { 114 stat = CLNT_CALL(client, (rpcproc_t)PMAPPROC_CALLIT, 117 CLNT_DESTROY(client);
|
clnt_simple.c | 50 * Simplified front end to client rpc. 80 CLIENT *client; /* Client handle */ member in struct:rpc_call_private 98 if (rcp->client) 99 CLNT_DESTROY(rcp->client); 116 * This is the simplified interface to the client rpc layer. 117 * The client handle is not destroyed here and is reused for 164 rcp->client = NULL; 176 if (rcp->client) [all...] |
/src/sys/external/bsd/drm2/dist/drm/ |
drm_encoder_slave.c | 63 struct i2c_client *client; local in function:drm_i2c_encoder_init 69 client = i2c_new_device(adap, info); 70 if (!client) { 75 if (!client->dev.driver) { 80 module = client->dev.driver->owner; 86 encoder->bus_priv = client; 88 encoder_drv = to_drm_i2c_encoder_driver(to_i2c_driver(client->dev.driver)); 90 err = encoder_drv->encoder_init(client, dev, encoder); 101 i2c_unregister_device(client); 118 struct i2c_client *client = drm_i2c_encoder_get_client(drm_encoder) local in function:drm_i2c_encoder_destroy [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/engine/ |
disp.h | 22 struct nvkm_oproxy *client; member in struct:nvkm_disp
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/ |
nouveau_nvif.c | 28 * NVIF client driver - NVKM directly linked 34 #include <core/client.h> 38 #include <nvif/client.h> 53 struct nvkm_client *client = nvxx_client(priv); local in function:nvkm_client_map 56 if (tag == client->mmiot && 57 client->mmioaddr <= busaddr && 58 busaddr - client->mmioaddr <= client->mmiosz) { 59 const bus_size_t offset = busaddr - client->mmioaddr; 60 if (size > client->mmiosz - offset) 84 struct nvkm_client *client = nvxx_client(priv); local in function:nvkm_client_unmap 124 struct nvkm_client *client = priv; local in function:nvkm_client_resume 131 struct nvkm_client *client = priv; local in function:nvkm_client_suspend [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/ |
nouveau_nvkm_engine_disp_dmacnv50.c | 31 #include <core/client.h> 45 struct nvkm_client *client = oclass->client; local in function:nv50_disp_dmac_new_ 55 chan->memory = nvkm_umem_search(client, push);
|
/src/usr.bin/chpass/ |
pw_yp.c | 112 CLIENT *client; local in function:pw_yp 189 client = clnt_create(master, YPPASSWDPROG, YPPASSWDVERS, "udp"); 190 if (client == NULL) { 195 client->cl_auth = authunix_create_default(); 198 r = clnt_call(client, YPPASSWDPROC_UPDATE,
|
/src/usr.sbin/ypset/ |
ypset.c | 114 CLIENT *client; local in function:bind_tohost 134 client = clntudp_create(sin, YPBINDPROG, YPBINDVERS, tv, &sock); 135 if (client == NULL) { 139 client->cl_auth = authunix_create_default(); 141 r = clnt_call(client, YPBINDPROC_SETDOM, 146 clnt_destroy(client); 149 clnt_destroy(client);
|
/src/lib/libwrap/ |
socket.c | 4 * This module determines the type of socket (datagram, stream), the client 83 static struct sockaddr_storage client; local in function:sock_host 92 * Look up the client host address. Hal R. Brand <BRAND@addvax.llnl.gov> 93 * suggested how to get the client host info in case of UDP connections: 95 * really should verify that client.sin_family gets the value AF_INET, 102 if (request->client->sin == NULL) { 103 len = sizeof(client); 104 if (getpeername(fd, (struct sockaddr *)(void *)& client, &len) < 0) { 106 len = sizeof(client); 108 (struct sockaddr *) & client, &len) < 0) [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/ |
ifc00d.h | 40 __u8 client; member in struct:gp100_vmm_fault_cancel_v0
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/ |
oclass.h | 29 struct nvkm_client *client; member in struct:nvkm_oclass
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/ |
fault.h | 31 u8 client; member in struct:nvkm_fault_data
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/dma/ |
nouveau_nvkm_engine_dma_user.c | 31 #include <core/client.h> 41 nvkm_dmaobj_search(struct nvkm_client *client, u64 handle) 45 object = nvkm_object_search(client, handle, &nvkm_dmaobj_func); 81 struct nvkm_client *client = oclass->client; local in function:nvkm_dmaobj_ctor 117 if (!client->super) { 126 if (!client->super) 132 if (!client->super)
|
/src/usr.sbin/rbootd/ |
parseconf.c | 87 CLIENT *client; local in function:ParseConfig 108 * when actually linking the new client into the list, but 125 * For each line, parse it into a new CLIENT struct. 151 if ((client = NewClient(addr)) == NULL) /* alloc new client */ 164 client->files[i] = BootFiles[i]; 170 * it in the CLIENT's list of boot files. 180 client->files[i++] = 198 FreeClient(client); [all...] |
rbootd.c | 222 CLIENT *client; local in function:main 235 * client to NULL (ProcessPacket() handles 241 client = NULL; 242 } else if ((client=FindClient(&rconn))==NULL) { 250 ProcessPacket(&rconn,client); 291 ** FindClient -- Find client associated with a packet. 297 ** Pointer to client info if found, NULL otherwise. 307 CLIENT * 310 CLIENT *ctmp [all...] |
/src/usr.sbin/yppoll/ |
yppoll.c | 81 static CLIENT *mkclient(struct sockaddr_in *, unsigned long, unsigned long, 147 static CLIENT * 170 CLIENT *client; local in function:get_remote_info 185 client = mkclient(&rsrv_sin, YPPROG, YPVERS, tcp); 186 if (client == NULL) 198 r = clnt_call(client, (unsigned int)YPPROC_ORDER, xdr_ypreq_nokey, 201 clnt_perror(client, "yp_order: clnt_call"); 210 r = clnt_call(client, (unsigned int)YPPROC_MASTER, 213 clnt_perror(client, "yp_master: clnt_call") [all...] |
/src/lib/libquota/ |
quota_nfs.c | 104 CLIENT *client = NULL; local in function:callaurpc 115 if ((client = clntudp_create(&server_addr, prognum, 119 client->cl_auth = authunix_create_default(); 122 clnt_stat = clnt_call(client, procnum, inproc, in,
|
/src/sys/external/bsd/drm/dist/bsd-core/ |
drm_ioctl.c | 185 struct drm_client *client = data; local in function:drm_getclient 190 idx = client->idx; 194 client->auth = pt->authenticated; 195 client->pid = pt->pid; 196 client->uid = pt->uid; 197 client->magic = pt->magic; 198 client->iocs = pt->ioctl_count;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/ |
nouveau_nvif_notify.c | 30 #include <nvif/client.h> 132 struct nvif_client *client = notify->object->client; local in function:nvif_notify 141 ret = nvif_notify_func(notify, client->driver->keep);
|
/src/tests/net/net/ |
t_pktinfo.c | 88 client(struct sockaddr_in *sin) { function in typeref:typename:int 161 c = client(&sin);
|
/src/usr.sbin/altq/altqd/ |
altqd.c | 119 FILE *fp, *client[MAX_CLIENT]; local in function:main 125 client[i] = NULL; 272 * quip connection request from client via unix 284 if (client[i] == NULL) { 285 client[i] = fdopen(newsock, "r+"); 291 * check input from a client via unix domain socket 296 if (client[i] == NULL) 298 fd1 = fileno(client[i]); 300 if (quip_input(client[i]) != 0 || 301 fflush(client[i]) != 0) [all...] |
/src/usr.sbin/tcpdmatch/ |
tcpdmatch.c | 66 char *client; local in function:main 126 * Default is to specify a client hostname or address. When user@host is 129 if ((client = split_at(argv[optind + 1], '@')) != 0) { 132 client = argv[optind + 1]; 208 * If a client address is specified, we simulate the effect of client 211 res0 = find_inet_addr(client, AI_NUMERICHOST); 222 * Perhaps they are testing special client hostname patterns that aren't 225 if (NOT_INADDR(client) && HOSTNAME_KNOWN(client) == 0) [all...] |
/src/usr.sbin/ypserv/common/ |
yplib_host.c | 61 CLIENT * 68 static CLIENT *client; local in function:yp_bind_host 92 client = clnttcp_create(&rsrv_sin, program, version, 95 client = clntudp_create(&rsrv_sin, program, version, 98 if (client == NULL) 102 return(client); 105 CLIENT * 110 static CLIENT *client; local in function:yp_bind_local [all...] |