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

1 2 3 4 5 6 7 8

  /external/chromium_org/components/nacl/common/
nacl_nonsfi_util.h 8 namespace nacl { namespace
16 } // namespace nacl
pnacl_types.cc 5 #include "components/nacl/common/pnacl_types.h"
7 namespace nacl { namespace
13 } // namespace nacl
nacl_cmd_line.h 12 namespace nacl { namespace
15 // process to cmd_line that will be used for launching the NaCl loader/broker.
18 } // namespace nacl
nacl_paths.h 13 namespace nacl { namespace
29 } // namespace nacl
nacl_nonsfi_util.cc 5 #include "components/nacl/common/nacl_nonsfi_util.h"
9 #include "components/nacl/common/nacl_switches.h"
11 namespace nacl { namespace
24 } // namespace nacl
  /external/chromium_org/components/nacl/loader/
nacl_helper_win_64.h 8 namespace nacl { namespace
12 } // namespace nacl
nacl_helper_linux.h 8 namespace nacl { namespace
25 // For communications between NaCl loader and browser.
29 // For communications between NaCl loader and zygote.
32 } // namespace nacl
  /external/chromium_org/components/nacl/loader/nonsfi/
irt_exception_handling.h 8 namespace nacl { namespace
14 } // namespace nacl
irt_random.h 8 namespace nacl { namespace
17 } // namespace nacl
irt_resource_open.cc 5 #include "components/nacl/loader/nonsfi/irt_interfaces.h"
8 namespace nacl { namespace
16 } // namespace nacl
nonsfi_main.h 11 namespace nacl { namespace
14 // Launch NaCl with Non SFI mode.
18 } // namespace nacl
irt_ppapi.cc 6 #include "components/nacl/loader/nonsfi/irt_interfaces.h"
11 namespace nacl { namespace
30 } // namespace nacl
34 return nacl::nonsfi::g_pp_functions.PPP_InitializeModule(
39 nacl::nonsfi::g_pp_functions.PPP_ShutdownModule();
43 return nacl::nonsfi::g_pp_functions.PPP_GetInterface(interface_name);
  /external/chromium_org/components/nacl/loader/sandbox_linux/
nacl_bpf_sandbox_linux.h 8 namespace nacl { namespace
12 } // namespace nacl
  /external/chromium_org/components/nacl/renderer/
ppb_nacl_private_impl.h 12 namespace nacl { namespace
16 } // namespace nacl
sandbox_arch.h 5 // Routines for determining the most appropriate NaCl executable for
11 namespace nacl { namespace
12 // Returns the kind of SFI sandbox implemented by NaCl on this
16 } // namespace nacl
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
nacl_subprocess.h 5 // Instances of NaCl modules spun up within the plugin as a subprocess.
6 // This may represent the "main" nacl module, or it may represent helpers
8 // a NaCl module for a compiler could be loaded to translate LLVM bitcode
30 // A class representing an instance of a NaCl module, loaded by the plugin.
33 NaClSubprocess(const nacl::string& description,
47 // The socket used for communicating w/ the NaCl module.
51 nacl::string description() const { return description_; }
55 nacl::string detailed_description() const;
65 bool InvokeSrpcMethod(const nacl::string& method_name,
66 const nacl::string& input_signature
    [all...]
temporary_file.h 50 // The nacl::DescWrapper* for the writeable version of the file.
51 nacl::DescWrapper* write_wrapper() { return write_wrapper_.get(); }
52 nacl::DescWrapper* read_wrapper() { return read_wrapper_.get(); }
65 nacl::scoped_ptr<nacl::DescWrapper> read_wrapper_;
66 nacl::scoped_ptr<nacl::DescWrapper> write_wrapper_;
srpc_client.h 8 // service runtime or to untrusted NaCl threads.
19 namespace nacl { namespace
21 } // namespace nacl
34 static SrpcClient* New(nacl::DescWrapper* wrapper);
38 bool Init(nacl::DescWrapper* socket);
44 bool HasMethod(const nacl::string& method_name);
46 bool Invoke(const nacl::string& method_name, SrpcParams* params);
49 bool InitParams(const nacl::string& method_name, SrpcParams* params);
58 typedef std::map<nacl::string, MethodInfo*> Methods;
pnacl_resources.h 45 const nacl::string& GetLlcUrl() { return llc_tool_name_; }
46 const nacl::string& GetLdUrl() { return ld_tool_name_; }
58 nacl::string llc_tool_name_;
59 nacl::string ld_tool_name_;
pnacl_translate_thread.h 24 namespace nacl { namespace
47 nacl::DescWrapper* invalid_desc_wrapper,
51 const nacl::string &architecture_attributes,
76 const nacl::string& error_string);
85 nacl::scoped_ptr<NaClThread> translate_thread_;
89 nacl::scoped_ptr<NaClSubprocess> llc_subprocess_;
90 nacl::scoped_ptr<NaClSubprocess> ld_subprocess_;
116 nacl::DescWrapper* invalid_desc_wrapper_;
120 nacl::string architecture_attributes_;
pnacl_coordinator.h 64 const nacl::string& pexe_url,
101 const nacl::string& pexe_url,
142 void ReportNonPpapiError(PP_NaClError err, const nacl::string& message);
147 int32_t pp_error, const nacl::string& message);
169 nacl::scoped_ptr<PnaclResources> resources_;
172 nacl::string pexe_url_;
178 nacl::string architecture_attributes_;
182 nacl::scoped_ptr<nacl::DescWrapper> invalid_desc_wrapper_;
187 nacl::scoped_ptr<TempFile> temp_nexe_file_
    [all...]
  /external/chromium_org/components/nacl/browser/
nacl_file_host.h 22 namespace nacl { namespace
26 // Opens NaCl Files in the Browser process, on behalf of the NaCl plugin.
30 // Open a PNaCl file (readonly) on behalf of the NaCl plugin.
32 scoped_refptr<nacl::NaClHostMessageFilter> nacl_host_message_filter,
41 // Opens a NaCl executable file for reading and executing.
43 scoped_refptr<nacl::NaClHostMessageFilter> nacl_host_message_filter,
nacl_process_host_unittest.cc 5 #include "components/nacl/browser/nacl_process_host.h"
11 void* addr = nacl::AllocateAddressSpaceASLR(GetCurrentProcess(), size);
  /external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
internal_utils.h 27 bool HasScriptableTest(nacl::string test_name);
28 PP_Var RunScriptableTest(nacl::string test_name);
30 void RunTest(nacl::string test_name);
  /external/chromium_org/native_client_sdk/src/web/
update.sh 3 gsutil cp -a public-read $file gs://nativeclient-mirror/nacl/nacl_sdk

Completed in 168 milliseconds

1 2 3 4 5 6 7 8