OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:shell_handle
(Results
1 - 25
of
61
) sorted by null
1
2
3
/external/chromium_org/mojo/tools/package_manager/
package_manager.cc
9
MojoResult MojoMain(MojoHandle
shell_handle
) {
11
return runner.Run(
shell_handle
);
/external/chromium_org/mojo/shell/
ui_application_loader_android.cc
20
ScopedMessagePipeHandle
shell_handle
) {
22
new ApplicationLoader::SimpleLoadCallbacks(
shell_handle
.Pass()));
52
ScopedMessagePipeHandle
shell_handle
= callbacks->RegisterApplication();
local
53
if (!
shell_handle
.is_valid())
62
base::Owned(new ScopedMessagePipeHandle(
shell_handle
.Pass()))));
78
ScopedMessagePipeHandle*
shell_handle
) {
81
ui_loader_->Load(manager, url,
shell_handle
->Pass());
view_manager_loader.cc
26
ScopedMessagePipeHandle
shell_handle
= callbacks->RegisterApplication();
local
27
if (!
shell_handle
.is_valid())
33
new ApplicationImpl(this,
shell_handle
.Pass()));
network_application_loader.cc
35
ScopedMessagePipeHandle
shell_handle
= callbacks->RegisterApplication();
local
36
if (!
shell_handle
.is_valid())
42
new ApplicationImpl(this,
shell_handle
.Pass()));
/external/chromium_org/mojo/public/cpp/application/
application_runner.h
17
// MojoResult MojoMain(MojoHandle
shell_handle
) {
19
// return runner.Run(
shell_handle
);
34
MojoResult Run(MojoHandle
shell_handle
);
/external/chromium_org/mojo/application_manager/
application_loader.cc
12
ScopedMessagePipeHandle
shell_handle
)
13
: shell_handle_(
shell_handle
.Pass()) {
background_shell_application_loader.cc
20
ScopedMessagePipeHandle
shell_handle
) {
22
new ApplicationLoader::SimpleLoadCallbacks(
shell_handle
.Pass()));
56
ScopedMessagePipeHandle
shell_handle
= callbacks->RegisterApplication();
local
57
if (!
shell_handle
.is_valid())
80
base::Owned(new ScopedMessagePipeHandle(
shell_handle
.Pass()))));
111
ScopedMessagePipeHandle*
shell_handle
) {
115
background_loader_->Load(manager, url,
shell_handle
->Pass());
/external/chromium_org/mojo/apps/js/
main.cc
10
MojoResult MojoMain(MojoHandle
shell_handle
) {
14
return runner.Run(
shell_handle
);
/external/chromium_org/mojo/examples/apptest/
example_service_application.cc
25
MojoResult MojoMain(MojoHandle
shell_handle
) {
27
return runner.Run(
shell_handle
);
/external/chromium_org/mojo/public/cpp/application/lib/
application_impl.cc
31
ScopedMessagePipeHandle
shell_handle
)
33
BindShell(
shell_handle
.Pass());
37
MojoHandle
shell_handle
)
39
BindShell(MakeScopedHandle(MessagePipeHandle(
shell_handle
)));
82
void ApplicationImpl::BindShell(ScopedMessagePipeHandle
shell_handle
) {
84
shell_.Bind(
shell_handle
.Pass());
application_runner.cc
23
MojoResult ApplicationRunner::Run(MojoHandle
shell_handle
) {
28
MakeScopedHandle(MessagePipeHandle(
shell_handle
)));
/external/chromium_org/mojo/examples/echo/
echo_service.cc
39
MojoResult MojoMain(MojoHandle
shell_handle
) {
41
return runner.Run(
shell_handle
);
echo_client.cc
41
MojoResult MojoMain(MojoHandle
shell_handle
) {
43
return runner.Run(
shell_handle
);
/external/chromium_org/mojo/application/
application_runner_chromium.h
19
// MojoResult MojoMain(MojoHandle
shell_handle
) {
21
// return runner.Run(
shell_handle
);
38
MojoResult Run(MojoHandle
shell_handle
);
application_runner_chromium.cc
39
MojoResult ApplicationRunnerChromium::Run(MojoHandle
shell_handle
) {
56
MakeScopedHandle(MessagePipeHandle(
shell_handle
)));
/external/chromium_org/mojo/examples/aura_demo/
view_manager_init.cc
37
MojoResult MojoMain(MojoHandle
shell_handle
) {
39
return runner.Run(
shell_handle
);
/external/chromium_org/mojo/examples/dbus_echo/
dbus_echo_app.cc
49
MojoResult MojoMain(MojoHandle
shell_handle
) {
51
return runner.Run(
shell_handle
);
/external/chromium_org/mojo/examples/demo_launcher/
demo_launcher.cc
38
MojoResult MojoMain(MojoHandle
shell_handle
) {
40
return runner.Run(
shell_handle
);
/external/chromium_org/mojo/examples/surfaces_app/
child_app.cc
48
MojoResult MojoMain(MojoHandle
shell_handle
) {
50
return runner.Run(
shell_handle
);
child_gl_app.cc
57
MojoResult MojoMain(MojoHandle
shell_handle
) {
59
return runner.Run(
shell_handle
);
/external/chromium_org/mojo/examples/wm_flow/init/
init.cc
40
MojoResult MojoMain(MojoHandle
shell_handle
) {
42
return runner.Run(
shell_handle
);
/external/chromium_org/mojo/services/clipboard/
main.cc
42
MojoResult MojoMain(MojoHandle
shell_handle
) {
44
return runner.Run(
shell_handle
);
/external/chromium_org/mojo/services/surfaces/
surfaces_service_application.cc
50
MojoResult MojoMain(MojoHandle
shell_handle
) {
52
return runner.Run(
shell_handle
);
/external/chromium_org/mojo/services/test_service/
test_request_tracker_application.cc
44
MojoResult MojoMain(MojoHandle
shell_handle
) {
47
return runner.Run(
shell_handle
);
test_service_application.cc
57
MojoResult MojoMain(MojoHandle
shell_handle
) {
59
return runner.Run(
shell_handle
);
Completed in 868 milliseconds
1
2
3