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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/build/mac/
verify_no_objc.sh 8 # executable file built by the Xcode target that runs the script. If such a
14 # crash when operating in an executable that has not loaded at its default
15 # address (that is, when it's a position-independent executable with the
16 # MH_PIE bit set in its mach_header) and the executable has an
21 # don't need it anyway saves about 4kB in the linked executable, although most
29 executable="${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}"
31 if xcrun otool -arch i386 -o "${executable}" | grep -q '^Contents.*section$'; \
33 echo "${0}: ${executable} has an __OBJC,__image_info section" 2>&1
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
ShaderExecutable9.cpp 8 // executable implementation details.
17 ShaderExecutable9::ShaderExecutable9(const void *function, size_t length, IDirect3DPixelShader9 *executable)
20 mPixelExecutable = executable;
24 ShaderExecutable9::ShaderExecutable9(const void *function, size_t length, IDirect3DVertexShader9 *executable)
27 mVertexExecutable = executable;
37 ShaderExecutable9 *ShaderExecutable9::makeShaderExecutable9(ShaderExecutable *executable)
39 ASSERT(HAS_DYNAMIC_TYPE(ShaderExecutable9*, executable));
40 return static_cast<ShaderExecutable9*>(executable);
ShaderExecutable9.h 8 // executable implementation details.
21 ShaderExecutable9(const void *function, size_t length, IDirect3DPixelShader9 *executable);
22 ShaderExecutable9(const void *function, size_t length, IDirect3DVertexShader9 *executable);
25 static ShaderExecutable9 *makeShaderExecutable9(ShaderExecutable *executable);
  /external/chromium_org/base/files/
file_util_android.cc 12 bool GetShmemTempDir(bool executable, base::FilePath* path) {
  /external/chromium_org/content/common/
child_process_sandbox_support_impl_shm_linux.cc 13 int MakeSharedMemorySegmentViaIPC(size_t length, bool executable) {
17 request.WriteBool(executable);
  /art/patchoat/
Android.mk 19 include art/build/Android.executable.mk
33 $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),libcutils,art/compiler,target,ndebug,$(patchoat_arch)))
36 $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),libcutils,art/compiler,target,debug,$(patchoat_arch)))
41 $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),,art/compiler,host,ndebug))
44 $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),,art/compiler,host,debug))
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
ShaderExecutable11.cpp 8 // executable implementation details.
16 ShaderExecutable11::ShaderExecutable11(const void *function, size_t length, ID3D11PixelShader *executable)
19 mPixelExecutable = executable;
25 ShaderExecutable11::ShaderExecutable11(const void *function, size_t length, ID3D11VertexShader *executable, ID3D11GeometryShader *streamOut)
28 mVertexExecutable = executable;
34 ShaderExecutable11::ShaderExecutable11(const void *function, size_t length, ID3D11GeometryShader *executable)
37 mGeometryExecutable = executable;
51 ShaderExecutable11 *ShaderExecutable11::makeShaderExecutable11(ShaderExecutable *executable)
53 ASSERT(HAS_DYNAMIC_TYPE(ShaderExecutable11*, executable));
54 return static_cast<ShaderExecutable11*>(executable);
    [all...]
ShaderExecutable11.h 8 // executable implementation details.
23 ShaderExecutable11(const void *function, size_t length, ID3D11PixelShader *executable);
24 ShaderExecutable11(const void *function, size_t length, ID3D11VertexShader *executable, ID3D11GeometryShader *streamOut);
25 ShaderExecutable11(const void *function, size_t length, ID3D11GeometryShader *executable);
29 static ShaderExecutable11 *makeShaderExecutable11(ShaderExecutable *executable);
  /art/dex2oat/
Android.mk 19 include art/build/Android.executable.mk
33 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libart-compiler,art/compiler,target,ndebug,$(dex2oat_arch)))
36 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libartd-compiler,art/compiler,target,debug,$(dex2oat_arch)))
41 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libart-compiler,art/compiler,host,ndebug))
44 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libartd-compiler,art/compiler,host,debug))
  /build/core/
host_executable_internal.mk 2 ## Standard rules for building an executable file.
16 $(call host-executable-hook)
31 $(transform-host-o-to-executable)
executable_internal.mk 2 ## Standard rules for building an executable file.
15 $(call target-executable-hook)
32 $(error $(LOCAL_PATH): $(LOCAL_MODULE) is statically linking libc to dynamic executable, please remove libc from static libs or set LOCAL_FORCE_STATIC_EXECUTABLE := true)
66 $(transform-o-to-static-executable)
69 $(transform-o-to-executable)
  /external/chromium_org/tools/gyp/test/make_global_settings/full-toolchain/
