OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NaClIPCAdapter
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/components/nacl/loader/
nacl_ipc_adapter_unittest.cc
33
adapter_ = new
NaClIPCAdapter
(scoped_ptr<IPC::Channel>(sink_),
60
scoped_refptr<
NaClIPCAdapter
> adapter_;
90
EXPECT_EQ(sizeof(
NaClIPCAdapter
::NaClMessageHeader) + sizeof(int),
93
const
NaClIPCAdapter
::NaClMessageHeader* output_header =
94
reinterpret_cast<const
NaClIPCAdapter
::NaClMessageHeader*>(buf);
105
sizeof(
NaClIPCAdapter
::NaClMessageHeader)]));
115
const int buf_size = sizeof(
NaClIPCAdapter
::NaClMessageHeader) + sizeof(int);
118
NaClIPCAdapter
::NaClMessageHeader* header =
119
reinterpret_cast<
NaClIPCAdapter
::NaClMessageHeader*>(buf);
126
&buf[sizeof(
NaClIPCAdapter
::NaClMessageHeader)]) = value
[
all
...]
nacl_ipc_adapter.h
56
class
NaClIPCAdapter
: public base::RefCountedThreadSafe<
NaClIPCAdapter
>,
79
//
NaClIPCAdapter
is constructed, or the
NaClIPCAdapter
's channel will not be
81
NaClIPCAdapter
(const IPC::ChannelHandle& handle, base::TaskRunner* runner);
85
NaClIPCAdapter
(scoped_ptr<IPC::Channel> channel, base::TaskRunner* runner);
104
// Make a NaClDesc that refers to this
NaClIPCAdapter
. Note that the returned
134
friend class base::RefCountedThreadSafe<
NaClIPCAdapter
>;
177
virtual ~
NaClIPCAdapter
();
218
DISALLOW_COPY_AND_ASSIGN(
NaClIPCAdapter
);
[
all
...]
nacl_ipc_adapter.cc
49
if (len < sizeof(
NaClIPCAdapter
::NaClMessageHeader))
52
const
NaClIPCAdapter
::NaClMessageHeader* header =
53
reinterpret_cast<const
NaClIPCAdapter
::NaClMessageHeader*>(data);
55
sizeof(
NaClIPCAdapter
::NaClMessageHeader) + header->payload_size;
65
// This object allows the NaClDesc to hold a reference to a
NaClIPCAdapter
and
68
explicit DescThunker(
NaClIPCAdapter
* adapter_arg)
71
scoped_refptr<
NaClIPCAdapter
> adapter;
74
NaClIPCAdapter
* ToAdapter(void* handle) {
93
NaClDesc* MakeNaClDescCustom(
NaClIPCAdapter
* adapter) {
104
// to the
NaClIPCAdapter
, which checks quota. This is a NaCl-style struct. Don'
[
all
...]
nacl_listener.cc
139
scoped_refptr<
NaClIPCAdapter
> SetUpIPCAdapter(
144
scoped_refptr<
NaClIPCAdapter
> ipc_adapter(
145
new
NaClIPCAdapter
(*handle, message_loop_proxy.get()));
153
//
NaClIPCAdapter
.
350
scoped_refptr<
NaClIPCAdapter
> manifest_ipc_adapter =
Completed in 172 milliseconds