HomeSort by relevance Sort by last modified time
    Searched refs:nexe (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/native_client_sdk/src/tools/
ncval.py 32 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...]
sel_ldr.py 52 usage = 'Usage: %prog [options] <.nexe>'
53 epilog = 'Example: sel_ldr.py my_nexe.nexe'
76 nexe = args[0]
81 if not os.path.exists(nexe):
82 raise Error('executable not found: %s' % nexe)
83 if not os.path.isfile(nexe):
84 raise Error('not a file: %s' % nexe)
86 arch, dynamic = create_nmf.ParseElfHeader(nexe)
94 irt = os.path.join(SCRIPT_DIR, 'irt_core_%s.nexe' % arch_suffix)
nacl_gcc.mk 351 all: $(X86_32_OUTDIR)/$(1)_x86_32.nexe
352 $(X86_32_OUTDIR)/$(1)_x86_32.nexe: $(foreach src,$(2),$(call SRC_TO_OBJ,$(src),_x86_32)) $(foreach dep,$(4),$(STAMPDIR)/$(dep).stamp)
359 all: $(X86_64_OUTDIR)/$(1)_x86_64.nexe
360 $(X86_64_OUTDIR)/$(1)_x86_64.nexe: $(foreach src,$(2),$(call SRC_TO_OBJ,$(src),_x86_64)) $(foreach dep,$(4),$(STAMPDIR)/$(dep).stamp)
367 all: $(ARM_OUTDIR)/$(1)_arm.nexe
368 $(ARM_OUTDIR)/$(1)_arm.nexe: $(foreach src,$(2),$(call SRC_TO_OBJ,$(src),_arm)) $(foreach dep,$(4),$(STAMPDIR)/$(dep).stamp)
399 $(X86_32_OUTDIR)/$(1)_x86_32.nexe: $(X86_32_OUTDIR)/$(2)_x86_32.nexe
404 $(X86_64_OUTDIR)/$(1)_x86_64.nexe: $(X86_64_OUTDIR)/$(2)_x86_64.nexe
    [all...]
create_nmf.py 6 """Tool for automatically creating .nmf files from .nexe/.pexe/.bc executables.
45 MAIN_NEXE = 'main.nexe' # Name of entry point for execution
184 files->main.nexe for dynamic nexes, and program for static nexes
216 # the first nexe found in main_files.
231 Example: { '/path/to/my.nexe': ArchFile(my.nexe),
266 files are relative to the .nexe with the matching architecture. This is
273 main_nexes = [f for f in self.main_files if f.endswith('.nexe')]
275 # map from each arch to its corresponding main nexe.
293 # staged. Its path should be relative to the main .nexe with the sam
    [all...]
common.mk 513 # PNaCl's nexe is acquired with "remote get nexe <path>" instead of the NMF.
  /external/chromium_org/v8/tools/
nacl-run.py 81 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/
pnacl_translation_cache_unittest.cc 42 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;
279 std::string nexe; local
  /external/chromium_org/native_client_sdk/src/tools/lib/tests/
get_shared_deps_test.py 36 a list of nexe dependencies.
58 self.dyn_nexe = self.createTestNexe('test_dynamic_x86_32.nexe', 'i686')
70 '''Create an empty test .nexe file for use in create_nmf tests.
89 nexe = os.path.join(DATA_DIR, 'test_static_x86_32.nexe')
90 # GetNeeded should not raise an error if objdump is not set, but the .nexe
94 needed = get_shared_deps.GetNeeded([nexe], objdump, lib_path)
96 # static nexe should have exactly one needed file
98 self.assertEqual(needed.keys()[0], nexe)
111 # this nexe has 5 dependencie
    [all...]
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/
setup_test_links.sh 23 ln -f -s /opt/google/chrome/nacl_irt_*.nexe "$this_dir/"
  /external/chromium_org/native_client_sdk/src/doc/devguide/devcycle/
dynamic-loading.rst 72 downloading a .nexe file that's on the order of 30KB, rather than a .nexe
176 it demonstrates how to build Native Client modules (.nexe files) and shared
199 into a Native Client executable (.nexe).
202 to build x86 32-bit and 64-bit .nexe and .so files, and to generate a .nmf
277 create_nmf.py -o dlopen.nmf glibc/Release/dlopen_x86_32.nexe \
278 glibc/Release/dlopen_x86_64.nexe glibc/Release/libeightball_x86_32.so \
311 modules from the application itself (.nexe and .so files), modules from the
390 If your .nexe isn't loading, the best place to look for information that can
396 **/main.nexe: error while loading shared libraries: /main.nexe: failed to allocate code and data space for exec (…)
    [all...]
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/inbrowser_test_runner/
nacl.scons 44 # TODO(eugenis): enable when Valgrind learns to autodetect the nexe name
  /external/chromium_org/third_party/skia/platform_tools/nacl/
httpd.py 149 if path.endswith('.nexe'):
163 nexe = '.' + last_nexe
168 decoder = decode_dump.CoreDecoder(nexe, nmf, addr, None, None)
  /external/skia/platform_tools/nacl/
httpd.py 149 if path.endswith('.nexe'):
163 nexe = '.' + last_nexe
168 decoder = decode_dump.CoreDecoder(nexe, nmf, addr, None, None)
  /external/chromium_org/native_client_sdk/src/tools/tests/
create_nmf_test.py 98 """Create an empty test .nexe file for use in create_nmf tests.
137 """Copy all static .nexe files from the DATA_DIR to a temporary directory.
141 the .nexe for the architecture in.
148 * A list of the generated .nexe paths
153 nexe_name = 'test_static_%s.nexe' % arch
168 """Create dynamic .nexe files and put them in a temporary directory, with
173 the .nexe for the architecture in.
180 * A list of the generated .nexe paths
185 nexe_name = 'test_dynamic_%s.nexe' % arch
188 nexe = self._CreateTestNexe(rel_nexe, arch_alt
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/lib/
get_shared_deps.py 5 """Helper script to close over all transitive dependencies of a given .nexe
129 [ '/path/to/my.nexe',
  /external/chromium_org/native_client_sdk/src/doc/
faq.rst 57 not one ``.nexe`` file per supported architecture.
216 Store. Native Client's ``.nexe`` files are architecture-dependent and
367 even the ``.pexe`` to ``.nexe`` translator, a simplified compiler
407 generate a ``.nexe`` targetting one specific architecture using the
411 How can my web application determine which ``.nexe`` to load?
415 x86-32, x86-64 or ARM ``.nexe`` explicitly---the Native Client runtime
416 examines a manifest file (``.nmf``) to pick the right ``.nexe`` file for
453 The ``.nmf``, and ``.nexe`` or ``.pexe`` files must either be served from the
473 * Build and supply a separate ``.nexe`` file for each architecture, and
476 ``.nexe`` files will run on which architectures
    [all...]
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/
progress_event_listener.js 134 // loaded and another when the .nexe is loaded.
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/
nacltest.js 786 // Deliberately global - this is what the nexe expects.
810 // This function takes an array of messages and asserts that the nexe
898 this_.rpc.log('A nexe load error occured, aborting testing.');

Completed in 309 milliseconds