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

  /external/llvm/utils/unittest/
CMakeLists.txt 32 googletest/gtest-death-test.cc
  /external/chromium/testing/gtest/
CMakeLists.txt 114 cxx_test(gtest-death-test_test gtest_main)
150 cxx_test_with_flags(gtest-death-test_ex_nocatch_test
152 gtest test/gtest-death-test_ex_test.cc)
153 cxx_test_with_flags(gtest-death-test_ex_catch_test
155 gtest test/gtest-death-test_ex_test.cc)
  /external/chromium/sdch/open-vcdiff/src/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 forks a sub-process and runs the death test
64 // in it; the sub-process exits with code 0 at the end of the death
77 // death tests only when there is a single thread. Since exit() has a
143 // The death testing framework causes this to have interesting semantics
    [all...]
gtest-death-test.cc 32 // This file implements death tests.
34 #include <gtest/gtest-death-test.h>
57 // The default death test style.
63 "Indicates how to run a death test in a forked child process: "
65 "from the beginning, running only the specific death test) or "
66 "\"fast\" (child process runs the death test immediately "
73 "the single death test to run, and a file descriptor to "
77 "death test. FOR INTERNAL USE ONLY.");
102 // Utilities needed for death tests.
127 // Generates a textual failure message when a death test finds more tha
    [all...]
gtest.h 67 #include <gtest/gtest-death-test.h>
390 // Increments the number of death tests encountered in this test so
    [all...]
  /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 57 #include <gtest/gtest-death-test.h>
406 // death tests there are in the Test, and how much time it took to run
488 // Returns the death test count.
491 // Increments the death test count, returning the new count.
508 // Running count of death tests.
586 // Increments the number of death tests encountered in this test so
    [all...]
  /frameworks/base/cmds/servicemanager/
service_manager.c 94 struct binder_death death; member in struct:svcinfo
188 si->death.func = svcinfo_death;
189 si->death.ptr = si;
196 binder_link_to_death(bs, ptr, &si->death);
binder.h 93 void binder_link_to_death(struct binder_state *bs, void *ptr, struct binder_death *death);
binder.c 258 struct binder_death *death = (void*) *ptr++; local
259 death->func(bs, death->ptr);
293 void binder_link_to_death(struct binder_state *bs, void *ptr, struct binder_death *death)
298 cmd[2] = (uint32_t) death;
  /external/openssh/
ssh-agent.c 109 u_int death; member in struct:identity
445 if (id->death == 0)
447 if (now >= id->death) {
453 deadline = (deadline == 0) ? id->death :
454 MIN(deadline, id->death);
468 int type, success = 0, death = 0, confirm = 0; local
622 death = time(NULL) + buffer_get_int(&e->request);
636 if (lifetime && !death)
637 death = time(NULL) + lifetime;
649 id->death = death
704 int i, type, version, count = 0, success = 0, death = 0, confirm = 0; local
    [all...]
  /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/chromium/sdch/open-vcdiff/
Makefile.am 65 src/gtest/gtest-death-test.h \
70 src/gtest/internal/gtest-death-test-internal.h \
77 src/gtest/gtest-death-test.cc \
  /external/skia/tests/
MathTest.cpp 43 int death = 0; local
62 death += 1;
63 printf("death src:%d dst:%d a:%d result:%d float:%g\n",
69 SkDebugf("---- failed %d death %d\n", failed, death);
  /external/gtest/test/
Android.mk 90 gtest-death-test_test.cc \
  /frameworks/base/core/java/android/server/
BluetoothService.java 152 IBinder.DeathRecipient death; field in class:BluetoothService.ServiceRecordClient
    [all...]
  /frameworks/base/core/java/android/app/
LoadedApk.java 1028 public void death(ComponentName name, IBinder service) { method in class:LoadedApk.ServiceDispatcher
1133 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
106 // Tests that death tests work.
118 fprintf(stderr, "%s", "death inside StaticMemberFunction().");
123 // things that conflict with death tests.
130 fprintf(stderr, "%s", "death inside MemberFunction().");
149 GTEST_LOG_(FATAL) << "death inside MayDie::MemberFunction().";
160 GTEST_LOG_(FATAL) << "death inside GlobalFunction().";
165 GTEST_LOG_(FATAL) << "death inside NonVoidFunction()."
    [all...]
  /frameworks/base/services/java/com/android/server/
PowerManagerService.java     [all...]
  /external/iproute2/doc/
ip-cref.tex     [all...]

Completed in 315 milliseconds