Searched defs:done (Results 126 - 150 of 541) sorted by relevance

1234567891011>>

/external/libedit/examples/
H A Dfileman.c80 /* When non-zero, this means the user is done using this program. */
81 int done; variable
107 for ( ; done == 0; )
459 done = 1;
/external/libedit/src/
H A Dsearch.c221 int done, redo; local
240 done = redo = 0;
283 done++;
292 done++;
334 done++;
345 if (!done) {
445 if (done || ret != CC_NORM)
/external/libevent/
H A Devent_tagging.c201 int shift = 0, done = 0; local
218 done = 1;
223 if (!done)
582 goto done;
584 goto done;
587 goto done;
590 goto done;
593 done:
/external/libmicrohttpd/src/testcurl/
H A Dtest_large_put.c103 int *done = cls; local
109 if ((*done) == 0)
129 *done = 1;
H A Dtest_put.c90 int *done = cls; local
96 if ((*done) == 0)
109 *done = 1;
H A Dtest_put_chunked.c91 int *done = cls; local
98 if ((*done) < 8)
101 if (have + *done > 8)
106 if (0 == memcmp (upload_data, &"Hello123"[*done], have))
108 *done += have;
117 fprintf (stderr, "Not ready for response: %u/%u\n", *done, 8);
H A Dtest_quiesce.c108 int *done = (int *)cls; local
109 *done = 1;
123 int done = 0; local
130 MHD_OPTION_NOTIFY_COMPLETED, &request_completed, &done,
136 while ((time (NULL) - start < 5) && done == 0)
H A Dtest_timeout.c130 int *done = cls; local
136 if ((*done) == 0)
149 *done = 1;
/external/libmicrohttpd/src/testzzuf/
H A Dtest_put.c86 int *done = cls; local
92 if ((*done) == 0)
105 *done = 1;
H A Dtest_put_chunked.c86 int *done = cls; local
93 if ((*done) < 8)
96 if (have + *done > 8)
100 if (0 == memcmp (upload_data, &"Hello123"[*done], have))
102 *done += have;
110 fprintf (stderr, "Not ready for response: %u/%u\n", *done, 8);
H A Dtest_put_large.c94 int *done = cls; local
100 if ((*done) == 0)
119 *done = 1;
/external/libvterm/src/
H A Dpen.c218 // This logic is easier to do 'done' backwards; set it true, and make it
220 int done = 1; local
361 done = 0;
365 if(!done)
/external/libweave/src/
H A Ddevice_registration_info_unittest.cc547 bool done = false; local
549 test_data::kClaimTicketId, base::Bind([this, &done](ErrorPtr error) {
551 done = true;
563 EXPECT_TRUE(done);
569 bool done = false; local
571 test_data::kClaimTicketId, base::Bind([this, &done](ErrorPtr error) {
573 done = true;
585 EXPECT_TRUE(done);
673 EXPECT_JSON_EQ(R"({"state":"done", "results":{"status":"Ok"}})",
H A Dweave_unittest.cc423 bool done = false; local
424 device_->Register("TICKET_ID", base::Bind([this, &done](ErrorPtr error) {
426 done = true;
431 EXPECT_TRUE(done);
433 done = false;
434 device_->Register("TICKET_ID2", base::Bind([this, &done](ErrorPtr error) {
436 done = true;
441 EXPECT_TRUE(done);
/external/llvm/lib/Target/Sparc/
H A DDelaySlotFiller.cpp201 bool done = false; local
205 while (!done) {
206 done = (I == MBB.begin());
208 if (!done)
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_debug.c906 boolean done = FALSE; local
919 while (!done &&
/external/mesa3d/src/gallium/state_trackers/egl/wayland/
H A Dnative_wayland.c41 int *done = data; local
43 *done = 1;
55 int done = 0, ret = 0; local
58 wl_callback_add_listener(callback, &sync_listener, &done);
60 while (ret != -1 && !done)
63 if (!done)
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_debug.c821 bool done = false; local
829 while (!done &&
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_light.c258 /* FIXME: Is this already done?
313 static int done; local
315 if (!done) {
320 done = 1;
407 /* This and the above should only be done on _NEW_LIGHT:
/external/pdfium/third_party/freetype/src/cid/
H A Dcidload.c565 FT_Bool upper_nibble, done; local
577 done = 0;
618 done = 1;
636 if ( done )
/external/pdfium/xfa/src/fxbarcode/oned/
H A DBC_OnedCode128Reader.cpp200 FX_BOOL done = FALSE; local
217 while (!done) {
268 done = TRUE;
297 done = TRUE;
328 done = TRUE;
/external/pdfium/xfa/src/fxgraphics/src/
H A Dfx_path_generator.cpp196 FX_BOOL done = FALSE; local
204 done = TRUE;
212 done = TRUE;
217 } while (!done);
/external/selinux/policycoreutils/run_init/
H A Dopen_init_pty.c215 int done = 0; local
399 if (!done && waitpid(child_pid, &child_exit_status, WNOHANG) > 0)
400 done = 1;
402 } while (!done
/external/skia/experimental/Networking/
H A DSkSockets.h95 bool done; member in struct:SkSocket::header
/external/skia/include/core/
H A DSkRegion.h317 bool done() const { return fDone; } function in class:SkRegion::Iterator
337 bool done() { return fDone; } function in class:SkRegion::Cliperator

Completed in 746 milliseconds

1234567891011>>