HomeSort by relevance Sort by last modified time
    Searched refs:death (Results 1 - 25 of 31) sorted by null

1 2

  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
assert.cc 14 void death() { function
15 fprintf(stderr, "DEATH CALLBACK\n");
19 __sanitizer_set_death_callback(death);
23 // CHECK1: DEATH CALLBACK
ill.cc 17 void death() { function
18 fprintf(stderr, "DEATH CALLBACK\n");
22 __sanitizer_set_death_callback(death);
26 // CHECK1: DEATH CALLBACK
fpe.cc 17 void death() { function
18 fprintf(stderr, "DEATH CALLBACK\n");
22 __sanitizer_set_death_callback(death);
29 // CHECK1: DEATH CALLBACK
  /external/libchrome/sandbox/linux/seccomp-bpf/
bpf_tests.h 30 // Identical to BPF_TEST_C but allows to specify the nature of death.
32 test_case_name, test_name, death, bpf_policy_class_name) \
38 sandbox::UnitTests::RunTestInProcess(&bpf_test_runner, death); \
50 // Identical to BPF_TEST_D but allows to specify the nature of death.
52 test_case_name, test_name, death, bpf_tester_delegate_class) \
56 sandbox::UnitTests::RunTestInProcess(&bpf_test_runner, death); \
86 #define BPF_DEATH_TEST(test_case_name, test_name, death, policy, aux) \
92 sandbox::UnitTests::RunTestInProcess(&bpf_test_runner, death); \
  /external/libchrome/base/
tracked_objects.cc 88 // DeathData tallies durations when a death takes place.
184 // will be reset upon next death recording because sample_probability_count_
188 // potentially in parallel with incrementing in the death thread may result in
459 // but have not yet tallied a matching death, and hence must be either
478 // Add snapshots for all instances of death data in all threads serially.
641 for (const auto& death : deaths) {
642 (*birth_counts)[death.first] -= death.first->birth_count();
644 // For the current death data, walk through all its snapshots, starting from
648 for (const DeathDataPhaseSnapshot* phase = &death.second; phase
    [all...]
  /platform_testing/utils/crashcollector/src/android/test/crashcollector/
Collector.java 69 // recipient for activity manager death so that command can survive runtime restart
70 final IBinder.DeathRecipient death = new DeathRecipient() { local
89 // register death recipient for activity manager
90 am.linkToDeath(death, 0);
97 synchronized (death) {
100 Log.d(LOG_TAG, "Monitoring death of system server.");
101 death.wait();
  /external/google-breakpad/src/testing/gtest/
CMakeLists.txt 114 cxx_test(gtest-death-test_test gtest_main)
153 cxx_test_with_flags(gtest-death-test_ex_nocatch_test
155 gtest test/gtest-death-test_ex_test.cc)
156 cxx_test_with_flags(gtest-death-test_ex_catch_test
158 gtest test/gtest-death-test_ex_test.cc)
  /external/vulkan-validation-layers/tests/gtest-1.7.0/
CMakeLists.txt 114 cxx_test(gtest-death-test_test gtest_main)
155 cxx_test_with_flags(gtest-death-test_ex_nocatch_test
157 gtest test/gtest-death-test_ex_test.cc)
158 cxx_test_with_flags(gtest-death-test_ex_catch_test
160 gtest test/gtest-death-test_ex_test.cc)
  /external/protobuf/gtest/include/gtest/
gtest-death-test.h 34 // This header file defines the public API for death tests. It is
41 #include <gtest/internal/gtest-death-test-internal.h>
45 // This flag controls the style of death tests. Valid values are "threadsafe",
46 // meaning that the death test child process will re-execute the test binary
47 // from the start, running only a single death test, or "fast",
54 // The following macros are useful for writing death tests.
63 // 2. The parent process clone()s a sub-process and runs the death
65 // death test, if it hasn't exited already.
89 // On the regular expressions used in death tests:
97 // death tests; though it lacks many features you can find in PCR
    [all...]
gtest.h 59 #include <gtest/gtest-death-test.h>
485 // death tests there are in the Test, and how much time it took to run
567 // Returns the death test count.
570 // Increments the death test count, returning the new count.
587 // Running count of death tests.
665 // Increments the number of death tests encountered in this test so
    [all...]
  /frameworks/native/cmds/servicemanager/
binder.h 71 void binder_link_to_death(struct binder_state *bs, uint32_t target, struct binder_death *death);
service_manager.c 143 struct binder_death death; member in struct:svcinfo
243 si->death.func = (void*) svcinfo_death;
244 si->death.ptr = si;
251 binder_link_to_death(bs, handle, &si->death);
binder.c 285 struct binder_death *death = (struct binder_death *)(uintptr_t) *(binder_uintptr_t *)ptr; local
287 death->func(bs, death->ptr);
321 void binder_link_to_death(struct binder_state *bs, uint32_t target, struct binder_death *death)
330 data.payload.cookie = (uintptr_t) death;
  /external/gtest/test/
Android.mk 77 gtest-death-test_test.cc \
90 # gtest-death-test_ex_test.cc \
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
TestThread.java 242 } catch (ThreadDeath death) {
254 } catch (ThreadDeath death) {
  /external/replicaisland/src/com/replica/replicaisland/
NPCAnimationComponent.java 34 public static final int DEATH = 9;
100 case DEATH:
101 death(parentObject);
211 } else if (parentObject.getCurrentAction() == ActionType.DEATH) {
212 mCurrentAnimation = DEATH;
241 } else if (parentObject.getCurrentAction() == ActionType.DEATH) {
242 mCurrentAnimation = DEATH;
279 } else if (parentObject.getCurrentAction() == ActionType.DEATH) {
280 mCurrentAnimation = DEATH;
289 } else if (parentObject.getCurrentAction() == ActionType.DEATH) {
365 protected void death(GameObject parentObject) { method in class:NPCAnimationComponent
    [all...]
  /external/protobuf/gtest/
CMakeLists.txt 250 cxx_test(gtest-death-test_test gtest_main)
  /external/v8/test/mjsunit/
md5.js 202 Once more, on pain of death, all men depart.\n"
  /external/v8/test/mjsunit/regress/
regress-453481.js 121 Once more, on pain of death, all men depart.\n"
  /ndk/sources/third_party/googletest/
Android.mk 36 src/gtest-death-test.cc \
  /external/skia/tests/
MathTest.cpp 136 int death = 0; local
158 death += 1;
159 SkDebugf("death src:%d dst:%d a:%d result:%d float:%g\n",
165 SkDebugf("---- failed %d death %d\n", failed, death);
  /frameworks/base/core/java/android/app/
LoadedApk.java 1398 public void death(ComponentName name, IBinder service) { method in class:LoadedApk.ServiceDispatcher
1501 death(mName, mService); method
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 32 // This file implements death tests.
34 #include <gtest/gtest-death-test.h>
73 // The default death test style.
79 "Indicates how to run a death test in a forked child process: "
81 "from the beginning, running only the specific death test) or "
82 "\"fast\" (child process runs the death test immediately "
88 "Instructs to use fork()/_exit() instead of clone() in death tests. "
101 "the single death test to run, and a file descriptor to "
105 "death test. FOR INTERNAL USE ONLY.");
136 // Utilities needed for death tests
    [all...]
  /external/protobuf/gtest/test/
gtest-death-test_test.cc 32 // Tests for death tests.
34 #include <gtest/gtest-death-test.h>
80 // A helper class whose objects replace the death test factory for a
107 fprintf(stderr, "death inside %s().", function);
112 // things that conflict with death tests.
121 // Tests that death tests work.
186 EXPECT_DEATH(GlobalFunction(), "death.*GlobalFunction");
187 ASSERT_DEATH(GlobalFunction(), "death.*GlobalFunction");
190 // Death in dbg, not opt.
273 // Tests that the death test macros expand to code which may or may no
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityManagerService.java 12776 final IBinder.DeathRecipient death = new DeathRecipient() { local
    [all...]

Completed in 507 milliseconds

1 2