OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HttpServer
(Results
1 - 17
of
17
) sorted by null
/external/webrtc/webrtc/base/
httpserver.h
20
class
HttpServer
;
24
//
HttpServer
38
class
HttpServer
{
40
HttpServer
();
41
virtual ~
HttpServer
();
45
sigslot::signal3<
HttpServer
*, int, StreamInterface*> SignalConnectionClosed;
53
// owened by the
HttpServer
at this point.
54
sigslot::signal3<
HttpServer
*, HttpServerTransaction*, bool*>
62
sigslot::signal2<
HttpServer
*, HttpServerTransaction*> SignalHttpRequest;
66
sigslot::signal3<
HttpServer
*, HttpServerTransaction*, int
[
all
...]
httpserver_unittest.cc
12
#include "webrtc/base/
httpserver
.h"
29
HttpServerMonitor(
HttpServer
* server)
39
void OnRequest(
HttpServer
*, HttpServerTransaction* t) {
45
void OnRequestComplete(
HttpServer
*, HttpServerTransaction* t, int) {
49
void OnClosed(
HttpServer
*) {
52
void OnConnectionClosed(
HttpServer
*, int, StreamInterface* stream) {
58
void CreateClientConnection(
HttpServer
& server,
75
TEST(
HttpServer
, DoesNotSignalCloseUnlessCloseAllIsCalled) {
76
HttpServer
server;
89
TEST(
HttpServer
, SignalsCloseWhenNoConnectionsAreActive)
[
all
...]
httpserver.cc
17
#include "webrtc/base/
httpserver
.h"
25
//
HttpServer
28
HttpServer
::
HttpServer
() : next_connection_id_(1), closing_(false) {
31
HttpServer
::~
HttpServer
() {
33
LOG(LS_WARNING) << "
HttpServer
::CloseAll has not completed";
45
HttpServer
::HandleConnection(StreamInterface* stream) {
55
HttpServer
::Respond(HttpServerTransaction* transaction) {
67
HttpServer
::Close(int connection_id, bool force)
[
all
...]
/external/libweave/include/weave/provider/
http_server.h
24
// libweave user:
HttpServer
and
HttpServer
::Request.
HttpServer
provides
59
// If webserver receives "http://192.168.0.1/privet/info" request,
HttpServer
68
// Once
HttpServer
implementation invokes a registered callback, it should
104
// interface. It is the job of
HttpServer
implementation to hide network
108
class
HttpServer
{
144
virtual ~
HttpServer
() {}
/external/libweave/include/weave/provider/test/
mock_http_server.h
19
class MockHttpServer : public
HttpServer
{
/external/libweave/src/privet/
privet_manager.h
51
provider::
HttpServer
* http_server,
68
std::unique_ptr<provider::
HttpServer
::Request> request);
71
const std::shared_ptr<provider::
HttpServer
::Request>& request,
75
const std::shared_ptr<provider::
HttpServer
::Request>& request,
privet_manager.cc
39
using provider::
HttpServer
;
48
HttpServer
* http_server,
114
std::unique_ptr<provider::
HttpServer
::Request> req) {
115
std::shared_ptr<provider::
HttpServer
::Request> request{std::move(req)};
127
const std::shared_ptr<provider::
HttpServer
::Request>& request,
145
const std::shared_ptr<provider::
HttpServer
::Request>& request,
/art/tools/ahat/src/
Main.java
19
import com.sun.net.
httpserver
.
HttpServer
;
75
HttpServer
server =
HttpServer
.create(addr, 0);
/system/update_engine/common/
http_fetcher_unittest.cc
91
class
HttpServer
{
94
virtual ~
HttpServer
() = 0;
103
HttpServer
::~
HttpServer
() {}
106
class NullHttpServer : public
HttpServer
{
114
class PythonHttpServer : public
HttpServer
{
225
virtual void IgnoreServerAborting(
HttpServer
* server) const {}
227
virtual
HttpServer
* CreateServer() = 0;
258
HttpServer
* CreateServer() override {
299
void IgnoreServerAborting(
HttpServer
* server) const override
[
all
...]
/external/libweave/examples/provider/
event_http_server.h
26
class HttpServerImpl : public provider::
HttpServer
{
/system/weaved/buffet/
webserv_client.h
44
// Wrapper around libwebserv that implements
HttpServer
interface.
45
class WebServClient : public weave::provider::
HttpServer
{
52
//
HttpServer
implementation.
webserv_client.cc
32
using weave::provider::
HttpServer
;
34
class RequestImpl : public
HttpServer
::Request {
41
//
HttpServer
::Request implementation.
manager.cc
206
weave::provider::
HttpServer
* http_server{nullptr};
218
[](std::unique_ptr<weave::provider::
HttpServer
::Request> request) {
/external/libweave/src/
device_manager.h
32
provider::
HttpServer
* http_server,
103
provider::
HttpServer
* http_server,
device_manager.cc
30
provider::
HttpServer
* http_server,
76
provider::
HttpServer
* http_server,
282
provider::
HttpServer
* http_server,
weave_unittest.cc
257
const provider::
HttpServer
::RequestHandlerCallback& cb) {
263
const provider::
HttpServer
::RequestHandlerCallback& cb) {
334
std::map<std::string, provider::
HttpServer
::RequestHandlerCallback>
336
std::map<std::string, provider::
HttpServer
::RequestHandlerCallback>
/external/libweave/include/weave/
device.h
168
provider::
HttpServer
* http_server,
Completed in 797 milliseconds