OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:actualcallparams
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/sandbox/win/src/
crosscall_params.h
28
// server IPC code. CrossCallParams and
ActualCallParams
model the input
149
//
ActualCallParams
models an specific IPC call parameters with respect to the
188
class
ActualCallParams
: public CrossCallParams {
191
explicit
ActualCallParams
(uint32_t tag)
199
ActualCallParams
(uint32_t tag, uint32_t number_params)
272
ActualCallParams
() : CrossCallParams(0, NUMBER_PARAMS) { }
278
DISALLOW_COPY_AND_ASSIGN(
ActualCallParams
);
281
static_assert(sizeof(
ActualCallParams
<1, 1024>) == 1024, "bad size buffer");
282
static_assert(sizeof(
ActualCallParams
<2, 1024>) == 1024, "bad size buffer");
283
static_assert(sizeof(
ActualCallParams
<3, 1024>) == 1024, "bad size buffer")
[
all
...]
crosscall_client.h
21
// 2) pack the parameters in the appropriate
ActualCallParams
< > object
291
typedef
ActualCallParams
<num, kIPCChannelSize> ActualParams; \
Completed in 724 milliseconds