Home
last modified time | relevance | path

Searched full:server (Results 1 – 25 of 3373) sorted by relevance

12345678910>>...135

/OK3568_Linux_fs/kernel/fs/afs/
H A Dserver.c2 /* AFS server record management
14 static unsigned afs_server_gc_delay = 10; /* Server record timeout in seconds */
22 * Find a server by one of its addresses.
28 struct afs_server *server = NULL; in afs_find_server() local
35 if (server) in afs_find_server()
36 afs_unuse_server_notime(net, server, afs_server_trace_put_find_rsq); in afs_find_server()
37 server = NULL; in afs_find_server()
42 hlist_for_each_entry_rcu(server, &net->fs_addresses6, addr6_link) { in afs_find_server()
43 alist = rcu_dereference(server->addresses); in afs_find_server()
58 hlist_for_each_entry_rcu(server, &net->fs_addresses4, addr4_link) { in afs_find_server()
[all …]
H A Dfs_probe.c19 * outstanding server count.
22 struct afs_server *server, bool fast) in afs_schedule_fs_probe() argument
29 atj = server->probed_at; in afs_schedule_fs_probe()
40 static void afs_finished_fs_probe(struct afs_net *net, struct afs_server *server) in afs_finished_fs_probe() argument
42 bool responded = server->probe.responded; in afs_finished_fs_probe()
46 list_add_tail(&server->probe_link, &net->fs_probe_slow); in afs_finished_fs_probe()
48 server->rtt = UINT_MAX; in afs_finished_fs_probe()
49 clear_bit(AFS_SERVER_FL_RESPONDING, &server->flags); in afs_finished_fs_probe()
50 list_add_tail(&server->probe_link, &net->fs_probe_fast); in afs_finished_fs_probe()
54 afs_schedule_fs_probe(net, server, !responded); in afs_finished_fs_probe()
[all …]
H A Dvl_probe.c18 static void afs_finished_vl_probe(struct afs_vlserver *server) in afs_finished_vl_probe() argument
20 if (!(server->probe.flags & AFS_VLSERVER_PROBE_RESPONDED)) { in afs_finished_vl_probe()
21 server->rtt = UINT_MAX; in afs_finished_vl_probe()
22 clear_bit(AFS_VLSERVER_FL_RESPONDING, &server->flags); in afs_finished_vl_probe()
25 clear_bit_unlock(AFS_VLSERVER_FL_PROBING, &server->flags); in afs_finished_vl_probe()
26 wake_up_bit(&server->flags, AFS_VLSERVER_FL_PROBING); in afs_finished_vl_probe()
32 static void afs_done_one_vl_probe(struct afs_vlserver *server, bool wake_up) in afs_done_one_vl_probe() argument
34 if (atomic_dec_and_test(&server->probe_outstanding)) { in afs_done_one_vl_probe()
35 afs_finished_vl_probe(server); in afs_done_one_vl_probe()
40 wake_up_all(&server->probe_wq); in afs_done_one_vl_probe()
[all …]
/OK3568_Linux_fs/external/mpp/osal/driver/
H A Dmpp_server.cpp69 /* link to server */
81 /* lock by server */
93 /* link to server */
104 /* lock and clean by server */
108 /* lock by server */
118 /* hash table to server */
126 MppDevBatServ *server; member
179 MppDevBatTask *batch_add(MppDevBatServ *server) in batch_add() argument
181 MppDevBatTask *batch = (MppDevBatTask *)mpp_mem_pool_get(server->batch_pool); in batch_add()
192 (server->max_task_in_batch * MAX_REQ_SEND_CNT); in batch_add()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/freeradius/files/
H A D0001-raddb-certs-Makefile-fix-the-occasional-verification.patch11 openssl pkcs12 -in server.p12 -out server.pem -passin pass:'whatever' -passout pass:'whatever'
12 chmod g+r server.pem
13 C = FR, ST = Radius, O = Example Inc., CN = Example Server Certificate, emailAddress = admin@exampl…
17 error server.pem: verification failed
18 make: *** [Makefile:107: server.vrfy] Error 2
20 It seems the ca.pem mismatchs server.pem which results in failing to
21 execute "openssl verify -CAfile ca.pem server.pem", so add to check
35 @@ -59,7 +59,7 @@ passwords.mk: server.cnf ca.cnf client.cnf inner-server.cnf
69 server.csr server.key: server.cnf
70 - $(OPENSSL) req -new -out server.csr -keyout server.key -config ./server.cnf
[all …]
/OK3568_Linux_fs/kernel/fs/cifs/
H A Dtransport.c54 AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server) in AllocMidQEntry() argument
58 if (server == NULL) { in AllocMidQEntry()
73 temp->server = server; in AllocMidQEntry()
94 __le16 command = midEntry->server->vals->lock_cmd; in _cifs_mid_q_entry_release()
99 struct TCP_Server_Info *server = midEntry->server; in _cifs_mid_q_entry_release() local
103 server->ops->handle_cancelled_mid) in _cifs_mid_q_entry_release()
104 server->ops->handle_cancelled_mid(midEntry, server); in _cifs_mid_q_entry_release()
119 if (atomic_read(&server->num_cmds[smb_cmd]) == 0) { in _cifs_mid_q_entry_release()
120 server->slowest_cmd[smb_cmd] = roundtrip_time; in _cifs_mid_q_entry_release()
121 server->fastest_cmd[smb_cmd] = roundtrip_time; in _cifs_mid_q_entry_release()
[all …]
H A Dcifsencrypt.c41 struct TCP_Server_Info *server, char *signature, in __cifs_calc_signature() argument
48 int is_smb2 = server->vals->header_preamble_size == 0; in __cifs_calc_signature()
110 * should be called with the server->srv_mutex held.
113 struct TCP_Server_Info *server, char *signature) in cifs_calc_signature() argument
117 if (!rqst->rq_iov || !signature || !server) in cifs_calc_signature()
120 rc = cifs_alloc_hash("md5", &server->secmech.md5, in cifs_calc_signature()
121 &server->secmech.sdescmd5); in cifs_calc_signature()
125 rc = crypto_shash_init(&server->secmech.sdescmd5->shash); in cifs_calc_signature()
131 rc = crypto_shash_update(&server->secmech.sdescmd5->shash, in cifs_calc_signature()
132 server->session_key.response, server->session_key.len); in cifs_calc_signature()
[all …]
H A Dconnect.c73 /* Drop the connection to not overload the server */
283 static int ip_connect(struct TCP_Server_Info *server);
284 static int generic_ip_connect(struct TCP_Server_Info *server);
293 * This should be called with server->srv_mutex held.
296 static int reconn_set_ipaddr(struct TCP_Server_Info *server) in reconn_set_ipaddr() argument
302 if (!server->hostname) in reconn_set_ipaddr()
305 len = strlen(server->hostname) + 3; in reconn_set_ipaddr()
312 scnprintf(unc, len, "\\\\%s", server->hostname); in reconn_set_ipaddr()
318 cifs_dbg(FYI, "%s: failed to resolve server part of %s to IP: %d\n", in reconn_set_ipaddr()
319 __func__, server->hostname, rc); in reconn_set_ipaddr()
[all …]
H A Dsmb2transport.c44 smb3_crypto_shash_allocate(struct TCP_Server_Info *server) in smb3_crypto_shash_allocate() argument
46 struct cifs_secmech *p = &server->secmech; in smb3_crypto_shash_allocate()
66 smb311_crypto_shash_allocate(struct TCP_Server_Info *server) in smb311_crypto_shash_allocate() argument
68 struct cifs_secmech *p = &server->secmech; in smb311_crypto_shash_allocate()
95 int smb2_get_sign_key(__u64 ses_id, struct TCP_Server_Info *server, u8 *key) in smb2_get_sign_key() argument
133 if (chan->server == server) { in smb2_get_sign_key()
150 smb2_find_smb_ses_unlocked(struct TCP_Server_Info *server, __u64 ses_id) in smb2_find_smb_ses_unlocked() argument
154 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { in smb2_find_smb_ses_unlocked()
164 smb2_find_smb_ses(struct TCP_Server_Info *server, __u64 ses_id) in smb2_find_smb_ses() argument
169 ses = smb2_find_smb_ses_unlocked(server, ses_id); in smb2_find_smb_ses()
[all …]
H A Dcifs_debug.c35 void cifs_dump_detail(void *buf, struct TCP_Server_Info *server) in cifs_dump_detail() argument
44 server->ops->calc_smb_size(smb, server)); in cifs_dump_detail()
48 void cifs_dump_mids(struct TCP_Server_Info *server) in cifs_dump_mids() argument
54 if (server == NULL) in cifs_dump_mids()
59 list_for_each(tmp, &server->pending_mid_q) { in cifs_dump_mids()
77 cifs_dump_detail(mid_entry->resp_buf, server); in cifs_dump_mids()
116 if (tcon->ses->server->ops->dump_share_caps) in cifs_debug_tcon()
117 tcon->ses->server->ops->dump_share_caps(m, tcon); in cifs_debug_tcon()
127 struct TCP_Server_Info *server = chan->server; in cifs_dump_channel() local
130 "TCP status: %d Instance: %d Local Users To Server: %d " in cifs_dump_channel()
[all …]
/OK3568_Linux_fs/kernel/fs/nfs/
H A Dclient.c216 static void pnfs_init_server(struct nfs_server *server) in pnfs_init_server() argument
218 rpc_init_wait_queue(&server->roc_rpcwaitq, "pNFS ROC"); in pnfs_init_server()
230 static void pnfs_init_server(struct nfs_server *server) in pnfs_init_server() argument
443 * Mark a server as ready or failed
552 static void nfs_destroy_server(struct nfs_server *server) in nfs_destroy_server() argument
554 if (server->nlm_host) in nfs_destroy_server()
555 nlmclnt_done(server->nlm_host); in nfs_destroy_server()
561 static int nfs_start_lockd(struct nfs_server *server) in nfs_start_lockd() argument
564 struct nfs_client *clp = server->nfs_client; in nfs_start_lockd()
570 .noresvport = server->flags & NFS_MOUNT_NORESVPORT ? in nfs_start_lockd()
[all …]
H A Dnfs4client.c47 * Per auth flavor data server rpc clients
128 * Find or create a DS rpc client with th MDS server rpc client auth flavor
235 * Set up the connection to the server before we add add to the in nfs4_alloc_client()
382 * The create session reply races with the server back in nfs41_init_client()
453 * "drop," but server trunking discovery claims "drop" and "keep" are
454 * actually the same server. Swap the callback IDs so that "keep"
455 * will continue to use the callback ident the server now knows about,
540 * nfs40_walk_client_list - Find server that recognizes a client ID
577 * caused the server to return a new cl_confirm. So if in nfs40_walk_client_list()
579 * server that just returned the same cl_confirm by in nfs40_walk_client_list()
[all …]
/OK3568_Linux_fs/external/xserver/hw/xnest/man/
H A DXnest.man32 Xnest \- a nested X server
40 is both an X client and an X server.
42 is a client of the real server which manages windows and graphics requests on
45 is a server to its own clients.
50 appears to be a conventional server.
53 supports all standard options of the sample server implementation.
59 This option specifies the display name of the real server that
71 to synchronize its window and graphics operations with the real server.
80 to utilize full regeneration of real server objects and reopen a new connection
81 to the real server each time the nested server regenerates.
[all …]
/OK3568_Linux_fs/buildroot/dl/rtmpdump/git/
H A Drtmpsuck.c1 /* RTMP Proxy Server
23 /* This is a Proxy Server that displays the connection parameters from a
101 STREAMING_SERVER *rtmpServer = 0; // server structure pointer
104 void stopStreaming(STREAMING_SERVER * server);
154 static const char *cst[] = { "client", "server" };
158 ServeInvoke(STREAMING_SERVER *server, int which, RTMPPacket *pack, const char *body) in ServeInvoke() argument
205 server->rc.Link.app = pval; in ServeInvoke()
210 server->rc.Link.flashVer = pval; in ServeInvoke()
217 RTMP_HashSWF(pval.av_val, &server->rc.Link.SWFSize, in ServeInvoke()
218 (unsigned char *)server->rc.Link.SWFHash, 30); in ServeInvoke()
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/fetch-testdata/releases/individual/xserver/
H A Dindex.html12 …src="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.1.tar.bz2">xorg-server-1.0.…
13 …="/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.1.tar.gz">xorg-server-1.0.1…
14 …src="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.2.tar.bz2">xorg-server-1.0.…
15 …="/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.2.tar.gz">xorg-server-1.0.2…
16 …c="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.2.tar.bz2">xorg-server-1.0…
17 …"/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.2.tar.gz">xorg-server-1.0…
18 …="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.901.tar.bz2">xorg-server-1.…
19 …/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.901.tar.gz">xorg-server-1.…
20 …="/icons/unknown.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.902.tar.bz2">xorg-server-1.…
21 …/icons/compressed.gif" alt="[ ]"></td><td><a href="xorg-server-1.0.99.902.tar.gz">xorg-server-1.…
[all …]
/OK3568_Linux_fs/kernel/fs/nfsd/
H A DKconfig3 tristate "NFS server support"
15 protocol. To compile the NFS server support as a module,
18 You may choose to use a user-space NFS server instead, in which
24 the Linux NFS server implementation is available via the
28 available to clients mounting the NFS server on this system.
39 bool "NFS server support for NFS version 3"
42 This option enables support in your system's NFS server for
48 bool "NFS server support for the NFSv3 ACL protocol extension"
59 This option enables support in your system's NFS server for the
61 POSIX ACLs on files exported by your system's NFS server. NFS
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/server/
H A Dxmlrpcserver.py2 # BitBake XMLRPC Server Interface
13 from xmlrpc.server import SimpleXMLRPCServer, SimpleXMLRPCRequestHandler
14 import bb.server.xmlrpcclient
20 # "Bitbake-token" field (this comes from the server). If the two are not
21 # equal, it is assumed that a client is trying to connect to the server
22 # while another client is connected to the server. In this case, a 503 error
25 def __init__(self, request, client_address, server): argument
26 self.server = server
27 SimpleXMLRPCRequestHandler.__init__(self, request, client_address, server)
34 if 0 and remote_token != self.server.connection_token and remote_token != "observer":
[all …]
/OK3568_Linux_fs/external/rknpu2/runtime/RK3588/Linux/rknn_server/armhf/usr/bin/
HDrknn_server ... %s is not found Not Found %ld RKNN SERVER %s(%d): server & runtime ...
/OK3568_Linux_fs/external/rknpu2/runtime/RV1106/Linux/rknn_server/arm/usr/bin/
HDrknn_server ... %s is not found Not Found %ld RKNN SERVER %s(%d): server & runtime ...
/OK3568_Linux_fs/external/rknpu2/runtime/RK356X/Linux/rknn_server/armhf/usr/bin/
HDrknn_server ... %s is not found Not Found %ld RKNN SERVER %s(%d): server & runtime ...
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/
H A Drp-pppoe_3.13.bb1 SUMMARY = "A user-mode PPPoE client and server suite for Linux"
16 file://pppoe-server.default \
17 file://pppoe-server.init \
19 file://pppoe-server.service \
33 install -m 0644 ${WORKDIR}/pppoe-server.service ${D}${systemd_unitdir}/system
34 sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/pppoe-server.service
35 sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/pppoe-server.service
45 install -m 0644 ${WORKDIR}/pppoe-server.default ${D}${sysconfdir}/default/pppoe-server
46 install -m 0755 ${WORKDIR}/pppoe-server.init ${D}${sysconfdir}/init.d/pppoe-server
52 SYSTEMD_PACKAGES = "${PN}-server"
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/hashserv/
H A Dtests.py21 def server_prefunc(server, idx): argument
24 server.logger.debug("Running server %d" % idx)
38 def cleanup_server(server): argument
39 if server.process.exitcode is not None:
42 server.process.terminate()
43 server.process.join()
45 server = create_server(self.get_server_addr(self.server_index),
49 server.dbpath = dbpath
51 server.serve_as_process(prefunc=prefunc, args=(self.server_index,))
52 self.addCleanup(cleanup_server, server)
[all …]
/OK3568_Linux_fs/external/xserver/man/
H A DXserver.man31 Xserver \- X Window System display server
37 is the generic name for the X Window System display server. It is
38 frequently a link or a copy of the appropriate server binary for
39 driving the most frequently used server on a given machine.
40 .SH "STARTING THE SERVER"
41 The X server is usually started from the X Display Manager program
44 the server running, prompting for usernames and passwords, and starting up
53 The X server may also be started directly by the user, though this
56 permission to start the X server, often because access to certain
59 When the X server starts up, it typically takes over the display. If
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/libs/server/
H A Dservermanager.cpp27 void ServerManager::registerSever(PlatformServer *server) in registerSever() argument
29 if(!m_d->servers.values().contains(server)) in registerSever()
31 m_d->servers.insert(server->serverName(), server); in registerSever()
39 PlatformServer *server =m_d->servers.value(serverName); in unRegisterServer() local
41 server->stopwork(); in unRegisterServer()
42 delete server; in unRegisterServer()
48 PlatformServer *server =m_d->servers.value(servername); in addHandler() local
49 if(server!= NULL && !m_d->handler.values().contains(handler)) in addHandler()
52 server->addHandler(handler); in addHandler()
64 PlatformServer *server = m_d->servers.value(key); in removeHandler() local
[all …]
/OK3568_Linux_fs/kernel/net/netfilter/ipvs/
H A DKconfig3 # IP Virtual Server configuration
6 tristate "IP virtual server support"
10 IP Virtual Server support will let you build a high-performance
11 virtual server based on cluster of two or more real servers. This
17 virtual server via NAT, virtual server via tunneling and virtual
18 server via direct routing. The several scheduling algorithms can
19 be used to choose which server the connection is directed to,
39 bool "IP virtual server debugging"
42 debugging the IP virtual server code. You can change the debug
60 to your virtual server application. It is good to set the table size
[all …]

12345678910>>...135