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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/amd64/
nibz_bennee_mmap.stdout.exp 1 made it through alive!
  /hardware/libhardware_legacy/include/hardware_legacy/
wifi_offload.h 13 #define MKEEP_ALIVE_IP_PKT_MAX 256 // max size of IP packet for keep alive
16 * Send specified keep alive packet periodically.
22 * Stop sending keep alive packet.
  /external/libcxx/test/support/
variant_test_helpers.hpp 34 static int alive; member in struct:MoveThrows
35 MoveThrows() { ++alive; }
36 MoveThrows(MoveThrows const&) {++alive;}
40 ~MoveThrows() { --alive; }
43 int MoveThrows::alive = 0; member in class:MoveThrows
46 static int alive; member in struct:MakeEmptyT
47 MakeEmptyT() { ++alive; }
49 ++alive;
62 ~MakeEmptyT() { --alive; }
66 int MakeEmptyT::alive = 0 member in class:MakeEmptyT
    [all...]
  /external/valgrind/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;
  /art/test/924-threads/
expected.txt 30 191 = ALIVE|WAITING_INDEFINITELY|WAITING|IN_OBJECT_WAIT
31 1a1 = ALIVE|WAITING_WITH_TIMEOUT|WAITING|IN_OBJECT_WAIT
32 401 = ALIVE|BLOCKED_ON_MONITOR_ENTER
33 e1 = ALIVE|WAITING_WITH_TIMEOUT|SLEEPING|WAITING
34 5 = ALIVE|RUNNABLE
  /external/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 59 private long alive; field in class:LivenessAnalyzer
92 * Returns whether the specified variable is alive before the instruction
103 * Sets whether the specified variable is alive before the instruction
106 public void setAliveBefore(int instructionOffset, int variableIndex, boolean alive)
110 if (alive)
123 * Returns whether the specified variable is alive after the instruction
134 * Sets whether the specified variable is alive after the instruction
137 public void setAliveAfter(int instructionOffset, int variableIndex, boolean alive)
141 if (alive)
220 alive = 0L
    [all...]
  /prebuilts/go/darwin-x86/doc/play/
life.go 31 // Alive reports whether the specified cell is alive.
34 func (f *Field) Alive(x, y int) bool {
44 // Count the adjacent cells that are alive.
45 alive := 0
48 if (j != 0 || i != 0) && f.Alive(x+i, y+j) {
49 alive++
57 return alive == 3 || alive == 2 && f.Alive(x, y
    [all...]
  /prebuilts/go/linux-x86/doc/play/
life.go 31 // Alive reports whether the specified cell is alive.
34 func (f *Field) Alive(x, y int) bool {
44 // Count the adjacent cells that are alive.
45 alive := 0
48 if (j != 0 || i != 0) && f.Alive(x+i, y+j) {
49 alive++
57 return alive == 3 || alive == 2 && f.Alive(x, y
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testthread.c 23 static int alive = 0; variable
39 while (alive) {
40 SDL_Log("Thread '%s' is alive!\n", (char *) data);
52 alive = 0;
75 alive = 1;
83 alive = 0;
88 alive = 1;
testerror.c 22 static int alive = 0; variable
38 while (alive) {
39 SDL_Log("Thread '%s' is alive!\n", (char *) data);
63 alive = 1;
71 alive = 0;
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
move.pass.cpp 29 static int alive; member in struct:X
31 X() { ++alive; }
36 ++alive;
46 ~X() { assert(alive > 0); --alive; }
52 int X::alive = 0; member in class:X
85 assert(T::alive == 1);
87 assert(T::alive == 0);
103 X::alive = 0; member in class:X
107 assert(X::alive == 1)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
fork_wait.py 26 self.alive = {}
31 self.alive[id] = os.getpid()
55 a = self.alive.keys()
59 prefork_lives = self.alive.copy()
70 for key in self.alive:
71 if self.alive[key] != prefork_lives[key]:
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
fork_wait.py 26 self.alive = {}
31 self.alive[id] = os.getpid()
55 a = self.alive.keys()
59 prefork_lives = self.alive.copy()
70 for key in self.alive:
71 if self.alive[key] != prefork_lives[key]:
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
fork_wait.py 26 self.alive = {}
31 self.alive[id] = os.getpid()
55 a = self.alive.keys()
59 prefork_lives = self.alive.copy()
70 for key in self.alive:
71 if self.alive[key] != prefork_lives[key]:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
fork_wait.py 26 self.alive = {}
31 self.alive[id] = os.getpid()
55 a = self.alive.keys()
59 prefork_lives = self.alive.copy()
70 for key in self.alive:
71 if self.alive[key] != prefork_lives[key]:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
fork_wait.py 26 self.alive = {}
31 self.alive[id] = os.getpid()
55 a = self.alive.keys()
59 prefork_lives = self.alive.copy()
70 for key in self.alive:
71 if self.alive[key] != prefork_lives[key]:
  /external/libmojo/mojo/public/cpp/bindings/
message_filter.h 17 // Doesn't take ownership of |sink|. Therefore |sink| has to stay alive while
18 // this object is alive.
  /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/swiftshader/third_party/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/curl/docs/libcurl/opts/
CURLOPT_TCP_KEEPALIVE.3 25 CURLOPT_TCP_KEEPALIVE \- enable TCP keep-alive probing
46 /* enable TCP keep-alive for this transfer */
49 /* keep-alive idle time to 120 seconds */
52 /* interval time between keep-alive probes: 60 seconds */
CURLOPT_TCP_KEEPIDLE.3 25 CURLOPT_TCP_KEEPIDLE \- set TCP keep-alive idle time wait
44 /* enable TCP keep-alive for this transfer */
47 /* set keep-alive idle time to 120 seconds */
50 /* interval time between keep-alive probes: 60 seconds */
CURLOPT_TCP_KEEPINTVL.3 25 CURLOPT_TCP_KEEPINTVL \- set TCP keep-alive interval
42 /* enable TCP keep-alive for this transfer */
45 /* keep-alive idle time to 120 seconds */
48 /* interval time between keep-alive probes: 60 seconds */
  /external/libmojo/mojo/public/cpp/bindings/lib/
filter_chain.h 20 // Doesn't take ownership of |sink|. Therefore |sink| has to stay alive while
21 // this object is alive.
31 // Doesn't take ownership of |sink|. Therefore |sink| has to stay alive while
32 // this object is alive.
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
move.pass.cpp 80 assert(T::alive == 1);
86 assert(T::alive == 0);
94 assert(T::alive == 1);
99 assert(T::alive == 0);
106 assert(T::alive == 1);
111 assert(T::alive == 0);
120 assert(T::alive == 1);
125 assert(T::alive == 0);
148 assert(T::alive == 0);
152 assert(T::alive == 0)
    [all...]
  /external/curl/tests/data/
test1078 29 Connection: keep-alive
81 Connection: keep-alive
90 Connection: keep-alive

Completed in 481 milliseconds

1 2 3 4 5 6 7 8 91011>>