gyptest-make_global_settings.py 36 # my_readelf.py, and the python executable.
38 '-Dpython=%s' % sys.executable)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnDiffFooter.pl 47 diffName => "simple: add svn:executable",
51 Added: svn:executable
113 diffName => "simple: delete svn:executable",
117 Deleted: svn:executable
130 diffName => "simple: delete svn:executable using SVN 1.4 syntax",
134 Name: svn:executable
150 diffName => "add svn:executable, followed by empty line and start of next diff",
154 Added: svn:executable
169 diffName => "add svn:executable, followed by empty line and start of next property diff",
173 Added: svn:executable
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DynamicLoaderPOSIXDYLD.cpp 114 ModuleSP executable; local
119 executable = GetTargetExecutable();
122 if (executable.get() && load_offset != LLDB_INVALID_ADDRESS)
125 module_list.Append(executable);
126 UpdateLoadedSections(executable, load_offset);
135 ModuleSP executable; local
140 executable = GetTargetExecutable();
143 if (executable.get() && load_offset != LLDB_INVALID_ADDRESS)
146 module_list.Append(executable);
147 UpdateLoadedSections(executable, load_offset)
157 ModuleSP executable = target.GetExecutableModule(); local
    [all...]
  /external/chromium_org/chrome/tools/build/win/
syzygy_reorder.py 15 # The default relink executable to use to reorder binaries.
38 def _ReorderBinary(relink_exe, executable, symbol, destination_dir):
39 """Reorders the executable found in input_dir, and writes the resultant
40 reordered executable and symbol files to destination_dir.
42 If a file named <executable>-order.json exists, imposes that order on the
47 '--input-image=%s' % executable,
50 os.path.join(destination_dir, os.path.basename(executable))),
54 # Check whether there's an order file available for the executable.
55 order_file = '%s-order.json' % executable
59 os.path.basename(executable),
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
Proc.java 28 public static int findPidFor(String executable) throws IOException {
38 if ((line != null) && line.startsWith(executable)) {
  /external/chromium_org/third_party/libvpx/
obj_int_extract.py 15 parser.add_option('-e', '--executable', help='path to obj_int_extract.')
22 if (not options.executable or not options.format or not options.binary or
28 subprocess.check_call([options.executable, options.format, options.binary],
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
SConscript 6 from sys import executable as python_cmd
  /external/mesa3d/src/gallium/state_trackers/vega/
SConscript 6 from sys import executable as python_cmd
  /external/chromium_org/content/public/common/
child_process_sandbox_support_linux.h 17 // executable flag indicates that the caller intends to use mprotect
24 bool executable);
  /external/chromium_org/webkit/tools/layout_tests/
run_webkit_tests.py 17 cmd = [sys.executable, script] + sys.argv[1:]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/config/
utilities.mak 139 # Usage: absolute-executable-path-or-empty = $(call lookup,path)
147 # is-executable
149 # Usage: bool-value = $(call is-executable,path)
154 is-executable = $(call _is-executable-helper,$(shell-sq))
155 _is-executable-helper = $(shell sh -c $(_is-executable-sh))
156 _is-executable-sh = $(call shell-sq,test -f $(1) -a -x $(1) && echo y)
158 # get-executable
160 # Usage: absolute-executable-path-or-empty = $(call get-executable,path
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 39 String executable = System.getProperty("java.home"); local
40 if (!executable.endsWith(File.separator)) {
41 executable += File.separator;
43 executable += "bin" + File.separator + "java";
55 return run(executable, args, envp, displayOutput);
168 // construct the name of executable file
169 String executable = System.getProperty("java.home"); local
170 if (!executable.endsWith(File.separator)) {
171 executable += File.separator;
173 executable += "bin" + File.separator + "java"
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
buildbot_run.py 47 Run([sys.executable, 'test_all.py'], env=env, cwd=SDK_SRC_DIR)
65 args = [sys.executable, 'build_sdk.py']
89 cmd.extend([sys.executable, 'test_sdk.py'])
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
run_tests.py 14 args = [sys.executable, testname] + args

Completed in 385 milliseconds

1 2 3 4 5 6 7 8 91011>>