HomeSort by relevance Sort by last modified time
    Searched full:alive (Results 1 - 25 of 665) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/amd64/
nibz_bennee_mmap.stdout.exp 1 made it through alive!
  /external/qemu/distrib/sdl-1.2.15/test/
testhread.c 11 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;
testerror.c 11 static int alive = 0; variable
25 while ( alive ) {
26 printf("Thread '%s' is alive!\n", (char *)data);
46 alive = 1;
54 alive = 0;
testsem.c 14 int alive = 1; variable
19 while ( alive ) {
33 alive = 0;
91 alive = 0;
  /external/valgrind/main/none/tests/x86/
yield.c 14 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/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 59 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)
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)
131 if (alive)
210 alive = 0L
    [all...]
  /external/clang/test/SemaObjC/
weak-receiver-warn.m 12 [x addBlock: ^{ [weakx actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
13 [x setBlock: ^{ [weakx actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
14 x.block = ^{ [weakx actNow]; }; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
16 [weakx addBlock: ^{ [x actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
17 [weakx setBlock: ^{ [x actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
18 weakx.block = ^{ [x actNow]; }; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
39 [self.weak_prop Meth]; // expected-warning {{weak property may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
42 [self.weak_atomic_prop Meth]; // expected-warning {{weak property may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
44 [self.P Meth]; // expected-warning {{weak implicit property may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}}
63 [[self parent] doSomething]; // expected-warning {{weak property may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep the object alive during use}
    [all...]
  /external/chromium/base/
stack_container_unittest.cc 16 explicit Dummy(int* alive) : alive_(alive) {
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/llvm/test/Transforms/DeadArgElim/
2008-06-23-DeadAfterLive.ll 7 ; This function has a live return value, it is used by @alive.
20 define i32 @alive() {
  /external/valgrind/main/docs/internals/
tm-threadstates.dot 3 alive;
12 alive -> running;
13 dead -> alive [ label="reused" ];
  /external/chromium/chrome/browser/ui/cocoa/
tracking_area.mm 14 // Whether or not the owner is "alive" and should forward calls to the real
21 // The Class of |owner_|. When the actual object is no longer alive (and could
25 @property(nonatomic, assign) BOOL alive;
31 @synthesize alive = alive_;
  /external/chromium/net/socket/
client_socket_pool.cc 10 // alive.
  /external/chromium/net/http/
http_proxy_utils.cc 22 // HTTP/1.1 requests. Add "Proxy-Connection: keep-alive" for compat with
29 "keep-alive");
http_response_body_drainer.cc 117 stream_->Close(true /* no keep-alive */);
120 stream_->Close(false /* keep-alive */);
  /external/chromium/net/udp/
datagram_server_socket.h 31 // alive by the caller until the callback is placed.
38 // and |address_length| alive until the callback is called.
52 // alive until the callback is called.
  /external/llvm/lib/Transforms/Scalar/
ADCE.cpp 53 SmallPtrSet<Instruction*, 128> alive; local
62 alive.insert(I.getInstructionIterator());
72 if (alive.insert(Inst))
81 if (!alive.count(I.getInstructionIterator())) {
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/headers/
mozilla 41 Keep-Alive
  /external/apache-http/src/org/apache/http/impl/
DefaultConnectionReuseStrategy.java 57 * be reused. If there is no such token, a token "keep-alive" indicates
97 // be indicated by closing the connection, there is no keep-alive.
119 // documented in RFC 2068, section 19.7.1. A token "keep-alive" is
129 // but is commonly used to carry one token, "close" or "keep-alive".
137 // "close" and "keep-alive". As "close" is specified by RFC 2068,
139 // If there is no "close" but a "keep-alive", we take the hint.
156 // neither "close" nor "keep-alive", use default policy
  /external/webrtc/src/system_wrappers/source/
thread_posix.cc 356 bool alive = true; local
363 alive = false;
368 alive = false;
372 if (!alive) {
375 alive = _alive;
378 while (alive);
  /external/okhttp/src/main/java/com/squareup/okhttp/
TunnelRequest.java 70 // Always set the Proxy-Connection to Keep-Alive for the benefit of
72 result.set("Proxy-Connection", "Keep-Alive");
  /external/chromium/base/mac/
scoped_nsautorelease_pool.h 40 // alive for long periods of time (such as the entire length of the app).
  /external/chromium/net/base/
net_errors_posix.cc 29 case ENETRESET: // Related to keep-alive
net_errors_win.cc 27 case WSAENETRESET: // Related to keep-alive
  /external/tcpdump/tests/
isakmp4.new 18 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
23 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
28 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
34 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
isakmp4.out 18 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
23 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
28 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
34 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive

Completed in 688 milliseconds

1 2 3 4 5 6 7 8 91011>>