HomeSort by relevance Sort by last modified time
    Searched full:exitcode (Results 1 - 25 of 1022) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/toolchain-utils/go/android/
target_sh 11 exitcode="$(target_tmpdir)/exitcode"
12 adb_${target} shell "$*; echo -n \$? > ${exitcode}" | sed -e 's:\r$::' -u
13 exit $(adb_${target} shell "cat ${exitcode}")
  /external/wpa_supplicant_8/wpa_supplicant/
main_none.c 17 int exitcode = 0; local
32 exitcode = -1;
34 if (exitcode == 0)
35 exitcode = wpa_supplicant_run(global);
39 return exitcode;
main_winmain.c 26 int iface_count, exitcode = -1; local
47 exitcode = 0;
51 exitcode = -1;
54 for (i = 0; exitcode == 0 && i < iface_count; i++) {
61 exitcode = -1;
65 exitcode = -1;
68 if (exitcode == 0)
69 exitcode = wpa_supplicant_run(global);
77 return exitcode;
main.c 185 int iface_count, exitcode = -1; local
249 exitcode = 0;
262 exitcode = 0;
305 exitcode = 0;
336 exitcode = 0;
341 exitcode = 0;
345 exitcode = -1;
354 exitcode = -1;
363 for (i = 0; exitcode == 0 && i < iface_count; i++) {
376 exitcode = -1
    [all...]
  /external/compiler-rt/test/asan/TestCases/Windows/
thread_simple.cc 14 DWORD exitcode; local
21 GetExitCodeThread(thr, &exitcode);
22 if (exitcode != 0x42)
thread_suspended.cc 14 DWORD exitcode; local
22 GetExitCodeThread(thr, &exitcode);
23 if (exitcode != 0x42)
  /external/tcpdump/tests/
nflog-e.sh 3 exitcode=0
18 exitcode=1
24 exit $exitcode
crypto.sh 3 exitcode=0
18 exitcode=1
27 exitcode=1
36 exitcode=1
55 exitcode=1
64 exitcode=1
73 exitcode=1
82 exitcode=1
91 exitcode=1
101 exitcode=
    [all...]
isis-seg-fault-1-v.sh 7 exitcode=0
24 exitcode=1
30 exit $exitcode
lmp-v.sh 9 exitcode=0
27 exitcode=1
33 exit $exitcode
  /external/clang/utils/TestUtils/
pch-test.pl 9 $exitcode = 0;
29 exit($exitcode);
32 $exitcode = 1;
37 exit($exitcode);
40 $exitcode = 1;
44 exit($exitcode);
61 exit($exitcode);
  /tools/tradefederation/core/src/com/android/tradefed/command/
CommandRunner.java 35 private ExitCode mErrorCode = ExitCode.NO_ERROR;
41 public ExitCode getErrorCode() {
84 mErrorCode = ExitCode.CONFIG_EXCEPTION;
94 mErrorCode = ExitCode.NO_DEVICE_ALLOCATED;
101 if (ExitCode.NO_ERROR.equals(mErrorCode)) {
106 mErrorCode = ExitCode.THROWABLE_EXCEPTION;
108 if (!ExitCode.NO_ERROR.equals(mErrorCode)
124 public static enum ExitCode {
136 ExitCode(int codeValue)
    [all...]
  /build/soong/cmd/javac_wrapper/
javac_wrapper_test.go 87 exitCode, err := Main(ioutil.Discard, "test", []string{"sh", "-c", "exit 9"})
91 if exitCode != 9 {
92 t.Fatal("expected exit code 9, got", exitCode)
97 exitCode, err := Main(ioutil.Discard, "test", []string{"sh", "-c", "kill -9 $$"})
101 if exitCode != 137 {
102 t.Fatal("expected exit code 137, got", exitCode)
107 exitCode, err := Main(ioutil.Discard, "test", []string{"echo"})
111 if exitCode != 0 {
112 t.Fatal("expected exit code 0, got", exitCode)
  /external/lzma/CPP/Windows/
Thread.h 30 bool Terminate(DWORD exitCode) { return BOOLToBool(::TerminateThread(thread, exitCode)); }
  /kernel/tests/net/test/
net_test.sh 25 # Write exit code of net_test to /proc/exitcode so that the builder can use it
27 echo $? >/proc/exitcode
  /prebuilts/checkcolor/
checkcolor.py 57 exitcode and stdout
68 '--baseline', baseline, '--exitcode', TMP_FOLDER],
71 exitcode = check.returncode
80 return (exitcode, stdout)
88 exitcode = 0
93 exitcode = 1
96 if exitcode == 1:
98 sys.exit(exitcode)
  /external/python/cpython3/Lib/test/
mp_fork_bomb.py 18 sys.exit(p.exitcode)
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ExitTest.java 69 int exitCode = 0;
76 exitCode = debuggeeWrapper.process.exitValue();
88 logWriter.println("exitCode = " + exitCode);
89 assertEquals("Invalid exit code,", 99, exitCode);
  /tools/tradefederation/core/src/com/android/tradefed/sandbox/
TradefedSandboxRunner.java 19 import com.android.tradefed.command.CommandRunner.ExitCode;
46 private ExitCode mErrorCode = ExitCode.NO_ERROR;
50 public ExitCode getErrorCode() {
91 mErrorCode = ExitCode.THROWABLE_EXCEPTION;
103 mErrorCode = ExitCode.THROWABLE_EXCEPTION;
115 mErrorCode = ExitCode.NO_DEVICE_ALLOCATED;
118 mErrorCode = ExitCode.CONFIG_EXCEPTION;
125 if (ExitCode.NO_ERROR.equals(mErrorCode)) {
130 mErrorCode = ExitCode.THROWABLE_EXCEPTION
    [all...]
  /external/libcxx/utils/
merge_archives.py 58 exitCode = p.wait()
59 if exitCode == -signal.SIGINT:
61 return out, err, exitCode
68 out, err, exitCode = execute_command(cmd, cwd=cwd)
69 if exitCode != 0 or verbose:
71 if exitCode != 0:
72 report += "Exit Code: %d\n" % exitCode
77 if exitCode != 0:
80 if exitCode != 0:
81 exit_with_cleanups(exitCode)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/
merge_archives.py 58 exitCode = p.wait()
59 if exitCode == -signal.SIGINT:
61 return out, err, exitCode
68 out, err, exitCode = execute_command(cmd, cwd=cwd)
69 if exitCode != 0 or verbose:
71 if exitCode != 0:
72 report += "Exit Code: %d\n" % exitCode
77 if exitCode != 0:
80 if exitCode != 0:
81 exit_with_cleanups(exitCode)
    [all...]
  /external/linux-kselftest/tools/testing/selftests/vm/
run_vmtests 8 exitcode=0
59 # exitcode=1
75 # exitcode=1
88 # exitcode=1
104 # exitcode=1
116 # exitcode=1
128 # exitcode=1
144 # exitcode=1
157 exitcode=1
168 exitcode=
    [all...]
  /external/libcxx/utils/libcxx/
util.py 166 def __init__(self, msg, out, err, exitCode):
170 assert isinstance(exitCode, int)
174 self.exitCode = exitCode
190 Returns a tuple (out, err, exitCode) where
193 * ``exitCode`` (int) is the exitCode of running the command
223 exitCode = p.wait()
237 exitCode=exitCode
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
ExitCode.h 0 // ExitCode.h
  /external/lzma/CPP/7zip/UI/Console/
MainAr.cpp 12 #include "../Common/ExitCode.h"
108 catch(NExitCode::EEnum &exitCode)
112 *g_ErrStream << kInternalExceptionMessage << exitCode << endl;
113 return (exitCode);

Completed in 1137 milliseconds

1 2 3 4 5 6 7 8 91011>>