OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:interfaceproxy
(Results
1 - 25
of
57
) sorted by null
1
2
3
/external/chromium_org/ppapi/proxy/
interface_proxy.cc
13
InterfaceProxy
::
InterfaceProxy
(Dispatcher* dispatcher)
17
InterfaceProxy
::~
InterfaceProxy
() {
20
bool
InterfaceProxy
::Send(IPC::Message* msg) {
interface_proxy.h
21
class
InterfaceProxy
: public IPC::Listener, public IPC::Sender {
25
typedef
InterfaceProxy
* (*Factory)(Dispatcher* dispatcher);
42
InterfaceProxy
::Factory create_proxy;
45
virtual ~
InterfaceProxy
();
58
InterfaceProxy
(Dispatcher* dispatcher);
ppb_x509_certificate_private_proxy.h
18
: public
InterfaceProxy
{
24
//
InterfaceProxy
implementation.
ppp_graphics_3d_proxy.h
16
class PPP_Graphics3D_Proxy : public
InterfaceProxy
{
23
//
InterfaceProxy
implementation.
ppp_messaging_proxy.h
18
class PPP_Messaging_Proxy : public
InterfaceProxy
{
25
//
InterfaceProxy
implementation.
ppp_mouse_lock_proxy.h
16
class PPP_MouseLock_Proxy : public
InterfaceProxy
{
23
//
InterfaceProxy
implementation.
ppp_text_input_proxy.h
16
class PPP_TextInput_Proxy : public
InterfaceProxy
{
23
//
InterfaceProxy
implementation.
dispatcher.cc
33
InterfaceProxy
* Dispatcher::GetInterfaceProxy(ApiID id) {
34
InterfaceProxy
* proxy = proxies_[id].get();
37
InterfaceProxy
::Factory factory =
68
InterfaceProxy
* proxy = GetInterfaceProxy(
ppp_graphics_3d_proxy.cc
32
InterfaceProxy
* CreateGraphics3DProxy(Dispatcher* dispatcher) {
39
:
InterfaceProxy
(dispatcher),
51
const
InterfaceProxy
::Info* PPP_Graphics3D_Proxy::GetInfo() {
ppp_instance_private_proxy.cc
37
InterfaceProxy
* CreateInstancePrivateProxy(Dispatcher* dispatcher) {
44
:
InterfaceProxy
(dispatcher),
56
const
InterfaceProxy
::Info* PPP_Instance_Private_Proxy::GetInfo() {
ppp_mouse_lock_proxy.cc
38
InterfaceProxy
* CreateMouseLockProxy(Dispatcher* dispatcher) {
45
:
InterfaceProxy
(dispatcher),
57
const
InterfaceProxy
::Info* PPP_MouseLock_Proxy::GetInfo() {
dispatcher.h
40
//
InterfaceProxy
---------------------->
InterfaceProxy
44
//
InterfaceProxy
<----------------------
InterfaceProxy
63
InterfaceProxy
* GetInterfaceProxy(ApiID id);
108
scoped_ptr<
InterfaceProxy
> proxies_[API_ID_COUNT];
ppb_broker_proxy.h
21
class PPB_Broker_Proxy : public
InterfaceProxy
{
28
//
InterfaceProxy
implementation.
ppb_buffer_proxy.h
49
class PPB_Buffer_Proxy : public
InterfaceProxy
{
60
//
InterfaceProxy
implementation.
ppb_core_proxy.h
18
class PPB_Core_Proxy : public
InterfaceProxy
{
25
//
InterfaceProxy
implementation.
ppb_flash_message_loop_proxy.h
27
: public
InterfaceProxy
,
35
//
InterfaceProxy
implementation.
ppb_testing_proxy.h
23
class PPB_Testing_Proxy : public
InterfaceProxy
{
30
//
InterfaceProxy
implementation.
ppp_content_decryptor_private_proxy.h
21
class PPP_ContentDecryptor_Private_Proxy : public
InterfaceProxy
{
29
//
InterfaceProxy
implementation.
ppp_input_event_proxy.h
18
class PPP_InputEvent_Proxy : public
InterfaceProxy
{
25
//
InterfaceProxy
implementation.
ppp_instance_private_proxy.h
20
class PPP_Instance_Private_Proxy : public
InterfaceProxy
{
28
//
InterfaceProxy
implementation.
ppp_instance_proxy.h
28
class PPP_Instance_Proxy : public
InterfaceProxy
{
39
//
InterfaceProxy
implementation.
ppp_printing_proxy.h
22
class PPP_Printing_Proxy : public
InterfaceProxy
{
29
//
InterfaceProxy
implementation.
ppp_video_decoder_proxy.h
19
class PPP_VideoDecoder_Proxy : public
InterfaceProxy
{
26
//
InterfaceProxy
implementation.
ppp_class_proxy.h
26
class PPP_Class_Proxy : public
InterfaceProxy
{
35
static
InterfaceProxy
* Create(Dispatcher* dispatcher);
50
//
InterfaceProxy
implementation.
ppp_input_event_proxy.cc
57
InterfaceProxy
* CreateInputEventProxy(Dispatcher* dispatcher) {
64
:
InterfaceProxy
(dispatcher),
76
const
InterfaceProxy
::Info* PPP_InputEvent_Proxy::GetInfo() {
Completed in 489 milliseconds
1
2
3