Home
last modified time | relevance | path

Searched refs:executable (Results 1 – 25 of 2099) sorted by relevance

12345678910>>...84

/external/python/cpython2/Lib/distutils/
Dspawn.py64 executable = cmd[0]
68 executable = find_executable(executable) or executable
69 log.info(' '.join([executable] + cmd[1:]))
73 rc = os.spawnv(os.P_WAIT, executable, cmd)
77 cmd = executable
83 cmd = executable
88 executable = cmd[0]
91 executable = find_executable(executable) or executable
92 log.info(' '.join([executable] + cmd[1:]))
96 rc = os.spawnv(os.P_WAIT, executable, cmd)
[all …]
/external/autotest/client/site_tests/platform_Firewall/
Dplatform_Firewall.py32 def _iptables_rules(executable): argument
33 rule_output = utils.system_output("%s -S" % executable)
39 def _check(expected_rule, actual_rules, error_msg, executable, check): argument
42 raise error.TestFail(error_msg % executable)
46 def _check_included(expected_rule, actual_rules, error_msg, executable): argument
49 expected_rule, actual_rules, error_msg, executable,
54 def _check_not_included(expected_rule, actual_rules, error_msg, executable): argument
57 expected_rule, actual_rules, error_msg, executable,
97 for executable in ["iptables", "ip6tables"]:
98 actual_rules = self._iptables_rules(executable)
[all …]
/external/mesa3d/src/util/
D00-mesa-defaults.conf37 executable CDATA #IMPLIED
59 <application name="Unigine Sanctuary" executable="Sanctuary">
65 <application name="Unigine Tropics" executable="Tropics">
71 <application name="Unigine Heaven (32-bit)" executable="heaven_x86">
77 <application name="Unigine Heaven (64-bit)" executable="heaven_x64">
83 <application name="Unigine Valley (32-bit)" executable="valley_x86">
89 <application name="Unigine Valley (64-bit)" executable="valley_x64">
95 <application name="Unigine OilRush (32-bit)" executable="OilRush_x86">
100 <application name="Unigine OilRush (64-bit)" executable="OilRush_x64">
105 <application name="Savage 2" executable="savage2.bin">
[all …]
/external/python/cpython3/PC/
Dpython_uwp.cpp89 std::wstring executable; in set_process_name() local
98 executable = std::wstring(localAppData) in set_process_name()
109 if (home.empty() && executable.empty()) { in set_process_name()
110 executable.resize(MAX_PATH); in set_process_name()
113 NULL, executable.data(), (DWORD)executable.size()); in set_process_name()
115 executable.clear(); in set_process_name()
117 } else if (len == executable.size() && in set_process_name()
119 executable.resize(len * 2); in set_process_name()
121 executable.resize(len); in set_process_name()
125 size_t i = executable.find_last_of(L"/\\"); in set_process_name()
[all …]
Dlauncher.c174 wchar_t executable[MAX_PATH]; member
224 if (_wcsicmp(path, ip->executable) == 0) { in find_existing_python()
302 data_size = sizeof(ip->executable) - 1; in _locate_pythons_for_key()
306 (LPBYTE)ip->executable, &data_size); in _locate_pythons_for_key()
312 data_size = sizeof(ip->executable) - 1; in _locate_pythons_for_key()
314 (LPBYTE)ip->executable, &data_size); in _locate_pythons_for_key()
328 if (ip->executable[data_size - 1] == L'\\') in _locate_pythons_for_key()
334 _snwprintf_s(&ip->executable[data_size], in _locate_pythons_for_key()
339 attrs = GetFileAttributesW(ip->executable); in _locate_pythons_for_key()
343 ip->executable, message); in _locate_pythons_for_key()
[all …]
/external/auto/value/src/main/java/com/google/auto/value/processor/
DBuilderMethodClassifierForAutoBuilder.java44 private final ExecutableElement executable; field in BuilderMethodClassifierForAutoBuilder
50 ExecutableElement executable, in BuilderMethodClassifierForAutoBuilder() argument
56 this.executable = executable; in BuilderMethodClassifierForAutoBuilder()
76 ExecutableElement executable, in classify() argument
80 executable.getParameters().stream() in classify()
83 rewriteParameterTypes(executable, builderType, errorReporter, processingEnv.getTypeUtils()); in classify()
88 executable, in classify()
137 ExecutableElement executable, in rewriteParameterTypes() argument
141 ImmutableList<TypeParameterElement> executableTypeParams = executableTypeParams(executable); in rewriteParameterTypes()
149 AutoBuilderProcessor.executableString(executable)); in rewriteParameterTypes()
[all …]
DAutoBuilderProcessor.java122 ExecutableElement executable = findExecutable(ofClass, callMethod, autoBuilderType, methods); in processType() local
125 TypeMirror builtType = builtType(executable); in processType()
128 methods, errorReporter(), processingEnv, executable, builtType, autoBuilderType); in processType()
137 vars.props = propertySet(executable, propertyToGetterName); in processType()
143 vars.build = build(executable); in processType()
155 ExecutableElement executable, Map<String, String> propertyToGetterName) { in propertySet() argument
159 executable.getParameters().stream() in propertySet()
162 return executable.getParameters().stream() in propertySet()
266 static String executableString(ExecutableElement executable) { in executableString() argument
268 executable.getKind() == ElementKind.CONSTRUCTOR in executableString()
[all …]
/external/bazelbuild-rules_android/toolchains/android/
Dtoolchain.bzl26 executable = True,
32 executable = True,
38 executable = True,
44 executable = True,
50 executable = True,
56 executable = True,
67 executable = True,
73 executable = True,
79 executable = True,
85 executable = True,
[all …]
/external/python/cpython2/Lib/test/
Dtest_subprocess.py87 rc = subprocess.call([sys.executable, "-c",
93 rc = subprocess.check_call([sys.executable, "-c",
100 subprocess.check_call([sys.executable, "-c",
107 [sys.executable, "-c", "print 'BDFL'"])
114 [sys.executable, "-c", "import sys; sys.exit(5)"])
120 [sys.executable, "-c", "import sys; sys.stderr.write('BDFL')"],
128 [sys.executable, "-c", "print 'will not be run'"],
137 rc = subprocess.call([sys.executable, "-c",
155 p = subprocess.Popen([sys.executable, "-c", 'print "banana"'],
177 p = subprocess.Popen([sys.executable, "-c", code],
[all …]
/external/libkmsxx/utils/
Dmeson.build5 executable('kmstest', 'kmstest.cpp', dependencies : [ common_deps ], install : true)
6 executable('kmsview', 'kmsview.cpp', dependencies : [ common_deps ], install : false)
7 executable('kmsprint', 'kmsprint.cpp', dependencies : [ common_deps ], install : true)
8 executable('fbtest', 'fbtest.cpp', dependencies : [ common_deps ], install : true)
9 executable('kmscapture', 'kmscapture.cpp', dependencies : [ common_deps ], install : false)
10 executable('kmsblank', 'kmsblank.cpp', dependencies : [ common_deps ], install : true)
13executable('kmstouch', 'kmstouch.cpp', dependencies : [ common_deps, libevdev_dep ], install : fal…
16 executable('omap-wbcap', 'omap-wbcap.cpp', dependencies : [ common_deps ], install : false)
17 executable('omap-wbm2m', 'omap-wbm2m.cpp', dependencies : [ common_deps ], install : false)
/external/python/setuptools/setuptools/_distutils/
Dspawn.py43 executable = find_executable(cmd[0])
44 if executable is not None:
45 cmd[0] = executable
72 def find_executable(executable, path=None): argument
78 _, ext = os.path.splitext(executable)
80 executable = executable + '.exe'
82 if os.path.isfile(executable):
83 return executable
102 f = os.path.join(p, executable)
/external/python/cpython3/Lib/distutils/
Dspawn.py48 executable = find_executable(cmd[0])
49 if executable is not None:
50 cmd[0] = executable
95 def find_executable(executable, path=None): argument
101 _, ext = os.path.splitext(executable)
103 executable = executable + '.exe'
105 if os.path.isfile(executable):
106 return executable
125 f = os.path.join(p, executable)
/external/crosvm/tools/impl/
Dtest_runner.py117 def should_run_executable(executable: Executable, target_arch: Arch):
118 options = CRATE_OPTIONS.get(executable.crate_name, [])
127 if TestOption.DO_NOT_RUN_ON_FOREIGN_KERNEL in options and target_arch != executable.arch:
256 def is_emulated(target: TestTarget, executable: Executable) -> bool:
259 return executable.arch != target.arch
265 def get_test_timeout(target: TestTarget, executable: Executable):
266 large = TestOption.LARGE in CRATE_OPTIONS.get(executable.crate_name, [])
268 if is_emulated(target, executable):
274 def execute_test(target: TestTarget, executable: Executable):
282 options = CRATE_OPTIONS.get(executable.crate_name, [])
[all …]
/external/selinux/sandbox/
Dtest_sandbox.py30 p2 = Popen([sys.executable, 'sandbox', 'grep', 'root'], stdin=p1.stdout, stdout=PIPE)
38 p = Popen([sys.executable, 'sandbox', 'kill', '-HUP', str(pid)], stdout=PIPE, stderr=PIPE)
44 … p = Popen([sys.executable, 'sandbox', 'ping', '-c 1 ', '127.0.0.1'], stdout=PIPE, stderr=PIPE)
50 p = Popen([sys.executable, 'sandbox', 'mkdir', '~/test'], stdout=PIPE, stderr=PIPE)
56 p = Popen([sys.executable, 'sandbox', 'ls', '~'], stdout=PIPE, stderr=PIPE)
62 p = Popen([sys.executable, 'sandbox', 'mail'], stdout=PIPE, stderr=PIPE)
68 p = Popen([sys.executable, 'sandbox', 'sudo'], stdout=PIPE, stderr=PIPE)
74 p = Popen([sys.executable, 'sandbox', '-M', 'id'], stdout=PIPE, stderr=PIPE)
80 p = Popen([sys.executable, 'sandbox', '-l', 's0', 'id'], stdout=PIPE, stderr=PIPE)
87 p = Popen([sys.executable, 'sandbox', '-H', homedir, '-M', 'id'], stdout=PIPE, stderr=PIPE)
[all …]
/external/python/cpython3/Lib/test/
Dtest_subprocess.py67 ZERO_RETURN_CMD = (sys.executable, '-c', 'pass')
143 rc = subprocess.call([sys.executable, "-c",
153 [sys.executable, "-c", "while True: pass"],
164 subprocess.check_call([sys.executable, "-c",
171 [sys.executable, "-c", "print('BDFL')"])
178 [sys.executable, "-c", "import sys; sys.exit(5)"])
184 [sys.executable, "-c", "import sys; sys.stderr.write('BDFL')"],
195 [sys.executable, "-c",
203 [sys.executable, "-c",
211 [sys.executable, "-c",
[all …]
/external/tensorflow/tensorflow/compiler/mlir/tfrt/jit/
Dtf_cpurt_kernels.cc186 Expected<AsyncValuePtr<JitExecutable>> executable = in Compile() local
190 if (auto err = executable.takeError()) in Compile()
196 executable->AndThen([executable = *executable, res = compiled.CopyRef()]() { in Compile()
197 if (executable.IsError()) in Compile()
198 res.SetError(executable.GetError()); in Compile()
264 static void ExecuteImpl(Executable& executable, in ExecuteImpl() argument
273 {"executable", executable.name()}}); in ExecuteImpl()
297 if (auto err = executable.Execute(memrefs, converter, exec_ctx, opts)) return; in ExecuteImpl()
301 if (executable.IsAsync()) in ExecuteImpl()
321 AsyncValuePtr<Executable> executable = jit_executable.GetExecutable( in ExecuteImpl() local
[all …]
/external/lz4/contrib/meson/meson/examples/
Dmeson.build14 printVersion = executable('printVersion',
18 doubleBuffer = executable('doubleBuffer',
22 dictionaryRandomAccess = executable('dictionaryRandomAccess',
26 ringBuffer = executable('ringBuffer',
30 ringBufferHC = executable('ringBufferHC',
34 lineCompress = executable('lineCompress',
38 frameCompress = executable('frameCompress',
42 compressFunctions = executable('compressFunctions',
46 simpleBuffer = executable('simpleBuffer',
/external/python/setuptools/setuptools/tests/
Dtest_namespaces.py30 sys.executable,
40 sys.executable,
49 sys.executable,
64 sys.executable,
74 sys.executable,
89 sys.executable,
101 sys.executable,
118 sys.executable,
130 sys.executable,
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/
Drun_tests.sh84 executable=${target##*:} #finds last token after ':'
89 ADB shell chmod +x $OPENCL_DIR/$executable
90 ADB shell ./$OPENCL_DIR/$executable
91 ADB shell rm -f $OPENCL_DIR/$executable
95 executable=${target##*:} #finds last token after ':'
100 ADB shell chmod +x $OPENCL_DIR/$executable
101 …ADB shell ./$OPENCL_DIR/$executable --logtostderr 2> /dev/null | grep '\][[:space:]][a-zA-Z][a-zA-…
102 ADB shell rm -f $OPENCL_DIR/$executable
/external/angle/src/libANGLE/renderer/d3d/d3d11/
DShaderExecutable11.cpp21 d3d11::PixelShader &&executable) in ShaderExecutable11() argument
23 mPixelExecutable(std::move(executable)), in ShaderExecutable11()
32 d3d11::VertexShader &&executable, in ShaderExecutable11() argument
36 mVertexExecutable(std::move(executable)), in ShaderExecutable11()
44 d3d11::GeometryShader &&executable) in ShaderExecutable11() argument
48 mGeometryExecutable(std::move(executable)), in ShaderExecutable11()
55 d3d11::ComputeShader &&executable) in ShaderExecutable11() argument
61 mComputeExecutable(std::move(executable)) in ShaderExecutable11()
/external/rust/crates/grpcio-sys/grpc/bazel/
Dpython_rules.bzl22 tools = [context.executable._protoc]
35 context.executable.plugin,
41 tools.append(context.executable.plugin)
49 executable = context.executable._protoc,
75 executable = True,
82 executable = True,
133 tools = [context.executable._protoc, context.executable._grpc_plugin]
136 context.executable._grpc_plugin,
143 context.executable.plugin,
149 tools.append(context.executable.plugin)
[all …]
/external/tensorflow/tensorflow/compiler/xrt/kernels/
Dxrt_execute_op.cc89 xla::LocalExecutable* executable, XRTMemoryManager::WorkingSet* working_set, in GetInputTuples() argument
93 executable->executable()->module_config().entry_computation_layout(); in GetInputTuples()
299 xla::LocalExecutable* executable, in RunExecutable() argument
304 executable->executable()->module_config().entry_computation_layout(); in RunExecutable()
309 executable->executable()->module().input_output_alias_config(), in RunExecutable()
321 if (executable->executable() in RunExecutable()
325 &executable->executable()->module_config().static_device_assignment()); in RunExecutable()
351 executable->executable() in RunExecutable()
359 executable->Run(std::move(execution_inputs), run_options)); in RunExecutable()
371 executable->executable()->module().input_output_alias_config())); in RunExecutable()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/tfrt/benchmarks/
Dbenchmark_mlir_function.cc85 AsyncValuePtr<Executable> executable = in RunMlirBenchmark() local
89 host->Await({executable.CopyRef()}); in RunMlirBenchmark()
91 CHECK(!executable.IsError()) in RunMlirBenchmark()
92 << "Failed to get executable: " << StrCat(executable.GetError()); in RunMlirBenchmark()
93 CHECK(!executable->IsAsync()) << "async results are not supported"; in RunMlirBenchmark()
97 for (int i = 0; i < executable->signature().num_results(); ++i) in RunMlirBenchmark()
107 if (auto err = executable->InitializeCallFrame(operands, &call_frame)) in RunMlirBenchmark()
111 executable->Execute(call_frame, exec_ctx); in RunMlirBenchmark()
112 if (auto err = executable->ReturnResults(converter, &call_frame)) in RunMlirBenchmark()
Dcwise_op_unary_benchmark.h49 const Executable* executable; member
77 AsyncValuePtr<Executable> executable = in PrepareUnaryMlirBenchmark() local
81 host->Await({executable.CopyRef()}); in PrepareUnaryMlirBenchmark()
83 CHECK(!executable.IsError()) in PrepareUnaryMlirBenchmark()
84 << "Failed to get executable: " << StrCat(executable.GetError()); in PrepareUnaryMlirBenchmark()
85 CHECK(!executable->IsAsync()) << "async results are not supported"; in PrepareUnaryMlirBenchmark()
87 return {std::move(host), &executable.get(), exec_ctx, std::move(converter)}; in PrepareUnaryMlirBenchmark()
108 if (auto err = b.executable->InitializeCallFrame(operands, &call_frame)) in TestUnaryMlirBenchmark()
112 b.executable->Execute(call_frame, b.exec_ctx); in TestUnaryMlirBenchmark()
113 if (auto err = b.executable->ReturnResults(b.converter, &call_frame)) in TestUnaryMlirBenchmark()
[all …]
/external/angle/src/libANGLE/renderer/vulkan/
DTransformFeedbackVk.cpp107 const gl::ProgramExecutable *executable = contextVk->getState().getProgramExecutable(); in begin() local
108 ASSERT(executable); in begin()
109 size_t xfbBufferCount = executable->getTransformFeedbackBufferCount(); in begin()
172 const gl::ProgramExecutable *executable = contextVk->getState().getProgramExecutable(); in pause() local
173 ASSERT(executable); in pause()
174 size_t xfbBufferCount = executable->getTransformFeedbackBufferCount(); in pause()
191 const gl::ProgramExecutable *executable = contextVk->getState().getProgramExecutable(); in resume() local
192 ASSERT(executable); in resume()
193 size_t xfbBufferCount = executable->getTransformFeedbackBufferCount(); in resume()
269 const gl::ProgramExecutable &executable, in updateDescriptorSet() argument
[all …]

12345678910>>...84