OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nexe
(Results
26 - 50
of
114
) sorted by null
1
2
3
4
5
/external/chromium_org/native_client_sdk/src/tools/
sel_ldr.py
36
usage = 'Usage: %prog [options] <.
nexe
>'
38
epilog = 'Example: sel_ldr.py my_nexe.
nexe
'
51
nexe
= args[0]
56
if not os.path.exists(
nexe
):
57
raise Error('executable not found: %s' %
nexe
)
58
if not os.path.isfile(
nexe
):
59
raise Error('not a file: %s' %
nexe
)
61
arch, dynamic = create_nmf.ParseElfHeader(
nexe
)
71
irt = os.path.join(SCRIPT_DIR, 'irt_core_%s.
nexe
' % arch_suffix)
nacl_llvm.mk
101
$(1)_x86_32.
nexe
: $(1).bc
104
$(1)_x86_64.
nexe
: $(1).bc
107
$(1)_arm.
nexe
: $(1).bc
128
# NOTE: For Debug builds we translate the .bc file to a .
nexe
instead of
133
EXECUTABLES=$(OUTDIR)/$(1)_x86_32.
nexe
$(OUTDIR)/$(1)_x86_64.
nexe
$(OUTDIR)/$(1)_arm.
nexe
192
# the .bc -> .
nexe
translated app.
194
GDB_DEBUG_TARGET = $(abspath $(OUTDIR))/$(TARGET)_$(SYSARCH).
nexe
create_html.py
11
Native Client executable (.
nexe
).
13
If the script if given a .
nexe
file it will produce both html
113
if ext not in ('.
nexe
', '.pexe', '.nmf'):
114
raise Error('input file must be .
nexe
, .pexe or .nmf: %s' % filename)
157
usage = 'Usage: %prog [options] <.
nexe
/.pexe or .nmf>'
159
epilog = 'Example: create_html.py -o index.html my_nexe.
nexe
'
/external/chromium_org/ppapi/c/
pp_module.h
17
* or .
nexe
.
26
* The PP_Module value uniquely identifies the module or .
nexe
.
pp_instance.h
27
* module (.
nexe
/PP_Module). There will be one module instance for every
/external/chromium_org/native_client_sdk/src/tools/tests/
sel_ldr_test.py
39
sel_ldr.main(['foo.
nexe
'])
40
parse_header.assert_called_once_with('foo.
nexe
')
51
sel_ldr.main(['foo.
nexe
'])
52
parse_header.assert_called_once_with('foo.
nexe
')
/external/chromium_org/chrome/
browser_tests.isolate
95
'<(PRODUCT_DIR)/nacl_irt_x86_64.
nexe
',
96
'<(PRODUCT_DIR)/ppapi_nacl_tests_glibc_x64.
nexe
',
97
'<(PRODUCT_DIR)/ppapi_nacl_tests_newlib_x64.
nexe
',
98
'<(PRODUCT_DIR)/ppapi_nacl_tests_pnacl_newlib_x64.
nexe
',
114
'<(PRODUCT_DIR)/ppapi_nacl_tests_glibc_x32.
nexe
',
115
'<(PRODUCT_DIR)/ppapi_nacl_tests_newlib_x32.
nexe
',
116
'<(PRODUCT_DIR)/ppapi_nacl_tests_pnacl_newlib_x32.
nexe
',
/external/chromium_org/ppapi/api/private/
ppb_nacl_private.idl
29
* indicates that the
nexe
run by sel_ldr will use the PPAPI APIs.
30
* This implies that LaunchSelLdr is run from the main thread. If a
nexe
34
* The |enable_dyncode_syscalls| flag indicates whether or not the
nexe
36
* The |enable_exception_handling| flag indicates whether or not the
nexe
49
/* This function starts the IPC proxy so the
nexe
can communicate with the
102
* handle is closed (or earlier on POSIX systems), to use for the
nexe
104
* |last_modified|, and |etag|. If the
nexe
is already present
105
* in the cache, |is_hit| is set to PP_TRUE and the contents of the
nexe
111
* the cache key and the fd, and copy the
nexe
into the cache after the
128
* not guaranteed to store the
nexe
even if |success| is true; if there i
[
all
...]
/external/chromium_org/native_client_sdk/src/build_tools/
nacl_interp_loader_mono.sh
6
# Usage: nacl_interp_loader.sh PLATFORM
NEXE
ARGS...
32
IRT="$NACL_SDK_ROOT/toolchain/linux_x86/runtime/irt_core_${arch}.
nexe
"
38
IRT="$NACL_SDK_ROOT/tools/irt_core_${arch}.
nexe
"
/external/chromium_org/native_client_sdk/src/
.gitignore
7
*.
nexe
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
pnacl_coordinator.h
53
//
nexe
, e.g.,
55
// (4) Load the
nexe
from "fd".
60
// (2) ld links the object code in obj_file_ and produces a
nexe
in nexe_file_.
68
// Get an FD which contains the cached
nexe
, or is writeable for
95
// Call this to take ownership of the FD of the translated
nexe
after
168
// Invoked when we've gotten a temp FD for the
nexe
, either with the
nexe
190
// the
nexe
data from temp_nexe_file_ to> cached_nexe_file_.
197
// If the copy of the
nexe
to the not-yet-committed-to-cache file
202
// Invoked when the nexe_file_ temporary has been renamed to the
nexe
name
[
all
...]
plugin.h
174
// Report the error code that sel_ldr produces when starting a
nexe
.
177
// Report
nexe
death after load to JS and shut down the proxy.
214
// The manifest file has been received and the
nexe
successfully requested.
216
// The
nexe
has been loaded and the proxy started, so it is ready for
280
// Typically, the MIME type will be application/x-nacl. However, if the
NEXE
346
// Callback used when getting the URL for the .
nexe
file. If the URL loading
364
// Callback used when a .
nexe
is translated from bitcode. If the translation
372
// data: URI) is fetched, then the JSON is parsed. Once a valid .
nexe
is
374
// .
nexe
is loaded and run.
382
// Processes the JSON manifest string and starts loading the
nexe
[
all
...]
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/bad/
ppapi_bad_native.html
10
<title> PPAPI bad manifest/
nexe
URLs </title>
17
// This
nexe
should fail validation inside the sel_ldr.
/external/chromium_org/ppapi/
ppapi_nacl_test_common.gypi
24
# These variables are used for
nexe
building and for library building.
25
'out_newlib32%': '>(nacl_newlib_out_dir)/>(nexe_target)_newlib_x86_32.
nexe
',
26
'out_newlib64%': '>(nacl_newlib_out_dir)/>(nexe_target)_newlib_x86_64.
nexe
',
27
'out_newlib_arm%': '>(nacl_newlib_out_dir)/>(nexe_target)_newlib_arm.
nexe
',
29
'out_glibc32%': '>(nacl_glibc_out_dir)/>(nexe_target)_glibc_x86_32.
nexe
',
30
'out_glibc64%': '>(nacl_glibc_out_dir)/>(nexe_target)_glibc_x86_64.
nexe
',
31
'out_glibc_arm%': '>(nacl_glibc_out_dir)/>(nexe_target)_glibc_arm.
nexe
',
99
# We don't have the nexes as inputs because the ARM
nexe
may not
/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/ppapi/c/private/
ppb_nacl_private.h
57
* indicates that the
nexe
run by sel_ldr will use the PPAPI APIs.
58
* This implies that LaunchSelLdr is run from the main thread. If a
nexe
62
* The |enable_dyncode_syscalls| flag indicates whether or not the
nexe
64
* The |enable_exception_handling| flag indicates whether or not the
nexe
76
/* This function starts the IPC proxy so the
nexe
can communicate with the
122
* handle is closed (or earlier on POSIX systems), to use for the
nexe
124
* |last_modified|, and |etag|. If the
nexe
is already present
125
* in the cache, |is_hit| is set to PP_TRUE and the contents of the
nexe
131
* the cache key and the fd, and copy the
nexe
into the cache after the
147
* not guaranteed to store the
nexe
even if |success| is true; if there i
[
all
...]
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/crash/
ppapi_crash.html
9
<title>
Nexe
Crash Test</title>
12
<h1>
Nexe
Crash Test</h1>
46
// In case the
nexe
does not crash right away, we will ping it
ppapi_crash_ppapi_off_main_thread.cc
5
// Test that we kill the
nexe
on a CHECK and handle it gracefully on the
/external/chromium_org/chrome/browser/nacl_host/
pnacl_translation_cache.h
52
// Store the
nexe
in the translation cache. A reference to |nexe_data| is
56
// Store the
nexe
in the translation cache, and call |callback| with
64
// Retrieve the
nexe
from the translation cache. Write the data into |
nexe
|
pnacl_host.h
49
// handle is closed (or earlier on POSIX systems), to use for the
nexe
53
// If the
nexe
is already present
54
// in the cache, |is_hit| is set to true and the contents of the
nexe
60
// TranslationFinished after it finishes translation to allow the
nexe
to be
65
// If |is_incognito| is true, the
nexe
will not be stored
77
// store the
nexe
translated for the instance in the cache.
/external/chromium_org/ppapi/api/
pp_instance.idl
13
* module (.
nexe
/PP_Module). There will be one module instance for every
/external/chromium_org/ppapi/native_client/src/trusted/plugin/osx_ppapi/
Info.plist
39
<string>
nexe
,nacl</string>
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/manifest/
nacl.scons
50
# the 'good'
nexe
in the root directory will fail.
53
# the 'good'
nexe
in the subdirectory will succeed.
/external/chromium_org/chrome/installer/
mini_installer.gyp
234
'<(PRODUCT_DIR)/nacl_irt_x86_32.
nexe
',
235
'<(PRODUCT_DIR)/nacl_irt_x86_64.
nexe
',
241
'<(PRODUCT_DIR)/nacl_irt_x86_32.
nexe
',
259
'<(PRODUCT_DIR)/nacl_irt_x86_32.
nexe
',
260
'<(PRODUCT_DIR)/nacl_irt_x86_64.
nexe
',
/external/chromium_org/chrome/tools/build/linux/
FILES.cfg
136
'filename': 'nacl_irt_x86_32.
nexe
',
141
'filename': 'nacl_irt_x86_64.
nexe
',
146
'filename': 'nacl_irt_arm.
nexe
',
217
'filename': 'nacl_irt_x86_32.
nexe
.debug',
223
'filename': 'nacl_irt_x86_64.
nexe
.debug',
Completed in 1092 milliseconds
1
2
3
4
5