HomeSort by relevance Sort by last modified time
    Searched full:sandbox (Results 1 - 25 of 851) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/remoting/host/win/
DEPS 2 "+sandbox/win/src",
  /external/chromium_org/ash/shell/
DEPS 4 "+sandbox",
  /external/chromium_org/chrome/common/extensions/docs/templates/public/apps/manifest/
sandbox.html 1 {{+partials.standard_apps_article article:intros.manifest/sandbox/}}
  /external/chromium_org/chrome/common/extensions/docs/templates/public/extensions/manifest/
sandbox.html 1 {{+partials.standard_extensions_article article:intros.manifest/sandbox/}}
  /external/chromium_org/components/nacl/zygote/
DEPS 2 "+sandbox/linux/services",
  /external/chromium_org/ui/views/examples/
DEPS 4 "+sandbox",
  /external/chromium/third_party/libjingle/source/
README.chrome-sandbox 1 The chrome-sandbox branch contains some experemental changes that are needed
2 to make libjingle work in sandbox in Chrome.
  /external/chromium_org/components/nacl/broker/
DEPS 3 "+sandbox/win/src",
  /external/chromium_org/content/gpu/
DEPS 5 "+sandbox",
  /external/chromium_org/content/utility/
DEPS 4 "+sandbox/win/src",
  /external/chromium_org/content/worker/
DEPS 3 "+sandbox/win/src",
  /external/chromium_org/content/common/
