Searched refs:nexe (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/native_client_sdk/src/tools/
H A Dncval.py32 usage = 'Usage: %prog [options] <.nexe | .so>'
33 epilog = 'Example: ncval.py my_nexe.nexe'
51 nexe = args[0]
58 if not os.path.exists(nexe):
59 raise Error('executable not found: %s' % nexe)
60 if not os.path.isfile(nexe):
61 raise Error('not a file: %s' % nexe)
67 cmd = [ncval, nexe]
73 sys.stderr.write('Validating %s failed:\n' % nexe)
76 Log('Changing the modification time of %s to 0.' % nexe)
[all...]
H A Dsel_ldr.py36 usage = 'Usage: %prog [options] <.nexe>'
37 epilog = 'Example: sel_ldr.py my_nexe.nexe'
60 nexe = args[0]
65 if not os.path.exists(nexe):
66 raise Error('executable not found: %s' % nexe)
67 if not os.path.isfile(nexe):
68 raise Error('not a file: %s' % nexe)
70 arch, dynamic = create_nmf.ParseElfHeader(nexe)
78 irt = os.path.join(SCRIPT_DIR, 'irt_core_%s.nexe' % arch_suffix)
H A Dnacl_llvm.mk102 $(1)_x86_32.nexe : $(1).bc
105 $(1)_x86_64.nexe : $(1).bc
108 $(1)_arm.nexe : $(1).bc
129 # NOTE: For Debug builds we translate the .bc file to a .nexe instead of
169 EXECUTABLES=$(OUTDIR)/$(1)_x86_32.nexe $(OUTDIR)/$(1)_x86_64.nexe $(OUTDIR)/$(1)_arm.nexe
194 # the .bc -> .nexe translated app.
196 GDB_DEBUG_TARGET = $(abspath $(OUTDIR))/$(TARGET)_$(SYSARCH).nexe
H A Dnacl_gcc.mk296 all: $(OUTDIR)/$(1)_x86_32.nexe
297 $(OUTDIR)/$(1)_x86_32.nexe: $(foreach src,$(2),$(call SRC_TO_OBJ,$(src),_x86_32)) $(foreach dep,$(4),$(STAMPDIR)/$(dep).stamp)
303 all: $(OUTDIR)/$(1)_x86_64.nexe
304 $(OUTDIR)/$(1)_x86_64.nexe: $(foreach src,$(2),$(call SRC_TO_OBJ,$(src),_x86_64)) $(foreach dep,$(4),$(STAMPDIR)/$(dep).stamp)
310 all: $(OUTDIR)/$(1)_arm.nexe
311 $(OUTDIR)/$(1)_arm.nexe: $(foreach src,$(2),$(call SRC_TO_OBJ,$(src),_arm)) $(foreach dep,$(4),$(STAMPDIR)/$(dep).stamp)
341 $(OUTDIR)/$(1)_x86_32.nexe: $(OUTDIR)/$(2)_x86_32.nexe
346 $(OUTDIR)/$(1)_x86_64.nexe: $(OUTDIR)/$(2)_x86_64.nexe
[all...]
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/extension_mime_handler/
H A Dnacl.scons17 nexe = env.ProgramNameForNmf('ppapi_extension_mime_handler') variable
20 nexe,
31 env.File('$STAGING_DIR/' + nexe + '$PROGSUFFIX')])
36 env.Depends(env.Alias(nexe), dest_copy)
39 env.Publish(nexe, 'run',
48 files=env.ExtractPublishedFiles(nexe))
/external/chromium_org/v8/tools/
H A Dnacl-run.py81 def GetNaClArchFromNexe(nexe):
83 p = subprocess.Popen(['file', nexe], stdout=subprocess.PIPE)
94 def GetNaClResources(nexe):
96 nacl_arch = GetNaClArchFromNexe(nexe)
108 irt = "irt_core_x86_64.nexe"
113 irt = "irt_core_x86_32.nexe"
119 print("Invalid nexe %s" % nexe)
/external/chromium_org/components/nacl/browser/
H A Dpnacl_translation_cache_unittest.cc42 void StoreNexe(const std::string& key, const std::string& nexe);
67 const std::string& nexe) {
70 new net::DrainableIOBuffer(new net::StringIOBuffer(nexe), nexe.size()));
117 std::string nexe(buf->data(), buf->size());
118 return nexe;
262 std::string nexe; local
66 StoreNexe(const std::string& key, const std::string& nexe) argument
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/
H A Dsetup_test_links.sh23 ln -f -s /opt/google/chrome/nacl_irt_*.nexe "$this_dir/"
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/manifest/
H A Dnacl.scons50 # the 'good' nexe in the root directory will fail.
53 # the 'good' nexe in the subdirectory will succeed.
/external/chromium_org/native_client_sdk/src/doc/devguide/devcycle/
H A Ddynamic-loading.rst76 downloading a .nexe file that's on the order of 30KB, rather than a .nexe
173 it demonstrates how to build Native Client modules (.nexe files) and shared
196 into a Native Client executable (.nexe).
199 to build x86 32-bit and 64-bit .nexe and .so files, and to generate a .nmf
274 create_nmf.py -o dlopen.nmf glibc/Release/dlopen_x86_32.nexe \
275 glibc/Release/dlopen_x86_64.nexe glibc/Release/libeightball_x86_32.so \
308 modules from the application itself (.nexe and .so files), modules from the
386 If your .nexe isn't loading, the best place to look for information that can
392 **/main.nexe
[all...]
H A Dvs-addin.rst39 * Compile your module into a .nexe or .pexe file using the Native Client SDK
83 module built and running as a .nexe file. This offers the ability to port
94 builds the corresponding type of Native Client module (either a .nexe or
104 systems respectively. You need both platforms to build a full set of .nexe
113 The NaClARM platform is targeted at ARM-based processors. You can build .nexe
116 an ARM-based .nexe file and then run the module from a Chrome browser on an ARM
133 manifest file will contain a single .pexe file rather than multiple .nexe
138 Native Client SDK to transform the .pexe file into a NaCl64 .nexe file and runs
359 * ``Application (.nexe)`` for ``NaCl32``, ``NaCl64``, and ``NaClARM``
435 or .nexe file
[all...]
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/bad/
H A Dnacl.scons83 # Bad nexe tests that won't work in PNaCl (native)
84 # For example, partly_invalid.nexe has inline assembly in its source files.
85 # Just bail out here for PNaCl, since the NMF will require the .nexe
/external/chromium_org/native_client_sdk/src/tools/tests/
H A Dcreate_nmf_test.py29 static_nexe = os.path.join(DATA_DIR, 'test_static_arm.nexe')
33 dyn_nexe = os.path.join(DATA_DIR, 'test_dynamic_x86_32.nexe')
34 static_nexe = os.path.join(DATA_DIR, 'test_static_x86_32.nexe')
39 dyn_nexe = os.path.join(DATA_DIR, 'test_dynamic_x86_64.nexe')
40 static_nexe = os.path.join(DATA_DIR, 'test_static_x86_64.nexe')
51 static_nexe = os.path.join(DATA_DIR, 'test_static_arm.nexe')
58 dyn_nexe = os.path.join(DATA_DIR, 'test_dynamic_x86_32.nexe')
59 static_nexe = os.path.join(DATA_DIR, 'test_static_x86_32.nexe')
71 dyn_nexe = os.path.join(DATA_DIR, 'test_dynamic_x86_64.nexe')
72 static_nexe = os.path.join(DATA_DIR, 'test_static_x86_64.nexe')
[all...]
/external/chromium_org/ppapi/native_client/tests/nacl_browser/inbrowser_test_runner/
H A Dnacl.scons46 # TODO(eugenis): enable when Valgrind learns to autodetect the nexe name
/external/chromium_org/native_client_sdk/src/doc/
H A Dfaq.rst57 not one ``.nexe`` file per supported architecture.
209 Store. Native Client's ``.nexe`` files are architecture-dependent and
374 even the ``.pexe`` to ``.nexe`` translator, a simplified compiler
416 generate a ``.nexe`` targetting one specific architecture using the
420 How can my web application determine which ``.nexe`` to load?
424 x86-32, x86-64 or ARM ``.nexe`` explicitly---the Native Client runtime
425 examines a manifest file (``.nmf``) to pick the right ``.nexe`` file for
463 The ``.nmf``, and ``.nexe`` or ``.pexe`` files must either be served from the
483 * Build and supply a separate ``.nexe`` file for each architecture, and
486 ``.nexe`` file
[all...]

Completed in 1020 milliseconds