Searched refs:alive (Results 1 - 25 of 37) sorted by relevance

12

/external/valgrind/main/none/tests/amd64/
H A Dnibz_bennee_mmap.stdout.exp1 made it through alive!
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebURLRequestTest.cpp43 explicit TestExtraData(bool* alive) argument
44 : m_alive(alive)
46 *alive = true;
57 bool alive = false; local
60 TestExtraData* extraData = new TestExtraData(&alive);
61 EXPECT_TRUE(alive);
68 EXPECT_TRUE(alive);
72 EXPECT_TRUE(alive);
75 EXPECT_FALSE(alive);
H A DWebURLResponseTest.cpp43 explicit TestExtraData(bool* alive) argument
44 : m_alive(alive)
46 *alive = true;
57 bool alive = false; local
60 TestExtraData* extraData = new TestExtraData(&alive);
61 EXPECT_TRUE(alive);
68 EXPECT_TRUE(alive);
72 EXPECT_TRUE(alive);
75 EXPECT_FALSE(alive);
H A DPrerenderingTest.cpp326 explicit TestExtraData(bool* alive) : m_alive(alive) argument
328 *alive = true;
337 bool alive = false; local
339 prerendererClient()->setExtraDataForNextPrerender(new TestExtraData(&alive));
341 EXPECT_TRUE(alive);
349 EXPECT_FALSE(alive);
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtesterror.c11 static int alive = 0; variable
25 while ( alive ) {
26 printf("Thread '%s' is alive!\n", (char *)data);
46 alive = 1;
54 alive = 0;
H A Dtesthread.c11 static int alive = 0; variable
24 while ( alive ) {
25 printf("Thread '%s' is alive!\n", (char *)data);
36 alive = 0;
50 alive = 1;
58 alive = 0;
61 alive = 1;
71 alive = 1;
H A Dtestsem.c14 int alive = 1; variable
19 while ( alive ) {
33 alive = 0;
91 alive = 0;
/external/chromium_org/content/renderer/
H A Dgin_browsertest.cc25 static gin::Handle<TestGinObject> Create(v8::Isolate* isolate, bool* alive) { argument
26 return gin::CreateHandle(isolate, new TestGinObject(alive));
30 TestGinObject(bool* alive) : alive_(alive) { *alive_ = true; } argument
70 bool alive = false; local
80 // We create the object inside a scope so it's not kept alive by a handle
82 TestGinObject::Create(isolate, &alive);
85 CHECK(alive);
90 CHECK(!alive);
/external/valgrind/main/none/tests/x86/
H A Dyield.c14 static volatile int alive, running; variable
22 while(!alive)
28 while(alive)
37 while(!alive)
43 while(alive) {
62 alive = 1;
72 alive = 0;
/external/chromium/base/
H A Dstack_container_unittest.cc16 explicit Dummy(int* alive) : alive_(alive) { argument
80 int alive = 0; local
81 scoped_refptr<Dummy> dummy(new Dummy(&alive));
82 EXPECT_EQ(alive, 1);
85 EXPECT_EQ(alive, 1);
89 EXPECT_EQ(alive, 1);
94 EXPECT_EQ(alive, 0);
/external/chromium_org/base/containers/
H A Dstack_container_unittest.cc19 explicit Dummy(int* alive) : alive_(alive) { argument
83 int alive = 0; local
84 scoped_refptr<Dummy> dummy(new Dummy(&alive));
85 EXPECT_EQ(alive, 1);
88 EXPECT_EQ(alive, 1);
92 EXPECT_EQ(alive, 1);
97 EXPECT_EQ(alive, 0);
/external/proguard/src/proguard/optimize/evaluation/
H A DLivenessAnalyzer.java59 private long alive; field in class:LivenessAnalyzer
82 * Returns whether the specified variable is alive before the instruction
93 * Sets whether the specified variable is alive before the instruction
96 public void setAliveBefore(int instructionOffset, int variableIndex, boolean alive) argument
100 if (alive)
113 * Returns whether the specified variable is alive after the instruction
124 * Sets whether the specified variable is alive after the instruction
127 public void setAliveAfter(int instructionOffset, int variableIndex, boolean alive) argument
131 if (alive)
210 alive
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DADCE.cpp53 SmallPtrSet<Instruction*, 128> alive; local
62 alive.insert(I.getInstructionIterator());
72 if (alive.insert(Inst))
81 if (!alive.count(I.getInstructionIterator())) {
/external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
H A Dbouncing_balls.js94 var alive = true;
101 if (!alive) {
110 alive = true;
139 var deltaY = alive ? velocityY*timeStep+gravity*timeStep*timeStep/2 : 0;
143 while ((y + deltaY) > (1 - borderY) && alive) {
159 alive = false;
/external/chromium_org/media/cast/rtp_receiver/rtp_parser/include/mock/
H A Dmock_rtp_feedback.h27 void(const int32 id, const RTPAliveType alive));
/external/webrtc/src/system_wrappers/source/
H A Dthread_posix.cc356 bool alive = true; local
363 alive = false;
368 alive = false;
372 if (!alive) {
375 alive = _alive;
378 while (alive);
/external/libppp/src/
H A Dradius.h77 } alive; member in struct:radius
H A Dradius.c1336 timer_Stop(&bundle->radius.alive.timer);
1337 bundle->radius.alive.timer.load = bundle->radius.alive.interval * SECTICKS;
1338 if (bundle->radius.alive.timer.load) {
1341 timer_Start(&bundle->radius.alive.timer);
1348 if (bundle->radius.cfg.file && bundle->radius.alive.interval) {
1349 bundle->radius.alive.timer.func = radius_alive;
1350 bundle->radius.alive.timer.name = "radius alive";
1351 bundle->radius.alive
[all...]
H A Dbundle.h32 #define PHASE_NETWORK 3 /* We're alive ! */
128 struct filter alive; /* keep-alive packet filter */ member in struct:bundle::__anon21344
/external/iputils/
H A Diputils.spec6 Summary: The ping program for checking to see if network hosts are alive.
21 specified network host and can tell you if that machine is alive and
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_registry.cc108 uptr *alive) {
112 if (alive) *alive = alive_threads_;
107 GetNumberOfThreads(uptr *total, uptr *running, uptr *alive) argument
H A Dsanitizer_thread_registry.h81 void GetNumberOfThreads(uptr *total = 0, uptr *running = 0, uptr *alive = 0);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_thread_registry_test.cc35 uptr total, running, alive; local
36 registry->GetNumberOfThreads(&total, &running, &alive);
39 EXPECT_EQ(exp_alive, alive);
/external/chromium_org/ui/compositor/
H A Dlayer_animation_sequence.cc86 base::WeakPtr<LayerAnimationSequence> alive(weak_ptr_factory_.GetWeakPtr());
89 if (!alive)
/external/chromium_org/content/browser/gpu/
H A Dgpu_process_host.cc90 bool alive,
100 alive,
108 if (alive) {
162 bool alive,
167 host_id, route_id, alive, timebase, interval);
889 true /* alive */, base::TimeTicks(), base::TimeDelta()));
87 AcceleratedSurfaceBuffersSwappedCompletedForGPU( int host_id, int route_id, bool alive, base::TimeTicks vsync_timebase, base::TimeDelta vsync_interval) argument
158 AcceleratedSurfaceBuffersSwappedCompleted( int host_id, int route_id, int surface_id, bool alive, base::TimeTicks timebase, base::TimeDelta interval, const ui::LatencyInfo& latency_info) argument

Completed in 1396 milliseconds

12