sandbox_win.h 8 #include "sandbox/win/src/security_level.h"
12 namespace sandbox { namespace
20 // Wrapper around sandbox::TargetPolicy::SetJobLevel that checks if the sandbox
23 sandbox::JobLevel job_level,
25 sandbox::TargetPolicy* policy);
28 void AddBaseHandleClosePolicy(sandbox::TargetPolicy* policy);
30 bool InitBrokerServices(sandbox::BrokerServices* broker_services);
32 bool InitTargetServices(sandbox::TargetServices* target_services);
sandbox_init_win.cc 11 #include "sandbox/win/src/sandbox.h"
12 #include "sandbox/win/src/sandbox_types.h"
16 bool InitializeSandbox(sandbox::SandboxInterfaceInfo* sandbox_info) {
18 sandbox::BrokerServices* broker_services = sandbox_info->broker_services;
24 // process because it will initialize the sandbox broker, which requires the
31 sandbox::TargetPolicy* policy = broker_services->CreatePolicy();
32 sandbox::ResultCode result = policy->CreateAlternateDesktop(use_winsta);
33 CHECK(sandbox::SBOX_ERROR_FAILED_TO_SWITCH_BACK_WINSTATION != result);
42 sandbox::TargetServices* target_services = sandbox_info->target_services
    [all...]
  /external/chromium_org/sandbox/win/src/
handle_interception.cc 5 #include "sandbox/win/src/handle_interception.h"
7 #include "sandbox/win/src/crosscall_client.h"
8 #include "sandbox/win/src/ipc_tags.h"
9 #include "sandbox/win/src/sandbox_factory.h"
10 #include "sandbox/win/src/sandbox_nt_util.h"
11 #include "sandbox/win/src/sharedmem_ipc_client.h"
12 #include "sandbox/win/src/target_services.h"
14 namespace sandbox { namespace
44 } // namespace sandbox
handle_interception.h 5 #include "sandbox/win/src/nt_internals.h"
6 #include "sandbox/win/src/sandbox_types.h"
11 namespace sandbox { namespace
21 } // namespace sandbox
sandbox_globals.cc 7 #include "sandbox/win/src/sandbox_nt_types.h"
8 #include "sandbox/win/src/sandbox_types.h"
10 namespace sandbox { namespace
18 } // namespace sandbox
  /external/chromium_org/chrome/service/
DEPS 5 "+sandbox/win/src/sandbox_types.h",
  /external/chromium_org/sandbox/linux/seccomp-bpf/
basicblock.cc 5 #include "sandbox/linux/seccomp-bpf/basicblock.h"
7 namespace sandbox { namespace
13 } // namespace sandbox
errorcode_unittest.cc 7 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h"
8 #include "sandbox/linux/tests/unit_tests.h"
10 namespace sandbox { namespace
24 SandboxBPF sandbox; local
25 ErrorCode e3 = sandbox.Trap(NULL, NULL);
30 SandboxBPF sandbox; local
31 ErrorCode e0 = sandbox.Trap(NULL, "a");
32 ErrorCode e1 = sandbox.Trap(NULL, "b");
36 ErrorCode e2 = sandbox.Trap(NULL, "a");
51 SandboxBPF sandbox; local
72 SandboxBPF sandbox; local
    [all...]
  /external/chromium_org/content/common/sandbox_linux/
sandbox_bpf_base_policy_linux.h 10 #include "sandbox/linux/seccomp-bpf-helpers/baseline_policy.h"
11 #include "sandbox/linux/seccomp-bpf/sandbox_bpf_policy.h"
13 using sandbox::ErrorCode;
14 using sandbox::SandboxBPF;
22 class SandboxBPFBasePolicy : public sandbox::SandboxBPFPolicy {
31 // is passed to the SandboxBPF class and the sandbox is engaged.
32 // If PreSandboxHook() returns true, the sandbox is guaranteed to be
34 // This will be used when enabling the sandbox though
42 // Compose the BaselinePolicy from sandbox/.
43 scoped_ptr<sandbox::BaselinePolicy> baseline_policy_
    [all...]
bpf_renderer_policy_linux.cc 12 #include "sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.h"
13 #include "sandbox/linux/seccomp-bpf-helpers/syscall_sets.h"
14 #include "sandbox/linux/seccomp-bpf/sandbox_bpf_policy.h"
15 #include "sandbox/linux/services/linux_syscalls.h"
17 using sandbox::SyscallSets;
36 ErrorCode RendererProcessPolicy::EvaluateSyscall(SandboxBPF* sandbox,
40 return sandbox::RestrictCloneToThreadsAndEPERMFork(sandbox);
42 return sandbox::RestrictIoctl(sandbox);
    [all...]
sandbox_seccomp_bpf_linux.h 13 namespace sandbox { namespace
19 // This class has two main sets of APIs. One can be used to start the sandbox
24 // This is the API to enable a seccomp-bpf sandbox for content/
26 // Is the sandbox globally enabled, can anything use it at all ?
27 // This looks at global command line flags to see if the sandbox
30 // Should the sandbox be enabled for process_type ?
32 // Check if the kernel supports this sandbox. It's useful to "prewarm"
35 // Start the sandbox and apply the policy for process_type, depending on
39 // This is the API to enable a seccomp-bpf sandbox by using an
42 scoped_ptr<sandbox::SandboxBPFPolicy> policy)
    [all...]
  /external/chromium_org/components/nacl/loader/
nacl_main_platform_delegate_win.cc 8 #include "sandbox/win/src/sandbox.h"
19 sandbox::TargetServices* target_services =
23 // Cause advapi32 to load before the sandbox is turned on.
26 // Warm up language subsystems before the sandbox is turned on.
29 // Turn the sandbox on.
DEPS 5 "+sandbox/linux/seccomp-bpf",
6 "+sandbox/linux/services",
7 "+sandbox/win/src",
  /external/chromium_org/content/public/common/
sandbox_linux.h 10 // These form a bitmask which describes the conditions of the Linux sandbox.
14 // SUID sandbox active.
17 // SUID sandbox is using the PID namespace.
20 // SUID sandbox is using the network namespace.
23 // seccomp-bpf sandbox active.
26 // A flag that denotes an invalid sandbox status.

Completed in 1556 milliseconds

1 2 3 4 5 6 7 8 91011>>