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

1 2 3

  /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 32 // Identical to BPF_TEST_C but allows to specify the nature of death.
34 test_case_name, test_name, death, bpf_policy_class_name) \
40 sandbox::UnitTests::RunTestInProcess(&bpf_test_runner, death); \
52 // Identical to BPF_TEST_D but allows to specify the nature of death.
54 test_case_name, test_name, death, bpf_tester_delegate_class) \
58 sandbox::UnitTests::RunTestInProcess(&bpf_test_runner, death); \
88 #define BPF_DEATH_TEST(test_case_name, test_name, death, policy, aux) \
94 sandbox::UnitTests::RunTestInProcess(&bpf_test_runner, death); \
  /external/libchrome/base/
tracked_objects.cc 80 // DeathData tallies durations when a death takes place.
176 // will be reset upon next death recording because sample_probability_count_
180 // potentially in parallel with incrementing in the death thread may result in
450 // but have not yet tallied a matching death, and hence must be either
469 // Add snapshots for all instances of death data in all threads serially.
622 for (const auto& death : deaths) {
623 (*birth_counts)[death.first] -= death.first->birth_count();
625 // For the current death data, walk through all its snapshots, starting from
629 for (const DeathDataPhaseSnapshot* phase = &death.second; phase
    [all...]
  /platform_testing/utils/crashcollector/src/android/test/crashcollector/
Collector.java 68 // recipient for activity manager death so that command can survive runtime restart
69 final IBinder.DeathRecipient death = new DeathRecipient() { local
88 // register death recipient for activity manager
89 am.linkToDeath(death, 0);
96 synchronized (death) {
99 Log.d(LOG_TAG, "Monitoring death of system server.");
100 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/v8/testing/gtest/
CMakeLists.txt 124 cxx_test(gtest-death-test_test gtest_main)
165 cxx_test_with_flags(gtest-death-test_ex_nocatch_test
167 gtest test/gtest-death-test_ex_test.cc)
168 cxx_test_with_flags(gtest-death-test_ex_catch_test
170 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...]
  /external/googletest/googletest/
CMakeLists.txt 150 cxx_test(gtest-death-test_test gtest_main)
191 cxx_test_with_flags(gtest-death-test_ex_nocatch_test
193 gtest test/gtest-death-test_ex_test.cc)
194 cxx_test_with_flags(gtest-death-test_ex_catch_test
196 gtest test/gtest-death-test_ex_test.cc)
Android.mk 61 # The NDK variant of gtest-death-test_test is disabled because we don't have
66 gtest-death-test_test,,libgtest_main,$(1),$(2)))) \
  /external/openssh/
ssh-agent.c 117 time_t death; member in struct:identity
525 if (id->death == 0)
527 if (now >= id->death) {
533 deadline = (deadline == 0) ? id->death :
534 MIN(deadline, id->death);
595 time_t death = 0; local
628 death = monotime() + seconds;
644 if (lifetime && !death)
645 death = monotime() + lifetime;
657 id->death = death
735 time_t death = 0; local
    [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 140 struct binder_death death; member in struct:svcinfo
240 si->death.func = (void*) svcinfo_death;
241 si->death.ptr = si;
248 binder_link_to_death(bs, handle, &si->death);
binder.c 286 struct binder_death *death = (struct binder_death *)(uintptr_t) *(binder_uintptr_t *)ptr; local
288 death->func(bs, death->ptr);
322 void binder_link_to_death(struct binder_state *bs, uint32_t target, struct binder_death *death)
331 data.payload.cookie = (uintptr_t) death;
  /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...]
  /prebuilts/go/darwin-x86/src/syscall/
syscall_linux_test.go 117 fmt.Fprintf(os.Stderr, "death signal parent error: %v\n", err)
  /prebuilts/go/linux-x86/src/syscall/
syscall_linux_test.go 117 fmt.Fprintf(os.Stderr, "death signal parent error: %v\n", err)
  /external/protobuf/gtest/
CMakeLists.txt 250 cxx_test(gtest-death-test_test gtest_main)
  /prebuilts/ndk/r11/sources/third_party/googletest/
Android.mk 36 src/gtest-death-test.cc \
  /prebuilts/ndk/r13/sources/third_party/googletest/
Android.mk 36 src/gtest-death-test.cc \
  /external/skia/tests/
MathTest.cpp 172 int death = 0; local
194 death += 1;
195 SkDebugf("death src:%d dst:%d a:%d result:%d float:%g\n",
201 SkDebugf("---- failed %d death %d\n", failed, death);
  /prebuilts/go/darwin-x86/src/cmd/link/
link_test.go 7 London. Michaelmas term lately over, and the Lord Chancellor sitting in Lincoln?s Inn Hall. Implacable November weather. As much mud in the streets as if the waters had but newly retired from the face of the earth, and it would not be wonderful to meet a Megalosaurus, forty feet long or so, waddling like an elephantine lizard up Holborn Hill. Smoke lowering down from chimney-pots, making a soft black drizzle, with flakes of soot in it as big as full-grown snowflakes?gone into mourning, one might imagine, for the death of the sun. Dogs, undistinguishable in mire. Horses, scarcely better; splashed to their very blinkers. Foot passengers, jostling one another?s umbrellas in a general infection of ill temper, and losing their foot-hold at street-corners, where tens of thousands of other foot passengers have been slipping and sliding since the day broke (if this day ever broke), adding new deposits to the crust upon crust of mud, sticking at those points tenaciously to the pavement, and accumulating at compound interest.

Completed in 532 milliseconds

1 2 3