HomeSort by relevance Sort by last modified time
    Searched defs:Exec (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /build/kati/
exec.go 154 // Exec executes to build targets, or first target in DepGraph.
155 func (ex *Executor) Exec(g *DepGraph, targets []string) error {
196 logStats("exec time: %q", time.Since(startTime))
exec.cc 17 #include "exec.h"
141 void Exec(const vector<DepNode*>& roots, Evaluator* ev) {
  /external/sl4a/Common/src/com/googlecode/android_scripting/
Exec.java 24 public class Exec {
  /art/dexdump/
dexdump_test.cc 41 bool Exec(const std::vector<std::string>& args, std::string* error_msg) {
47 return ::art::Exec(exec_argv, error_msg);
56 ASSERT_FALSE(Exec({}, &error_msg)) << error_msg;
61 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
66 ASSERT_FALSE(Exec({"-c", "-i", dex_file_}, &error_msg)) << error_msg;
71 ASSERT_TRUE(Exec({"-d", "-f", "-h", "-l", "plain", "-o", "/dev/null",
77 ASSERT_TRUE(Exec({"-l", "xml", "-o", "/dev/null",
  /art/dexlist/
dexlist_test.cc 43 bool Exec(const std::vector<std::string>& args, std::string* error_msg) {
49 return ::art::Exec(exec_argv, error_msg);
58 ASSERT_FALSE(Exec({}, &error_msg)) << error_msg;
63 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
68 ASSERT_FALSE(Exec({"-m", "joho", dex_file_}, &error_msg)) << error_msg;
73 ASSERT_TRUE(Exec({"-o", "/dev/null", dex_file_}, &error_msg)) << error_msg;
78 ASSERT_TRUE(Exec({"-o", "/dev/null", "-m", "java.lang.Object.toString",
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
Table.py 48 self.Exec(SqlCommand)
107 ## Exec
109 # Exec Sql Command, return result
115 def Exec(self, SqlCommand):
  /art/runtime/
exec_utils.cc 48 // fork and exec
51 // no allocation allowed between fork and exec
90 bool Exec(std::vector<std::string>& arg_vector, std::string* error_msg) {
  /prebuilts/go/darwin-x86/src/syscall/
exec_unix.go 7 // Fork, exec, wait, etc.
19 // We want the child in a fork/exec sequence to inherit only the
21 // descriptors close-on-exec and then, in the child, explicitly
22 // unmark the ones we want the exec'ed program to keep.
24 // allocate a new file descriptor close-on-exec. Instead you
25 // have to allocate the descriptor and then mark it close-on-exec.
26 // If a fork happens between those two events, the child's exec
29 // This lock solves that race: the create new fd/mark close-on-exec
184 // create new fds that are not yet close-on-exec
188 // Allocate child status pipe close on exec
    [all...]
exec_windows.go 5 // Fork, exec, wait, etc.
295 // create new fds that are not yet close-on-exec
338 func Exec(argv0 string, argv []string, envv []string) (err error) {
exec_plan9.go 5 // Fork, exec, wait, etc.
112 // and finally invoking exec(argv0, argvv, envv) in the child.
113 // If a dup or exec fails, it writes the error string to pipe.
114 // (The pipe write end is close-on-exec so if exec succeeds, it will be closed.)
280 // Time to exec.
415 // Allocate child status pipe close on exec.
442 err = NewError("failed to read exec status")
453 // Read got EOF, so pipe closed on exec, so exec succeeded
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
exec_unix.go 7 // Fork, exec, wait, etc.
19 // We want the child in a fork/exec sequence to inherit only the
21 // descriptors close-on-exec and then, in the child, explicitly
22 // unmark the ones we want the exec'ed program to keep.
24 // allocate a new file descriptor close-on-exec. Instead you
25 // have to allocate the descriptor and then mark it close-on-exec.
26 // If a fork happens between those two events, the child's exec
29 // This lock solves that race: the create new fd/mark close-on-exec
184 // create new fds that are not yet close-on-exec
188 // Allocate child status pipe close on exec
    [all...]
exec_windows.go 5 // Fork, exec, wait, etc.
295 // create new fds that are not yet close-on-exec
338 func Exec(argv0 string, argv []string, envv []string) (err error) {
exec_plan9.go 5 // Fork, exec, wait, etc.
112 // and finally invoking exec(argv0, argvv, envv) in the child.
113 // If a dup or exec fails, it writes the error string to pipe.
114 // (The pipe write end is close-on-exec so if exec succeeds, it will be closed.)
280 // Time to exec.
415 // Allocate child status pipe close on exec.
442 err = NewError("failed to read exec status")
453 // Read got EOF, so pipe closed on exec, so exec succeeded
    [all...]
  /art/dexlayout/
dexdiag_test.cc 85 bool Exec(pid_t this_pid, const std::vector<std::string>& args, std::string* error_msg) {
101 return ::art::Exec(exec_argv, error_msg);
113 ASSERT_TRUE(Exec(getpid(), { kDexDiagHelp }, &error_msg)) << "Failed to execute -- because: "
125 ASSERT_TRUE(Exec(getpid(), { kDexDiagContains }, &error_msg)) << "Failed to execute -- because: "
137 ASSERT_FALSE(Exec(getpid(), { kDexDiagContainsFails }, &error_msg))
150 ASSERT_TRUE(Exec(getpid(), { kDexDiagVerbose }, &error_msg)) << "Failed to execute -- because: "
  /art/imgdiag/
imgdiag_test.cc 88 bool Exec(pid_t image_diff_pid, const std::string& boot_image, std::string* error_msg) {
117 return ::art::Exec(exec_argv, error_msg);
122 return Exec(image_diff_pid, boot_image_location_, error_msg);
  /bionic/benchmarks/tests/
interface_test.cpp 40 void Exec(std::vector<const char*> args);
78 void SystemTests::Exec(std::vector<const char*> args) {
113 Exec(args);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaDataTable.py 130 ## Exec
132 # Exec Sql Command, return result
138 def Exec(self, SqlCommand):
148 Result = self.Exec("select min(ID) from %s" % (self.Table))
154 return self.Exec("select * from %s where ID > 0 order by ID" % (self.Table))
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/transport/
ProcessTransport.java 20 import com.googlecode.android_scripting.Exec;
88 Exec.setPtyWindowSize(shellFd, rows, columns, width, height);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
MetaDataTable.py 127 ## Exec
129 # Exec Sql Command, return result
135 def Exec(self, SqlCommand):
142 self.Exec("insert into %s values(%s)" % (self.Table, self._DUMMY_))
149 Result = self.Exec("select min(ID) from %s" % (self.Table))
155 return self.Exec("select * from %s where ID > 0 order by ID" % (self.Table))
226 RecordList = self.Exec(QueryScript)
239 RecordList = self.Exec(QueryScript)
252 RecordList = self.Exec(QueryScript)
263 self.Exec("update %s set TimeStamp=%s where ID='%s'" % (self.Table, TimeStamp, FileId))
    [all...]
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 31 enum CodeGenType { Unknown, Object, DynObj, Exec, External, Binary };
  /system/update_engine/common/
subprocess.cc 171 pid_t Subprocess::Exec(const vector<string>& cmd,
  /art/oatdump/
oatdump_test.h 138 bool Exec(Flavor flavor,
278 // Use execv here rather than art::Exec to avoid blocking on waitpid here.
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ToolRunner.cpp 811 std::string Exec;
830 // Full path to the binary. We need to cd to the exec directory because
831 // there is a dylib there that the exec expects to find in the CWD
833 Exec = "cd ";
834 Exec += env_pwd;
835 Exec += "; ./";
836 Exec += OutputBinary.c_str();
837 ProgramArgs.push_back(Exec.c_str());
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
Input.h 37 Exec,
  /external/llvm/lib/Target/AMDGPU/
SIAnnotateControlFlow.cpp 370 Value *Exec = popSaved();
371 if (!isa<UndefValue>(Exec))
372 CallInst::Create(EndCf, Exec, "", &*BB->getFirstInsertionPt());

Completed in 579 milliseconds

1 2 3 4