/src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/ |
nouveau_nvif_client.c | 30 #include <nvif/client.h> 38 nvif_client_ioctl(struct nvif_client *client, void *data, u32 size) 40 return client->driver->ioctl(client->object.priv, client->super, data, size, NULL); 44 nvif_client_suspend(struct nvif_client *client) 46 return client->driver->suspend(client->object.priv); 50 nvif_client_resume(struct nvif_client *client) 52 return client->driver->resume(client->object.priv) [all...] |
nouveau_nvif_driver.c | 30 #include <nvif/client.h> 46 const char *name, u64 device, struct nvif_client *client) 50 for (i = 0; (client->driver = nvif_driver[i]); i++) { 51 if (!drv || !strcmp(client->driver->name, drv)) { 52 ret = client->driver->init(name, device, cfg, dbg, 53 &client->object.priv); 56 client->driver->fini(client->object.priv); 61 ret = nvif_client_init(client, name, device, client); [all...] |
nouveau_nvif_object.c | 31 #include <nvif/client.h> 38 struct nvif_client *client = object->client; local in function:nvif_object_ioctl 44 if (object != &client->object) 52 return client->driver->ioctl(client->object.priv, client->super, 228 struct nvif_client *client = object->client; local in function:nvif_object_unmap 232 client->driver->unmap(client, object->map.tag 251 struct nvif_client *client = object->client; local in function:nvif_object_map [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/ |
nouveau_nvkm_core_client.c | 29 #include <core/client.h> 46 struct nvkm_client *client; local in function:nvkm_uclient_new 52 NULL, oclass->client->ntfy, &client); 58 client->object.client = oclass->client; 59 client->object.handle = oclass->handle; 60 client->object.route = oclass->route; 61 client->object.token = oclass->token 77 struct nvkm_client *client; member in struct:nvkm_client_notify 90 struct nvkm_client *client = notify->client; local in function:nvkm_client_notify 136 struct nvkm_client *client = object->client; local in function:nvkm_client_notify_new 225 struct nvkm_client *client = nvkm_client(object); local in function:nvkm_client_mthd 263 struct nvkm_client *client = nvkm_client(object); local in function:nvkm_client_fini 275 struct nvkm_client *client = nvkm_client(object); local in function:nvkm_client_dtor 333 struct nvkm_client *client; local in function:nvkm_client_new [all...] |
/src/usr.sbin/ypserv/common/ |
yplib_host.h | 32 int yp_match_host(CLIENT *client, char *indomain, char *inmap, 35 int yp_first_host(CLIENT *client, char *indomain, char *inmap, 38 int yp_next_host(CLIENT *client, char *indomain, char *inmap, 41 int yp_master_host(CLIENT *client, 43 int yp_order_host(CLIENT *client, [all...] |
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...] |
/src/lib/libc/rpc/ |
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...] |
rpcb_clnt.c | 114 static CLIENT *getclnthandle(const char *, const struct netconfig *, char **); 115 static CLIENT *local_rpcb(void); 301 * This routine will return a client handle that is connected to the 304 static CLIENT * 307 CLIENT *client; local in function:getclnthandle 322 client = NULL; 329 client = clnt_tli_create(RPC_ANYFD, nconf, addr, 331 if (client != NULL) { 335 return (client); 433 CLIENT *client; local in function:local_rpcb 536 CLIENT *client; local in function:rpcb_set 594 CLIENT *client; local in function:rpcb_unset 680 CLIENT *client = NULL; local in function:__rpcb_findaddr 1016 CLIENT *client; local in function:rpcb_getmaps 1076 CLIENT *client; local in function:rpcb_rmtcall 1143 CLIENT *client = NULL; local in function:rpcb_gettime 1202 CLIENT *client; local in function:rpcb_taddr2uaddr 1237 CLIENT *client; local in function:rpcb_uaddr2taddr [all...] |
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);
|
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...] |
auth_none.c | 46 * Creates a client authentication handle for passing "null" 120 authnone_marshal(AUTH *client, XDR *xdrs) 134 authnone_verf(AUTH *client) 140 authnone_validate(AUTH *client, struct opaque_auth *auth) 148 authnone_refresh(AUTH *client) 156 authnone_destroy(AUTH *client)
|
/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/i2c/ |
sil164_drv.c | 51 #define sil164_dbg(client, format, ...) do { \ 53 dev_printk(KERN_DEBUG, &client->dev, \ 56 #define sil164_info(client, format, ...) \ 57 dev_info(&client->dev, format, __VA_ARGS__) 58 #define sil164_err(client, format, ...) \ 59 dev_err(&client->dev, format, __VA_ARGS__) 111 sil164_write(struct i2c_client *client, uint8_t addr, uint8_t val) 116 ret = i2c_master_send(client, buf, ARRAY_SIZE(buf)); 118 sil164_err(client, "Error %d writing to subaddress 0x%x\n", 123 sil164_read(struct i2c_client *client, uint8_t addr 299 struct i2c_client *client = drm_i2c_encoder_get_client(encoder); local in function:sil164_encoder_detect [all...] |
ch7006_drv.c | 60 struct i2c_client *client = drm_i2c_encoder_get_client(encoder); local in function:ch7006_encoder_dpms 64 ch7006_dbg(client, "\n"); 72 ch7006_load_reg(client, state, CH7006_POWER); 77 struct i2c_client *client = drm_i2c_encoder_get_client(encoder); local in function:ch7006_encoder_save 80 ch7006_dbg(client, "\n"); 82 ch7006_state_save(client, &priv->saved_state); 87 struct i2c_client *client = drm_i2c_encoder_get_client(encoder); local in function:ch7006_encoder_restore 90 ch7006_dbg(client, "\n"); 92 ch7006_state_load(client, &priv->saved_state); 122 struct i2c_client *client = drm_i2c_encoder_get_client(encoder) local in function:ch7006_encoder_mode_set 185 struct i2c_client *client = drm_i2c_encoder_get_client(encoder); local in function:ch7006_encoder_detect 291 struct i2c_client *client = drm_i2c_encoder_get_client(encoder); local in function:ch7006_encoder_set_property 434 struct i2c_client *client = to_i2c_client(dev); local in function:ch7006_resume [all...] |
ch7006_mode.c | 207 struct i2c_client *client = drm_i2c_encoder_get_client(encoder); local in function:ch7006_setup_levels 233 ch7006_dbg(client, "black level: %d\n", black_level); 238 struct i2c_client *client = drm_i2c_encoder_get_client(encoder); local in function:ch7006_setup_subcarrier 257 ch7006_dbg(client, "subcarrier inc: %u\n", subc_inc); 262 struct i2c_client *client = drm_i2c_encoder_get_client(encoder); local in function:ch7006_setup_pll 294 ch7006_dbg(client, "n=%d m=%d f=%d c=%d\n", 333 struct i2c_client *client = drm_i2c_encoder_get_client(encoder); local in function:ch7006_setup_properties 369 ch7006_dbg(client, "hpos: %d, vpos: %d\n", hpos, vpos); 374 void ch7006_write(struct i2c_client *client, uint8_t addr, uint8_t val) 379 ret = i2c_master_send(client, buf, ARRAY_SIZE(buf)) [all...] |
/src/sys/external/bsd/drm2/drm/ |
drm_client.c | 43 drm_client_init(struct drm_device *dev, struct drm_client_dev *client, 48 client->dev = dev; 50 ret = drm_client_modeset_create(client); 61 drm_client_register(struct drm_client_dev *client) 66 drm_client_release(struct drm_client_dev *client) 69 drm_client_modeset_free(client); 70 drm_dev_put(client->dev); 89 drm_client_framebuffer_create(struct drm_client_dev *client,
|
/src/tests/net/net/ |
t_pktinfo_send.c | 162 try_sendmsg_pktinfo(int client, int server, const char *data, size_t datalen, 170 RL(rv = sendto_pktinfo(client, data, datalen, 0, 183 do_send_pktinfo_tests(int client, int server, const char *data, size_t datalen) 193 RL(rv = rump_sys_getsockname(client, 200 try_sendmsg_pktinfo(client, server, data, datalen, 202 try_sendmsg_pktinfo(client, server, data, datalen, 204 try_sendmsg_pktinfo(client, server, data, datalen, 206 try_sendmsg_pktinfo(client, server, data, datalen, 211 RL(rv = rump_sys_getsockname(client, 229 int client, server local in function:ATF_TC_BODY 252 int client, server, rv; local in function:ATF_TC_BODY 276 int client, server, rv; local in function:ATF_TC_BODY 300 int client, server, rv; local in function:ATF_TC_BODY 324 int client, server, rv; local in function:ATF_TC_BODY 348 int client, server, other, rv; local in function:ATF_TC_BODY 375 int client, server, rv; local in function:ATF_TC_BODY 411 int client, server, rv; local in function:ATF_TC_BODY 443 int client, server, rv; local in function:ATF_TC_BODY 492 int client, server; local in function:ATF_TC_BODY 524 int client, rv; local in function:ATF_TC_BODY 559 int client, rv; local in function:ATF_TC_BODY 620 int client, rv; local in function:ATF_TC_BODY 716 int client, rv; local in function:ATF_TC_BODY [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/share/examples/racoon/roadwarrior/client/ |
Makefile | 9 FILESDIR=/usr/share/examples/racoon/roadwarrior/client 13 .PATH: ${DIST}/src/racoon/samples/roadwarrior/client
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/therm/ |
nouveau_nvkm_subdev_therm_ic.c | 43 struct i2c_client *client; 47 client = i2c_new_device(&bus->i2c, info); 48 if (!client) 51 if (!client->dev.driver || 52 to_i2c_driver(client->dev.driver)->detect(client, info)) { 53 i2c_unregister_device(client); 61 therm->ic = client;
|
/src/sys/external/bsd/drm2/linux/ |
linux_i2c.c | 62 * Client operations: operations with a particular i2c slave device. 68 struct i2c_client *client; 70 client = kmem_alloc(sizeof(*client), KM_SLEEP); 71 client->adapter = adapter; 72 client->addr = info->addr; 73 client->flags = info->flags; 75 return client; 79 i2c_unregister_device(struct i2c_client *client) 82 kmem_free(client, sizeof(*client)) 67 struct i2c_client *client; local in function:i2c_new_device [all...] |
/src/usr.sbin/ypserv/ypxfr/ |
ypxfr.c | 65 int get_remote_ordernum(CLIENT *, char *, char *, u_int, u_int *); 66 void get_map(CLIENT *, char *, char *, struct ypall_callback *); 71 int add_master(CLIENT *, char *, char *, DBM *); 72 int add_interdomain(CLIENT *, char *, char *, DBM *); 73 int add_secure(CLIENT *, char *, char *, DBM *); 74 int send_clear(CLIENT *); 75 int send_reply(CLIENT *, int, int); 92 CLIENT *client; local in function:main 97 client = NULL [all...] |
/src/usr.sbin/rpc.pcnfsd/ |
pcnfsd.x | 7 /* The maximum number of bytes in a print client name argument */ 59 typedef string client<CLIENTLEN>; 61 ** The type client is used for passing the hostname of a client for 69 ** the client wishes to print. 86 ** problems if your client attempts to interoperate with a server 114 ** reserved for client use. The second character specifies the type of 118 ** p - PostScript data. The client will ensure that a valid 121 ** x - Generic printable ASCII text. The client will have filtered 124 ** r - Raw print data. The client performs no filtering [all...] |
/src/usr.sbin/bthcid/ |
Makefile | 7 SRCS= bthcid.c hci.c client.c config.c
|
/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);
|