HomeSort by relevance Sort by last modified time
    Searched refs:mojo (Results 1 - 25 of 610) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libchrome/mojo/core/
configuration.cc 5 #include "mojo/core/configuration.h"
7 namespace mojo { namespace
15 } // namespace mojo
entrypoints.h 8 #include "mojo/core/system_impl_export.h"
9 #include "mojo/public/c/system/thunks.h"
11 namespace mojo { namespace
23 } // namespace mojo
configuration.h 8 #include "mojo/core/embedder/configuration.h"
9 #include "mojo/core/system_impl_export.h"
11 namespace mojo { namespace
23 } // namespace mojo
  /external/libchrome/mojo/public/cpp/bindings/
native_enum.h 10 #include "mojo/public/cpp/bindings/lib/bindings_internal.h"
11 #include "mojo/public/cpp/bindings/lib/native_enum_data.h"
13 namespace mojo { namespace
18 } // namespace mojo
23 struct hash<mojo::NativeEnum>
24 : public mojo::internal::EnumHashImpl<mojo::NativeEnum> {};
message_dumper.h 9 #include "mojo/public/cpp/bindings/message.h"
10 #include "mojo/public/cpp/bindings/message_dumper.h"
12 namespace mojo { namespace
14 class MessageDumper : public mojo::MessageReceiver {
19 bool Accept(mojo::Message* message) override;
41 } // namespace mojo
  /external/libchrome/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
AssociatedInterfaceNotSupported.java 5 package org.chromium.mojo.bindings;
AssociatedInterfaceRequestNotSupported.java 5 package org.chromium.mojo.bindings;
ConnectionErrorHandler.java 5 package org.chromium.mojo.bindings;
7 import org.chromium.mojo.system.MojoException;
HandleOwner.java 5 package org.chromium.mojo.bindings;
7 import org.chromium.mojo.system.Handle;
Router.java 5 package org.chromium.mojo.bindings;
7 import org.chromium.mojo.system.MessagePipeHandle;
10 * A {@link Router} will handle mojo message and forward those to a {@link Connector}. It deals with
  /external/libchrome/mojo/public/java/system/javatests/src/org/chromium/mojo/bindings/test/mojom/mojo/
IntegrationTestInterfaceTestHelper.java 5 package org.chromium.mojo.bindings.test.mojom.mojo;
7 import org.chromium.mojo.bindings.MessageReceiver;
8 import org.chromium.mojo.bindings.test.mojom.mojo.IntegrationTestInterface.Method0Response;
9 import org.chromium.mojo.bindings.test.mojom.mojo.IntegrationTestInterface_Internal.IntegrationTestInterfaceMethod0ResponseParamsForwardToCallback;
  /external/libchrome/mojo/public/cpp/bindings/tests/
hash_unittest.cc 5 #include "mojo/public/cpp/bindings/lib/hash_util.h"
7 #include "mojo/public/interfaces/bindings/tests/test_structs.mojom.h"
10 namespace mojo { namespace
19 ::mojo::internal::Hash(::mojo::internal::kHashSeed,
21 ::mojo::internal::Hash(::mojo::internal::kHashSeed,
27 } // namespace mojo
bindings_test_base.h 11 namespace mojo { namespace
41 } // namespace mojo
47 mojo::BindingsTestSerializationMode::kSerializeBeforeSend, \
48 mojo::BindingsTestSerializationMode::kSerializeBeforeDispatch, \
49 mojo::BindingsTestSerializationMode::kNeverSerialize))
  /external/libchrome/mojo/public/cpp/system/
functions.h 5 // This file provides a C++ wrapping around the standalone functions of the Mojo
6 // C API, replacing the prefix of "Mojo" with a "mojo" namespace.
8 // Please see "mojo/public/c/system/functions.h" for complete documentation of
14 #include "mojo/public/c/system/functions.h"
16 namespace mojo { namespace
24 } // namespace mojo
data_pipe_drainer.h 12 #include "mojo/public/cpp/system/core.h"
13 #include "mojo/public/cpp/system/simple_watcher.h"
14 #include "mojo/public/cpp/system/system_export.h"
16 namespace mojo { namespace
29 DataPipeDrainer(Client*, mojo::ScopedDataPipeConsumerHandle source);
37 mojo::ScopedDataPipeConsumerHandle source_;
38 mojo::SimpleWatcher handle_watcher_;
45 } // namespace mojo
  /external/libchrome/ipc/
run_all_perftests.cc 5 // Copied from mojo/core/test/run_all_perftests.cc.
10 #include "mojo/core/embedder/embedder.h"
11 #include "mojo/core/embedder/scoped_ipc_support.h"
12 #include "mojo/core/test/test_support_impl.h"
17 mojo::core::Init();
19 mojo::core::ScopedIPCSupport ipc_support(
21 mojo::core::ScopedIPCSupport::ShutdownPolicy::CLEAN);
22 mojo::test::TestSupport::Init(new mojo::core::test::TestSupportImpl());
ipc_mojo_handle_attachment.h 13 #include "mojo/public/cpp/system/handle.h"
20 // This can hold any type of transferrable Mojo handle (i.e. message pipe, data
26 explicit MojoHandleAttachment(mojo::ScopedHandle handle);
31 mojo::ScopedHandle TakeHandle();
35 mojo::ScopedHandle handle_;
run_all_unittests.cc 11 #include "mojo/core/embedder/embedder.h"
12 #include "mojo/core/embedder/scoped_ipc_support.h"
20 mojo::core::Init();
22 mojo::core::ScopedIPCSupport ipc_support(
24 mojo::core::ScopedIPCSupport::ShutdownPolicy::CLEAN);
29 mojo::core::SetMachPortProvider(&mach_broker);
  /external/libchrome/mojo/core/test/
run_all_perftests.cc 9 #include "mojo/core/embedder/embedder.h"
10 #include "mojo/core/embedder/scoped_ipc_support.h"
11 #include "mojo/core/test/multiprocess_test_helper.h"
12 #include "mojo/core/test/test_support_impl.h"
13 #include "mojo/public/tests/test_support_private.h"
18 mojo::core::Init();
20 mojo::core::ScopedIPCSupport ipc_support(
22 mojo::core::ScopedIPCSupport::ShutdownPolicy::CLEAN);
23 mojo::test::TestSupport::Init(new mojo::core::test::TestSupportImpl())
    [all...]
  /external/libchrome/mojo/public/java/system/src/org/chromium/mojo/system/
UntypedHandle.java 5 package org.chromium.mojo.system;
7 import org.chromium.mojo.system.DataPipe.ConsumerHandle;
8 import org.chromium.mojo.system.DataPipe.ProducerHandle;
11 * A mojo handle of unknown type. This handle can be typed by using one of its methods, which will
18 * @see org.chromium.mojo.system.Handle#pass()
  /external/libchrome/mojo/public/java/system/src/org/chromium/mojo/system/impl/
UntypedHandleImpl.java 5 package org.chromium.mojo.system.impl;
7 import org.chromium.mojo.system.DataPipe.ConsumerHandle;
8 import org.chromium.mojo.system.DataPipe.ProducerHandle;
9 import org.chromium.mojo.system.MessagePipeHandle;
10 import org.chromium.mojo.system.SharedBufferHandle;
11 import org.chromium.mojo.system.UntypedHandle;
32 * @see org.chromium.mojo.system.UntypedHandle#pass()
40 * @see org.chromium.mojo.system.UntypedHandle#toMessagePipeHandle()
48 * @see org.chromium.mojo.system.UntypedHandle#toDataPipeConsumerHandle()
56 * @see org.chromium.mojo.system.UntypedHandle#toDataPipeProducerHandle(
    [all...]
  /external/libchrome/mojo/core/embedder/
process_error_callback.h 12 namespace mojo { namespace
19 } // namespace mojo
  /external/libchrome/mojo/core/ports/
message_filter.h 8 namespace mojo { namespace
27 } // namespace mojo
user_data.h 10 namespace mojo { namespace
23 } // namespace mojo
  /external/libchrome/mojo/public/cpp/base/
file_mojom_traits.cc 5 #include "mojo/public/cpp/base/file_mojom_traits.h"
7 #include "mojo/public/cpp/system/platform_handle.h"
9 namespace mojo { namespace
11 mojo::ScopedHandle StructTraits<mojo_base::mojom::FileDataView, base::File>::fd(
15 return mojo::WrapPlatformFile(file.TakePlatformFile());
22 if (mojo::UnwrapPlatformFile(data.TakeFd(), &platform_handle) !=
30 } // namespace mojo

Completed in 1851 milliseconds

1 2 3 4 5 6 7 8 91011>>