OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WebSocketThrottle
(Results
1 - 4
of
4
) sorted by null
/external/chromium/net/websockets/
websocket_throttle.h
29
class
WebSocketThrottle
{
32
static
WebSocketThrottle
* GetInstance();
53
WebSocketThrottle
();
54
virtual ~
WebSocketThrottle
();
55
friend struct DefaultSingletonTraits<
WebSocketThrottle
>;
websocket_throttle.cc
49
WebSocketThrottle
::
WebSocketThrottle
() {
52
WebSocketThrottle
::~
WebSocketThrottle
() {
58
WebSocketThrottle
*
WebSocketThrottle
::GetInstance() {
59
return Singleton<
WebSocketThrottle
>::get();
62
void
WebSocketThrottle
::PutInQueue(WebSocketJob* job) {
89
void
WebSocketThrottle
::RemoveFromQueue(WebSocketJob* job) {
133
void
WebSocketThrottle
::WakeupSocketIfNecessary()
[
all
...]
/external/chromium_org/net/websockets/
websocket_throttle.h
31
class NET_EXPORT_PRIVATE
WebSocketThrottle
{
34
static
WebSocketThrottle
* GetInstance();
53
WebSocketThrottle
();
54
~
WebSocketThrottle
();
55
friend struct DefaultSingletonTraits<
WebSocketThrottle
>;
70
DISALLOW_COPY_AND_ASSIGN(
WebSocketThrottle
);
websocket_throttle.cc
29
WebSocketThrottle
::
WebSocketThrottle
() {
32
WebSocketThrottle
::~
WebSocketThrottle
() {
38
WebSocketThrottle
*
WebSocketThrottle
::GetInstance() {
39
return Singleton<
WebSocketThrottle
>::get();
42
bool
WebSocketThrottle
::PutInQueue(WebSocketJob* job) {
73
void
WebSocketThrottle
::RemoveFromQueue(WebSocketJob* job) {
116
void
WebSocketThrottle
::WakeupSocketIfNecessary
[
all
...]
Completed in 38 milliseconds