/third_party/flutter/skia/third_party/externals/sdl/test/ |
D | testthread.c | 22 static int alive = 0; variable 38 while (alive) { in ThreadFunc() 51 alive = 0; in killed() 74 alive = 1; in main() 82 alive = 0; in main() 87 alive = 1; in main()
|
D | testerror.c | 21 static int alive = 0; variable 37 while (alive) { in ThreadFunc() 62 alive = 1; in main() 70 alive = 0; in main()
|
D | testsem.c | 24 int alive = 1; variable 30 while (alive) { in ThreadFunc() 47 alive = 0; in killed() 118 alive = 0; in main()
|
/third_party/python/Lib/test/ |
D | fork_wait.py | 26 self.alive = {} 41 self.alive[id] = os.getpid() 58 while len(self.alive) < NUM_THREADS: 63 a = sorted(self.alive.keys()) 66 prefork_lives = self.alive.copy() 77 for key in self.alive: 78 if self.alive[key] != prefork_lives[key]:
|
/third_party/boost/boost/beast/http/impl/ |
D | fields.ipp | 99 // add keep-alive 101 s.append("keep-alive"); 102 else if(! token_list{value}.exists("keep-alive")) 103 s.append(", keep-alive"); 107 // remove close and keep-alive 109 iequals_predicate{"close", "keep-alive"}); 116 // remove close and keep-alive 118 iequals_predicate{"close", "keep-alive"}); 122 // remove keep-alive 123 filter_token_list(s, value, iequals_predicate{"keep-alive", {}});
|
/third_party/boost/libs/beast/include/boost/beast/http/impl/ |
D | fields.ipp | 99 // add keep-alive 101 s.append("keep-alive"); 102 else if(! token_list{value}.exists("keep-alive")) 103 s.append(", keep-alive"); 107 // remove close and keep-alive 109 iequals_predicate{"close", "keep-alive"}); 116 // remove close and keep-alive 118 iequals_predicate{"close", "keep-alive"}); 122 // remove keep-alive 123 filter_token_list(s, value, iequals_predicate{"keep-alive", {}});
|
/third_party/node/test/parallel/ |
D | test-cluster-master-kill.js | 64 let alive = true; variable 72 alive = common.isAlive(pid); 73 if (alive) { 84 assert.strictEqual(alive, false, 85 `worker was alive after master died (alive = ${alive})`);
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
D | StackContainerTests.cpp | 19 explicit Dummy(int* alive) : mAlive(alive) { in Dummy() argument 80 int alive = 0; in TEST() local 81 Ref<Dummy> dummy = AcquireRef(new Dummy(&alive)); in TEST() 82 EXPECT_EQ(alive, 1); in TEST() 85 EXPECT_EQ(alive, 1); in TEST() 89 EXPECT_EQ(alive, 1); in TEST() 94 EXPECT_EQ(alive, 0); in TEST()
|
/third_party/node/test/addons/null-buffer-neuter/ |
D | binding.cc | 7 static int alive; variable 11 alive--; in FreeCallback() 15 args.GetReturnValue().Set(alive); in IsAlive() 20 alive++; in Run()
|
/third_party/node/test/addons/buffer-free-callback/ |
D | binding.cc | 7 static int alive; variable 11 alive--; in FreeCallback() 16 alive++; in Alloc() 36 assert(alive > 0); in Check()
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-threadpool/mount-origin/ |
D | example.js | 36 var n, wsa = new Array, alive = 0; 45 alive++; 68 alive--; 69 if (alive === 0)
|
/third_party/glib/tests/ |
D | child-test.c | 45 gint alive; variable 100 if (--alive == 0) in child_watch_callback() 172 alive = 2; in main() 191 if (alive > 0) in main() 193 g_warning ("%d children still alive", alive); in main()
|
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
D | automatic_keep_alive.dart | 14 /// Allows subtrees to request to be kept alive in lazy lists. 20 /// The subtree is kept alive whenever there is one or more descendant that has 217 // turn off keep-alive, so again there's nothing to do. 241 …cription.add(FlagProperty('_keepingAlive', value: _keepingAlive, ifTrue: 'keeping subtree alive')); 254 /// kept alive even if it would normally be discarded as an optimization. 262 /// alive. 266 /// needs to be kept alive, it should immediately send a new notification 275 /// kept alive or not, leading to memory leaks or lost data. For example, if the 276 /// widget that requested keep-alive is removed from the subtree but doesn't 278 /// be kept alive until the list itself is disposed. Similarly, if the [all …]
|
/third_party/libwebsockets/lib/plat/windows/ |
D | windows-sockets.c | 97 struct tcp_keepalive alive; in lws_plat_set_socket_options() local 113 alive.onoff = TRUE; in lws_plat_set_socket_options() 114 alive.keepalivetime = vhost->ka_time * 1000; in lws_plat_set_socket_options() 115 alive.keepaliveinterval = vhost->ka_interval * 1000; in lws_plat_set_socket_options() 117 if (WSAIoctl(fd, SIO_KEEPALIVE_VALS, &alive, sizeof(alive), in lws_plat_set_socket_options() 120 …WSAIoctl SIO_KEEPALIVE_VALS 1 %lu %lu failed with error %d\n", alive.keepalivetime, alive.keepaliv… in lws_plat_set_socket_options()
|
/third_party/node/deps/npm/node_modules/forever-agent/ |
D | README.md | 4 HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal…
|
/third_party/python/Doc/library/ |
D | weakref.rst | 25 A weak reference to an object is not enough to keep the object alive: when the 33 kept alive solely because it appears in a cache or mapping. 37 images, or images to names, the image objects would remain alive just because 41 mappings that don't keep objects alive solely because they appear in the mapping 59 remains alive until the object is collected. 99 calling the reference object if the referent is still alive; if the referent is 100 no longer alive, calling the reference object will cause :const:`None` to be 102 weakref object is still alive, the callback will be called when the object is 120 are still alive, two references have the same equality relationship as their 130 no longer alive then this attribute will have value ``None``. [all …]
|
/third_party/boost/libs/spirit/test/x3/ |
D | debug.cpp | 39 bool alive = true; member 43 BOOST_TEST(alive); in access() 47 alive = false; in ~my_attribute()
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_dce_cleanup.cpp | 146 bool alive = false; in cleanup_dst_vec() local 159 alive = true; in cleanup_dst_vec() 162 return alive; in cleanup_dst_vec()
|
D | sb_liveness.cpp | 240 bool alive = remove_val(d); in process_maydef() local 241 if (alive) { in process_maydef() 275 bool alive = remove_vec(n.dst); in process_outs() local 276 if (alive) in process_outs() 278 return alive; in process_outs()
|
/third_party/curl/tests/data/ |
D | test1078 | 29 Connection: keep-alive 85 Connection: keep-alive 94 Connection: keep-alive
|
D | test1288 | 28 Connection: keep-alive 88 Connection: keep-alive 89 Connection: keep-alive
|
/third_party/skia/src/gpu/ |
D | GrMemoryPool.cpp | 122 int alive = block->metadata(); in release() local 123 if (alive == 1) { in release() 128 block->setMetadata(alive - 1); in release()
|
/third_party/flutter/skia/third_party/externals/sdl/src/audio/coreaudio/ |
D | SDL_coreaudio.m | 54 SDL_bool alive; field 69 item->alive = SDL_TRUE; 222 item->alive = SDL_TRUE; 237 item->alive = SDL_FALSE; 242 /* free items in the list that aren't still alive. */ 246 if (item->alive) { 522 /* Fire a callback if the device stops being "alive" (disconnected, etc). */ 566 UInt32 alive = 0; 589 size = sizeof (alive); 590 result = AudioObjectGetPropertyData(devid, &addr, 0, NULL, &size, &alive); [all …]
|
/third_party/boost/libs/beast/doc/qbk/07_concepts/ |
D | Fields.qbk | 101 If `(v < 11)` the function returns `true` if the "keep-alive" 209 value are removed, and the "keep-alive" token is added to 212 If `(v < 11 && ! b)`, then all "close" and "keep-alive" 216 If `(v == 11 && b)`, then all "keep-alive" and "close" 219 If `(v == 11 && ! b)`, then all "keep-alive" tokens present
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/ |
D | gstglcontext.c | 226 gboolean alive; member 695 if (context->priv->alive) { in gst_gl_context_finalize() 700 while (context->priv->alive) in gst_gl_context_finalize() 966 if (context->priv->alive) in gst_gl_context_set_window() 1060 gboolean alive = FALSE; in gst_gl_context_create() local 1089 alive = context->priv->alive; in gst_gl_context_create() 1093 return alive; in gst_gl_context_create() 1375 context->priv->alive = TRUE; in gst_gl_context_create_thread() 1397 context->priv->alive = FALSE; in gst_gl_context_create_thread() 1812 g_return_val_if_fail (context->priv->alive, FALSE); in gst_gl_context_is_shared()
|