| /src/lib/libc/rpc/ |
| pmap_getmaps.c | 46 * Client interface to pmap rpc service. 87 CLIENT *client; local 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 [all...] |
| pmap_rmt.c | 46 * Client interface to pmap rpc service. 95 CLIENT *client; local 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);
|
| /src/crypto/external/apache2/openssl/dist/fuzz/ |
| client.c | 63 SSL *client = NULL; local 71 /* This only fuzzes the initial flow from the client so far. */ 76 client = SSL_new(ctx); 77 if (client == NULL) 79 OPENSSL_assert(SSL_set_min_proto_version(client, 0) == 1); 80 OPENSSL_assert(SSL_set_cipher_list(client, "ALL:eNULL:@SECLEVEL=0") == 1); 81 SSL_set_tlsext_host_name(client, "localhost"); 90 SSL_set_bio(client, in, out); 91 SSL_set_connect_state(client); 93 if (SSL_do_handshake(client) == 1) [all...] |
| dtlsclient.c | 63 SSL *client = NULL; local 71 /* This only fuzzes the initial flow from the client so far. */ 76 client = SSL_new(ctx); 77 if (client == NULL) 79 OPENSSL_assert(SSL_set_min_proto_version(client, 0) == 1); 80 OPENSSL_assert(SSL_set_cipher_list(client, "ALL:eNULL:@SECLEVEL=0") == 1); 81 SSL_set_tlsext_host_name(client, "localhost"); 90 SSL_set_bio(client, in, out); 91 SSL_set_connect_state(client); 93 if (SSL_do_handshake(client) == 1) [all...] |
| /src/crypto/external/bsd/openssh/dist/ |
| auth2-krb5.c | 57 char *client = NULL; local 66 if (mm_auth_krb5(ssh, &tkt, &client, &reply)) { 71 if (client) 72 free(client);
|
| /src/crypto/external/bsd/openssl/dist/fuzz/ |
| client.c | 58 SSL *client = NULL; local 66 /* This only fuzzes the initial flow from the client so far. */ 71 client = SSL_new(ctx); 72 if (client == NULL) 74 OPENSSL_assert(SSL_set_min_proto_version(client, 0) == 1); 75 OPENSSL_assert(SSL_set_cipher_list(client, "ALL:eNULL:@SECLEVEL=0") == 1); 76 SSL_set_tlsext_host_name(client, "localhost"); 85 SSL_set_bio(client, in, out); 86 SSL_set_connect_state(client); 88 if (SSL_do_handshake(client) == 1) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/fuzz/ |
| client.c | 60 SSL *client; local 72 /* This only fuzzes the initial flow from the client so far. */ 75 client = SSL_new(ctx); 76 OPENSSL_assert(SSL_set_min_proto_version(client, 0) == 1); 77 OPENSSL_assert(SSL_set_cipher_list(client, "ALL:eNULL:@SECLEVEL=0") == 1); 78 SSL_set_tlsext_host_name(client, "localhost"); 81 SSL_set_bio(client, in, out); 82 SSL_set_connect_state(client); 84 if (SSL_do_handshake(client) == 1) { 88 if (SSL_read(client, tmp, sizeof(tmp)) <= 0) [all...] |
| /src/external/mit/libuv/dist/test/ |
| test-udp-create-socket-early.c | 37 uv_udp_t client; local 43 r = uv_udp_init_ex(uv_default_loop(), &client, AF_INET); 46 r = uv_fileno((const uv_handle_t*) &client, &fd); 53 r = uv_udp_getsockname(&client, (struct sockaddr*) &sockname, &namelen); 60 r = uv_udp_bind(&client, (const struct sockaddr*) &addr, 0); 64 r = uv_udp_getsockname(&client, (struct sockaddr*) &sockname, &namelen); 70 uv_close((uv_handle_t*) &client, NULL); 80 uv_udp_t client; local 89 r = uv_udp_init_ex(uv_default_loop(), &client, AF_INET6); 92 r = uv_fileno((const uv_handle_t*) &client, &fd) 126 uv_udp_t client; local [all...] |
| test-multiple-listen.c | 31 static uv_tcp_t client; variable 71 uv_close((uv_handle_t*)&client, close_cb); 84 r = uv_tcp_init(uv_default_loop(), &client); 88 &client,
|
| /src/external/mpl/bind/dist/tests/ns/ |
| netmgr_wrap.c | 24 #include <ns/client.h> 35 * We don't want to use netmgr-based client accounting, we need to emulate it. 47 ns_client_t *client = (ns_client_t *)source; local 51 if (atomic_load(&client_addrs[i]) == (uintptr_t)client) { 76 ns_client_t *client = (ns_client_t *)handle; local 82 if (atomic_load(&client_addrs[i]) == (uintptr_t)client) { 89 dns_view_detach(&client->view); 90 client->state = 4; 91 ns__client_reset_cb(client); 92 ns__client_put_cb(client); [all...] |
| /src/sys/external/bsd/drm2/dist/drm/ |
| drm_encoder_slave.c | 63 struct i2c_client *client; local 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 [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 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 124 struct nvkm_client *client = priv; local 131 struct nvkm_client *client = priv; local [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 55 chan->memory = nvkm_umem_search(client, push);
|
| /src/usr.bin/chpass/ |
| pw_yp.c | 112 CLIENT *client; local 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 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/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| test_renew.c | 63 krb5_principal client; local 100 ret = krb5_cc_get_principal(context, id, &client); 106 client, 113 if (krb5_principal_compare(context, out.client, client) != TRUE)
|
| /src/external/bsd/tmux/dist/ |
| cmd-load-buffer.c | 48 struct client *client; member in struct:cmd_load_buffer_data 54 cmd_load_buffer_done(__unused struct client *c, const char *path, int error, 58 struct client *tc = cdata->client; 94 struct client *tc = cmdq_get_target_client(item); 104 cdata->client = tc; 105 cdata->client->references++;
|
| /src/external/gpl3/gdb/dist/sim/ppc/ |
| hw_iobus.c | 55 device *client) /*callback/default*/ 62 space, device_path(client)); 77 client); local
|
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| dv-core.c | 56 struct hw *client) 58 HW_TRACE ((me, "attach - level=%d, space=%d, addr=0x%lx, nr_bytes=%ld, client=%s", 59 level, space, (unsigned long) addr, (unsigned long) nr_bytes, hw_path (client))); 70 client, local 81 struct hw *client) 83 HW_TRACE ((me, "detach - level=%d, space=%d, addr=0x%lx, nr_bytes=%ld, client=%s", 84 level, space, (unsigned long) addr, (unsigned long) nr_bytes, hw_path (client)));
|
| /src/external/gpl3/gdb.old/dist/sim/ppc/ |
| hw_iobus.c | 55 device *client) /*callback/default*/ 62 space, device_path(client)); 77 client); local
|
| /src/external/mit/libuv/dist/docs/code/cgi/ |
| main.c | 17 void invoke_cgi_script(uv_tcp_t *client) { 33 child_stdio[1].data.stream = (uv_stream_t*) client; 42 child_req.data = (void*) client; 56 uv_tcp_t *client = (uv_tcp_t*) malloc(sizeof(uv_tcp_t)); local 57 uv_tcp_init(loop, client); 58 if (uv_accept(server, (uv_stream_t*) client) == 0) { 59 invoke_cgi_script(client); 62 uv_close((uv_handle_t*) client, NULL);
|
| /src/external/mit/libuv/dist/docs/code/multi-echo-server/ |
| worker.c | 34 void echo_read(uv_stream_t *client, ssize_t nread, const uv_buf_t *buf) { 38 uv_write((uv_write_t*) req, client, &req->buf, 1, echo_write); 45 uv_close((uv_handle_t*) client, NULL); 68 uv_tcp_t *client = (uv_tcp_t*) malloc(sizeof(uv_tcp_t)); local 69 uv_tcp_init(loop, client); 70 if (uv_accept(q, (uv_stream_t*) client) == 0) { 72 uv_fileno((const uv_handle_t*) client, &fd); 74 uv_read_start((uv_stream_t*) client, alloc_buffer, echo_read); 77 uv_close((uv_handle_t*) client, NULL);
|
| /src/external/mit/libuv/dist/docs/code/pipe-echo-server/ |
| main.c | 37 void echo_read(uv_stream_t *client, ssize_t nread, const uv_buf_t *buf) { 41 uv_write((uv_write_t*) req, client, &req->buf, 1, echo_write); 48 uv_close((uv_handle_t*) client, NULL); 60 uv_pipe_t *client = (uv_pipe_t*) malloc(sizeof(uv_pipe_t)); local 61 uv_pipe_init(loop, client, 0); 62 if (uv_accept(server, (uv_stream_t*) client) == 0) { 63 uv_read_start((uv_stream_t*) client, alloc_buffer, echo_read); 66 uv_close((uv_handle_t*) client, NULL);
|