Searched refs:executable (Results 1 – 25 of 27) sorted by relevance
12
/build/soong/python/tests/ |
D | py-cmd_test.py | 51 assert_equal("basename(sys.executable)", os.path.basename(sys.executable), 'py2-cmd') 53 assert_equal("basename(sys.executable)", os.path.basename(sys.executable), 'py3-cmd') 54 assert_equal("sys.exec_prefix", sys.exec_prefix, sys.executable) 55 assert_equal("sys.prefix", sys.prefix, sys.executable) 62 assert_equal("sys.path[2]", sys.path[2], os.path.join(sys.executable, "internal")) 63 assert_equal("sys.path[3]", sys.path[3], os.path.join(sys.executable, "internal", "stdlib")) 68 …assert_equal("sys.path[2]", sys.path[2], os.path.join(sys.executable, 'lib', 'python' + str(sys.ve… 69 …assert_equal("sys.path[3]", sys.path[3], os.path.join(sys.executable, 'lib', 'python' + str(sys.ve… 70 …assert_equal("sys.path[4]", sys.path[4], os.path.join(sys.executable, 'lib', 'python' + str(sys.ve… 71 …assert_equal("sys.path[5]", sys.path[5], os.path.join(sys.executable, 'lib', 'python' + str(sys.ve… [all …]
|
D | par_test.py | 36 assert_equal("sys.executable", sys.executable, None)
|
/build/make/core/ |
D | host_executable_internal.mk | 15 ifdef host-executable-hook 16 $(call host-executable-hook) 43 $(transform-host-o-to-executable)
|
D | executable_internal.mk | 15 ifdef target-executable-hook 16 $(call target-executable-hook) 34 $(error $(LOCAL_PATH): $(LOCAL_MODULE) is statically linking libc to dynamic executable, please rem… 70 $(transform-o-to-static-executable) 74 $(transform-o-to-executable)
|
D | LINUX_KERNEL_COPYING | 151 under Section 2) in object code or executable form under the terms of 168 received the program in object code or executable form with such 172 making modifications to it. For an executable work, complete source 175 control compilation and installation of the executable. However, as a 179 operating system on which the executable runs, unless that component 180 itself accompanies the executable. 182 If distribution of executable or object code is made by offering
|
D | soong_rust_prebuilt.mk | 104 [ -x $@ ] || ( $(call echo-error,$@,Target of symlink is not executable); false )
|
D | soong_cc_prebuilt.mk | 154 [ -x $@ ] || ( $(call echo-error,$@,Target of symlink is not executable); false )
|
D | definitions.mk | 1808 define transform-o-to-executable-inner 1832 define transform-o-to-executable 1835 $(transform-o-to-executable-inner) 1849 define transform-o-to-static-executable-inner 1873 define transform-o-to-static-executable 1876 $(transform-o-to-static-executable-inner) 1885 define transform-host-o-to-executable-inner 1907 define transform-host-o-to-executable 1910 $(transform-host-o-to-executable-inner)
|
/build/soong/python/scripts/ |
D | main.py | 10 sys.executable = None
|
/build/soong/cuj/ |
D | cuj.go | 109 if executable, err := os.Executable(); err == nil { 110 …trace.ImportMicrofactoryLog(filepath.Join(filepath.Dir(executable), "."+filepath.Base(executable)+…
|
/build/pesto/experiments/prepare_bazel_test_env/data/templates/tools/tradefederation/core/ |
D | BUILD.bazel.template | 52 executable=True, 64 executable=True,
|
/build/soong/ui/build/ |
D | ninja.go | 44 executable := config.PrebuiltBuildTool("ninja") 72 cmd := Command(ctx, config, "ninja", executable, args...)
|
D | exec.go | 42 func Command(ctx Context, config Config, name string, executable string, args ...string) *Cmd { 44 Cmd: exec.CommandContext(ctx.Context, executable, args...),
|
D | kati.go | 73 executable := config.PrebuiltBuildTool("ckati") 148 cmd := Command(ctx, config, "ckati", executable, args...)
|
/build/make/core/combo/ |
D | HOST_darwin-x86_64.mk | 46 define transform-host-o-to-executable-inner
|
/build/pesto/experiments/prepare_bazel_test_env/data/templates/build/bazel/rules/ |
D | cc_test.bzl.template | 54 return [DefaultInfo(executable = script, runfiles = runfiles)] 82 executable = True,
|
/build/soong/android/ |
D | packaging.go | 40 executable bool member 241 if ps.executable {
|
/build/soong/cmd/sbox/sbox_proto/ |
D | sbox.proto | 63 // If true, make the file executable after copying it. 64 optional bool executable = 3; field
|
/build/soong/cmd/path_interposer/ |
D | main_test.go | 133 …err: fmt.Errorf(`exec: "path_interposer_test_does_not_exist": executable file not found in $P…
|
/build/soong/cmd/soong_ui/ |
D | main.go | 273 if executable, err := os.Executable(); err == nil { 274 …trace.ImportMicrofactoryLog(filepath.Join(filepath.Dir(executable), "."+filepath.Base(executable)+…
|
/build/make/tools/releasetools/ |
D | Android.bp | 18 // For module X, if we need to build it both as a library and an executable: 634 // host, because the test executable won't be able to find the needed libs via its
|
/build/bazel/rules/ |
D | cc_object.bzl | 80 files = depset([linking_output.executable])
|
D | cc_library_static.bzl | 111 executable = archiver_path,
|
/build/soong/zip/ |
D | zip.go | 582 var executable bool 651 executable = s.Mode()&0100 != 0 660 if executable {
|
/build/blueprint/microfactory/ |
D | microfactory.go | 652 if executable, err := os.Executable(); err == nil { 653 defer un(config.trace("microfactory %s", executable))
|
12