Searched refs:client (Results 1 - 18 of 18) sorted by last modified time

/haiku/src/tests/system/network/tcp_shell/
H A Dtcp_shell.cpp714 fprintf(stderr, "tcp_tester: cannot open client: %s\n", strerror(status));
1061 printf("\33[31mserver > client: ");
1063 printf("client > server: ");
1377 server ? "server receiver" : "client receiver", B_NORMAL_PRIORITY,
1722 {"connect", do_connect, "Connects the client"},
1723 {"send", do_send, "Sends data from the client to the server"},
1795 net_protocol* client = init_protocol(&gClientSocket); local
1796 if (client == NULL)
1806 sServerContext.thread, client, sClientContext.thread);
1852 close_protocol(client);
[all...]
/haiku/src/tests/kits/net/netservices2/
H A Dproxy.py13 import http.client namespace
55 conn = http.client.HTTPConnection(target.netloc)
57 # Collect headers from client which will be sent to the downstream
75 # Read the request body from client.
87 # Echo the response to the client.
/haiku/src/kits/media/experimental/
H A DMediaClient.cpp224 const media_client& client)
223 Connect(BMediaConnection* connection, const media_client& client) argument
H A DMediaConnection.cpp25 //fConnection.client = media_client::null;
134 fConnection.client = fOwner->Client();
H A DMediaClientDefs.cpp31 return client;
67 input.node = client.node;
80 output.node = client.node;
92 return client.node;
/haiku/headers/private/media/experimental/
H A DMediaClientDefs.h24 // The client can receive media data.
26 // The client can send media data to another client.
28 // The client specify a control GUI which can be used to configure it.
81 media_client client; member in struct:BPrivate::media::media_connection
H A DMediaClient.h93 const media_client& client);
123 // Return the current performance time handled by the client.
/haiku/src/tests/kits/net/service/
H A Dproxy.py13 import http.client namespace
55 conn = http.client.HTTPConnection(target.netloc)
57 # Collect headers from client which will be sent to the downstream
75 # Read the request body from client.
87 # Echo the response to the client.
/haiku/src/kits/debugger/debug_managers/
H A DBreakpointManager.cpp233 BreakpointClient* client)
255 // add the client
257 if (breakpoint->AddClient(client)) {
272 breakpoint->RemoveClient(client);
286 BreakpointClient* client)
295 // remove the client
296 breakpoint->RemoveClient(client);
232 InstallTemporaryBreakpoint(target_addr_t address, BreakpointClient* client) argument
285 UninstallTemporaryBreakpoint(target_addr_t address, BreakpointClient* client) argument
H A DBreakpointManager.h33 BreakpointClient* client);
36 BreakpointClient* client);
/haiku/src/kits/debugger/model/
H A DBreakpoint.cpp87 Breakpoint::AddClient(BreakpointClient* client) argument
89 return fClients.AddItem(client);
94 Breakpoint::RemoveClient(BreakpointClient* client) argument
96 fClients.RemoveItem(client);
/haiku/headers/private/debugger/model/
H A DBreakpoint.h47 bool AddClient(BreakpointClient* client);
48 void RemoveClient(BreakpointClient* client);
/haiku/src/add-ons/media/plugins/rtsp_streamer/
H A Drtsp.cpp87 HaikuRTSPClient* client = (HaikuRTSPClient*) rtspClient; local
102 client->session = MediaSession::createNew(env, sdpDescription);
104 if (client->session == NULL) {
111 } else if (!client->session->hasSubsessions()) {
123 client->iter = new MediaSubsessionIterator(*client->session);
136 HaikuRTSPClient* client = (HaikuRTSPClient*) rtspClient; local
138 client->subsession = client->iter->next();
139 if (client
189 HaikuRTSPClient* client = (HaikuRTSPClient*) rtspClient; local
252 HaikuRTSPClient* client = (HaikuRTSPClient*) rtspClient; local
337 HaikuRTSPClient* client = (HaikuRTSPClient*)clientData; local
349 HaikuRTSPClient* client = (HaikuRTSPClient*) rtspClient; local
[all...]
/haiku/src/servers/bluetooth/
H A DBluetoothServer.cpp465 int client; local
509 client = accept(socketServer, (struct sockaddr*)&loc_addr, &len);
511 TRACE_BT("SDP: Incomming connection... %d\n", client);
516 receivedSize = recv(client, buffer, 29 , 0);
518 TRACE_BT("SDP: Error reading client socket\n");
520 TRACE_BT("SDP: Received from SDP client: %ld:\n", receivedSize);
/haiku/src/tests/add-ons/print/ppd/ui/
H A DPPDConfigView.cpp421 void SetScrollBar(BScrollBar* scroller, float contents, float client) argument
424 float extent = contents - client;
428 scroller->SetSteps(20, client);
/haiku/src/tests/kits/net/
H A DNetEndpointTest.cpp257 BNetEndpoint client(SOCK_DGRAM);
260 status_t status = client.Bind(clientAddr);
268 checkAddrsAreEqual(client.LocalAddr(), clientAddr,
271 status = client.SendTo("U", 1, serverAddr, 0);
279 checkArchive(client, SOCK_DGRAM, clientAddr, serverAddr);
283 client.Close();
290 client.SetProtocol(SOCK_STREAM);
291 status_t status = client.Bind(clientAddr);
299 checkAddrsAreEqual(client.LocalAddr(), clientAddr,
302 status = client
[all...]
H A Dlink_echo.cpp76 BNetworkAddress client; local
77 socklen_t length = sizeof(client);
80 ssize_t bytesRead = recvfrom(fd, buffer, kBufferSize - 1, 0, client,
89 printf("got <%s> from client %s\n", buffer, client.ToString().String());
99 if (sendto(fd, buffer, bytesRead, 0, client, client.Length()) < 0) {
118 fprintf(stderr, "usage: %s <device> client <server-mac-address>\n"
132 if (!strcmp(argv[2], "client")) {
135 fprintf(stderr, "usage: %s client <serve
[all...]
/haiku/src/libs/libtelnet/
H A Dkerberos5.c450 if (krb5_unparse_name(context, ticket->client, &name))
454 ticket->client,
519 ticket->client);
666 ticket->client,
766 creds.client = principal;
819 dfspag = krb5_dfs_pag(context, dfsfwd, ticket->client,

Completed in 148 milliseconds