Home
last modified time | relevance | path

Searched refs:MojoCreateSharedBufferOptions (Results 1 – 13 of 13) sorted by relevance

/external/libchrome/mojo/core/
Dshared_buffer_dispatcher_unittest.cc29 const uint32_t kSizeOfCreateOptions = sizeof(MojoCreateSharedBufferOptions);
35 const MojoCreateSharedBufferOptions& validated_options) { in RevalidateCreateOptions()
39 MojoCreateSharedBufferOptions revalidated_options = {}; in RevalidateCreateOptions()
59 MojoCreateSharedBufferOptions validated_options = {}; in TEST_F()
73 MojoCreateSharedBufferOptions options = { in TEST_F()
77 MojoCreateSharedBufferOptions validated_options = {}; in TEST_F()
90 MojoCreateSharedBufferOptions options = { in TEST_F()
94 MojoCreateSharedBufferOptions unused; in TEST_F()
101 MojoCreateSharedBufferOptions options = { in TEST_F()
105 MojoCreateSharedBufferOptions unused; in TEST_F()
[all …]
Dshared_buffer_dispatcher.h30 static const MojoCreateSharedBufferOptions kDefaultCreateOptions;
38 const MojoCreateSharedBufferOptions* in_options,
39 MojoCreateSharedBufferOptions* out_options);
46 const MojoCreateSharedBufferOptions& validated_options,
Dshared_buffer_dispatcher.cc47 const MojoCreateSharedBufferOptions
49 static_cast<uint32_t>(sizeof(MojoCreateSharedBufferOptions)),
54 const MojoCreateSharedBufferOptions* in_options, in ValidateCreateOptions()
55 MojoCreateSharedBufferOptions* out_options) { in ValidateCreateOptions()
63 UserOptionsReader<MojoCreateSharedBufferOptions> reader(in_options); in ValidateCreateOptions()
67 if (!OPTIONS_STRUCT_HAS_MEMBER(MojoCreateSharedBufferOptions, flags, reader)) in ValidateCreateOptions()
82 const MojoCreateSharedBufferOptions& /*validated_options*/, in Create() argument
Dcore.h265 const MojoCreateSharedBufferOptions* options,
Dmultiprocess_message_pipe_unittest.cc325 MojoCreateSharedBufferOptions options; in TEST_F()
538 MojoCreateSharedBufferOptions options; in TEST_P()
658 MojoCreateSharedBufferOptions options; in TEST_F()
Dentrypoints.cc186 const MojoCreateSharedBufferOptions* options, in MojoCreateSharedBufferImpl()
Dcore.cc866 const MojoCreateSharedBufferOptions* options, in CreateSharedBuffer()
869 MojoCreateSharedBufferOptions validated_options = {}; in CreateSharedBuffer()
/external/libchrome/mojo/public/c/system/
Dbuffer.h26 struct MOJO_ALIGNAS(8) MojoCreateSharedBufferOptions { struct
34 MOJO_STATIC_ASSERT(sizeof(MojoCreateSharedBufferOptions) == 8, argument
141 const struct MojoCreateSharedBufferOptions* options,
Dthunks.h128 const struct MojoCreateSharedBufferOptions* options,
Dthunks.cc249 const MojoCreateSharedBufferOptions* options, in MojoCreateSharedBuffer()
/external/libchrome/libchrome_tools/patch/
Dalignof_int64.patch51 @@ -30,7 +30,7 @@ struct MOJO_ALIGNAS(8) MojoCreateSharedBufferOptions {
57 MOJO_STATIC_ASSERT(sizeof(MojoCreateSharedBufferOptions) == 8,
58 "MojoCreateSharedBufferOptions has wrong size");
/external/libchrome/mojo/public/java/system/
Dcore_impl.cc72 const MojoCreateSharedBufferOptions* options = 0; in JNI_CoreImpl_CreateSharedBuffer()
78 DCHECK_EQ(buffer_size, sizeof(MojoCreateSharedBufferOptions)); in JNI_CoreImpl_CreateSharedBuffer()
79 options = static_cast<const MojoCreateSharedBufferOptions*>(buffer_start); in JNI_CoreImpl_CreateSharedBuffer()
/external/libchrome/mojo/public/cpp/system/
Dbuffer.cc11 MojoCreateSharedBufferOptions options = {sizeof(options), in Create()