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

1 2 3 4

  /external/jemalloc/test/src/
thd.c 18 DWORD exit_code; local
19 GetExitCodeThread(thd, (LPDWORD) &exit_code);
20 *ret = (void *)(uintptr_t)exit_code;
  /external/libbrillo/brillo/daemons/
dbus_daemon.cc 22 int exit_code = Daemon::OnInit(); local
23 if (exit_code != EX_OK)
24 return exit_code;
29 return exit_code;
49 int exit_code = DBusDaemon::OnInit(); local
50 if (exit_code != EX_OK)
51 return exit_code;
daemon.cc 25 int exit_code = OnInit(); local
26 if (exit_code != EX_OK)
27 return exit_code;
45 void Daemon::QuitWithExitCode(int exit_code) {
46 exit_code_ = exit_code;
71 void Daemon::OnShutdown(int* /* exit_code */) {
  /system/update_engine/
daemon.cc 47 int exit_code = Daemon::OnInit(); local
48 if (exit_code != EX_OK)
49 return exit_code;
main.cc 126 int exit_code = update_engine_daemon.Run(); local
129 << exit_code;
130 return exit_code;
  /external/autotest/client/bin/
autotest 89 exit_code = 0 variable
93 exit_code = 1 variable
94 sys.exit(exit_code)
autotest_client 25 exit_code = subprocess.call(cmd, shell=True, stderr=subprocess.STDOUT, variable
27 sys.exit(exit_code) # pass on the exit status from autotest
autotestd 39 exit_file = open(os.path.join(logdir, 'exit_code'), 'w', 0)
46 exit_code = subprocess.call(cmd, shell=True) variable
47 exit_file.write('%+04d' % exit_code)
autotestd_monitor 45 exit_code_file = open(os.path.join(logdir, 'exit_code'))
49 exit_code = exit_code_file.read() variable
50 if len(exit_code) != 4:
51 exit_code = -signal.SIGKILL # autotestd was nuked variable
53 exit_code = int(exit_code) variable
69 sys.exit(exit_code)
  /external/gtest/test/
gtest_premature_exit_test.cc 126 const int exit_code = RUN_ALL_TESTS(); local
140 return exit_code;
  /external/libchrome/sandbox/linux/services/
init_process_reaper.cc 72 int exit_code = 0; local
75 exit_code = reaped_child_info.si_status;
79 _exit(exit_code);
scoped_process_unittest.cc 32 void ExitWithCode(int exit_code) { _exit(exit_code); }
43 int exit_code = process.WaitForExit(&got_signaled); local
45 EXPECT_EQ(kCustomExitCode, exit_code);
60 int exit_code = process.WaitForExit(&got_signaled); local
62 EXPECT_EQ(SIGABRT, exit_code);
69 int exit_code = process.WaitForExit(&got_signaled); local
71 EXPECT_EQ(SIGKILL, exit_code);
yama_unittests.cc 71 int exit_code = process.WaitForExit(&signaled); local
73 return 0 == exit_code;
namespace_sandbox_unittest.cc 67 int exit_code = kDummyExitCode; local
68 EXPECT_TRUE(process.WaitForExit(&exit_code));
69 EXPECT_EQ(0, exit_code);
138 int exit_code = kDummyExitCode; local
139 CHECK(process.WaitForExit(&exit_code));
140 CHECK_EQ(0, exit_code);
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_premature_exit_test.cc 126 const int exit_code = RUN_ALL_TESTS(); local
140 return exit_code;
  /external/webrtc/webrtc/base/
posix.cc 56 int exit_code = 0; local
58 exit_code |= EXIT_FLAG_CHDIR_ERRORS;
63 exit_code |= EXIT_FLAG_FDWALK_ERRORS;
66 exit_code |= EXIT_FLAG_CLOSE_ERRORS;
76 exit_code |= EXIT_FLAG_SECOND_FORK_FAILED;
77 _exit(exit_code); // if second fork failed
91 _exit(exit_code);
111 int exit_code = WEXITSTATUS(status); local
112 if (exit_code & EXIT_FLAG_CHDIR_ERRORS) {
116 if (exit_code & EXIT_FLAG_FDWALK_ERRORS)
    [all...]
  /ndk/tests/device/test-wait/jni/
test_wait.c 58 int exit_code = wait_func(cpid); local
59 if (exit_code < 0)
62 if (exit_code != expected_exit_code) {
64 exit_code, expected_exit_code);
  /system/tools/aidl/tests/
aidl_test_sentinel_searcher.cpp 83 int exit_code = 1; local
98 exit_code = 0;
110 return exit_code;
  /system/webservd/test-client/
main.cc 79 int exit_code = WebservTestClientBaseClass::OnInit(); variable
80 if (exit_code != EX_OK)
81 return exit_code;
104 return exit_code;
  /external/ImageMagick/utilities/
magick.c 111 exit_code,
155 exit_code=status != MagickFalse ? 0 : 1;
159 exit_code=2;
166 exit_code=IsStringTrue(option) ? 1 : 0;
172 return(exit_code);
109 exit_code, local
  /external/valgrind/tests/
power_insn_available.c 25 } exit_code; typedef in typeref:enum:exit_codes_
73 exit_code status;
  /system/media/brillo/audio/audioservice/
audio_daemon.cpp 100 int exit_code = Daemon::OnInit(); local
101 if (exit_code != EX_OK) return exit_code;
  /external/valgrind/coregrind/m_ume/
main.c 244 Int exit_code = 126; // 126 == NOEXEC (bash) local
251 exit_code = 127; // 127 == NOTFOUND (bash)
270 VG_(exit)(exit_code);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_cmd_line.py 19 def exit_code(self, *args): member in class:CmdLineTest
23 self.assertNotEqual(self.exit_code('.'), 0)
24 self.assertNotEqual(self.exit_code('< .'), 0)
54 self.assertNotEqual(self.exit_code('-m'), 0)
57 self.exit_code('-m', 'fnord43520xyz'),
62 self.exit_code('-m', 'runpy', 'fnord43520xyz'),
66 self.exit_code('-m', 'timeit', '-n', '1'),
83 self.assertNotEqual(self.exit_code('-c'), 0)
86 self.exit_code('-c', 'raise Exception'),
90 self.exit_code('-c', 'pass')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_cmd_line.py 19 def exit_code(self, *args): member in class:CmdLineTest
23 self.assertNotEqual(self.exit_code('.'), 0)
24 self.assertNotEqual(self.exit_code('< .'), 0)
54 self.assertNotEqual(self.exit_code('-m'), 0)
57 self.exit_code('-m', 'fnord43520xyz'),
62 self.exit_code('-m', 'runpy', 'fnord43520xyz'),
66 self.exit_code('-m', 'timeit', '-n', '1'),
83 self.assertNotEqual(self.exit_code('-c'), 0)
86 self.exit_code('-c', 'raise Exception'),
90 self.exit_code('-c', 'pass')
    [all...]

Completed in 343 milliseconds

1 2 3 4