Searched refs:finished (Results 1 - 25 of 67) sorted by relevance

123

/freebsd-current/usr.sbin/nscd/
H A Dsingletons.h37 int finished; /* for future use */ member in struct:runtime_env
/freebsd-current/sys/arm/arm/
H A Ddb_trace.c64 bool finished; local
66 finished = false;
67 while (!finished) {
68 finished = unwind_stack_one(state, 1);
106 if (finished)
120 finished = true;
123 finished = true;
/freebsd-current/sys/contrib/openzfs/cmd/zed/zed.d/
H A Dhistory_event-zfs-list-cacher.sh.in29 finished() { function
43 finished
85 finished
/freebsd-current/contrib/llvm-project/lld/docs/
H A Dmake.bat51 echo.Build finished. The HTML pages are in %BUILDDIR%/html.
59 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
67 echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
75 echo.Build finished; now you can process the pickle files.
83 echo.Build finished; now you can process the JSON files.
91 echo.Build finished; now you can run HTML Help Workshop with the ^
100 echo.Build finished; now you can run "qcollectiongenerator" with the ^
112 echo.Build finished.
120 echo.Build finished. The epub file is in %BUILDDIR%/epub.
128 echo.Build finished; th
[all...]
/freebsd-current/contrib/libcbor/doc/
H A Dmake.bat67 echo.Build finished. The HTML pages are in %BUILDDIR%/html.
75 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
83 echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
91 echo.Build finished; now you can process the pickle files.
99 echo.Build finished; now you can process the JSON files.
107 echo.Build finished; now you can run HTML Help Workshop with the ^
116 echo.Build finished; now you can run "qcollectiongenerator" with the ^
128 echo.Build finished.
136 echo.Build finished. The epub file is in %BUILDDIR%/epub.
144 echo.Build finished; th
[all...]
H A DMakefile55 @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
60 @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
65 @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
70 @echo "Build finished; now you can process the pickle files."
75 @echo "Build finished; now you can process the JSON files."
80 @echo "Build finished; now you can run HTML Help Workshop with the" \
86 @echo "Build finished; now you can run "qcollectiongenerator" with the" \
95 @echo "Build finished."
104 @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
109 @echo "Build finished; th
[all...]
/freebsd-current/sys/contrib/zstd/examples/
H A Dstreaming_compression.c54 * If the read may not be finished (read == toRead) we use
66 int finished; local
75 /* If we're on the last chunk we're finished when zstd returns 0,
76 * which means its consumed all the input AND finished the frame.
77 * Otherwise, we're finished when we've consumed all the input.
79 finished = lastChunk ? (remaining == 0) : (input.pos == input.size);
80 } while (!finished);
H A Dmultiple_streaming_compression.c79 int finished; local
85 finished = lastChunk ? (remaining == 0) : (input.pos == input.size);
86 } while (!finished);
H A Dstreaming_compression_thread_pool.c70 * If the read may not be finished (read == toRead) we use
82 int finished; local
91 /* If we're on the last chunk we're finished when zstd returns 0,
92 * which means its consumed all the input AND finished the frame.
93 * Otherwise, we're finished when we've consumed all the input.
95 finished = lastChunk ? (remaining == 0) : (input.pos == input.size);
96 } while (!finished);
/freebsd-current/crypto/openssh/regress/
H A Dchannel-timeout.sh8 rm -f $OBJ/finished.* $OBJ/mux.*
106 mux_client "sleep 1 ; echo ok ; sleep 1; echo ok; sleep 60; touch $OBJ/finished.1" >/dev/null &
107 mux_client "sleep 60 ; touch $OBJ/finished.2" >/dev/null &
108 mux_client "sleep 2 ; touch $OBJ/finished.3" >/dev/null &
110 test -f $OBJ/finished.1 && fail "first mux process completed"
111 test -f $OBJ/finished.2 && fail "second mux process completed"
112 test -f $OBJ/finished.3 || fail "third mux process did not complete"
/freebsd-current/contrib/xz/src/xz/
H A Dmessage.h153 /// \param finished True if the whole stream was successfully coded
156 extern void message_progress_end(bool finished);
H A Dmessage.c300 // Never show 100.0 % before we actually are finished.
588 // Updating the progress info was finished. Reset
626 progress_flush(bool finished) argument
641 if (!finished && !progress_active
656 finished ? "100 %" : progress_percentage(in_pos),
660 finished ? "" : progress_remaining(in_pos, elapsed),
673 if (!finished) {
/freebsd-current/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_store.c678 goto finished;
694 goto finished;
700 goto finished;
712 goto finished;
739 goto finished;
772 goto finished;
778 finished:
928 goto finished;
971 finished:
1114 goto finished;
[all...]
/freebsd-current/crypto/openssh/openbsd-compat/regress/
H A DMakefile.in31 @echo finished compat regress tests
/freebsd-current/contrib/bmake/unit-tests/
H A Ddep-colon-bug-cross-file.mk4 # was not finished properly. This made it possible to add further commands
8 # This dependency group is not finished properly. Finishing the dependency
/freebsd-current/usr.bin/dtc/
H A Dinput_buffer.hh110 bool finished() { return cursor >= size; } function in class:dtc::input_buffer
351 bool finished() function in class:dtc::text_input_buffer
354 ((input_stack.size() == 1) && input_stack.top()->finished());
379 if (top.finished())
H A Dinput_buffer.cc160 while (!finished() && (*(*this) != c))
169 if (finished()) { return; }
177 if (finished())
1002 if (finished())
1014 while ((*self != '\0') && (*self != '*') && !finished())
1020 } while ((*self != '\0') && (*self != '/') && !finished());
1031 while (*self != '\n' && !finished())
1221 if (finished())
/freebsd-current/contrib/xz/src/liblzma/common/
H A Doutqueue.c205 buf->finished = false;
226 return outq->read_pos < outq->head->pos || outq->head->finished;
253 if (!buf->finished || outq->read_pos < buf->pos)
256 // The buffer was finished. Tell the caller its size information.
278 if (outq->head != NULL && !outq->head->finished
H A Doutqueue.h33 /// amount of finished data written to buf[] which can be copied out
52 bool finished; member in struct:lzma_outbuf_s
55 /// a finished buffer has been read. Defaults to LZMA_STREAM_END.
58 /// together with finished = true.
62 /// when "finished" is true.
181 /// is used to protect lzma_outbuf.finished.
186 /// \brief Read finished data
199 /// - LZMA_STREAM_END: The buffer being read was finished.
203 /// \note This reads lzma_outbuf.finished and .pos variables and thus
215 /// If the buffer at the head of the output queue isn't finished,
[all...]
/freebsd-current/sys/dev/mlxfw/
H A Dmlxfw_mfa2.c419 bool *finished)
427 *finished = true;
430 *finished = false;
459 bool finished; local
478 err = mlxfw_mfa2_xz_dec_run(xz_dec, &dec_buf, &finished);
481 if (finished) {
492 err = mlxfw_mfa2_xz_dec_run(xz_dec, &dec_buf, &finished);
418 mlxfw_mfa2_xz_dec_run(struct xz_dec *xz_dec, struct xz_buf *xz_buf, bool *finished) argument
/freebsd-current/usr.sbin/bsdinstall/partedit/
H A Dscripted.c120 goto finished;
149 finished:
/freebsd-current/contrib/wpa/src/eapol_auth/
H A Deapol_auth_sm.h48 void (*finished)(void *ctx, void *sta_ctx, int success, int preauth, member in struct:eapol_auth_cb
/freebsd-current/tools/tools/netrate/tcpp/
H A Dtcpp_client.c77 static int finished; /* Number finished so far. */ variable
150 finished++;
250 while (finished < tflag) {
251 while ((started - finished < mflag) && (started < tflag))
261 /* printf("Worker %d done - %d finished\n", workernum, finished); */
/freebsd-current/contrib/sendmail/src/
H A Dbf.c372 goto finished;
409 goto finished;
415 finished:
522 goto finished;
616 finished:
/freebsd-current/sys/geom/vinum/
H A Dgeom_vinum_plex.c401 /* All of our sub-requests have finished. */
423 /* When the original request is finished, we deliver it. */
455 int err, finished, i; local
458 finished = 1;
465 finished = 0;
487 finished = 0;
495 if (finished) {
501 return (finished);
509 int finished, i; local
511 finished
[all...]

Completed in 219 milliseconds

123