Home
last modified time | relevance | path

Searched refs:completion (Results 1 – 25 of 210) sorted by relevance

123456789

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h53 Completion(llvm::StringRef completion, llvm::StringRef description, in Completion() argument
55 : m_completion(completion.str()), m_descripton(description.str()), in Completion()
75 void AddResult(llvm::StringRef completion, llvm::StringRef description,
167 void AddCompletion(llvm::StringRef completion,
170 m_result.AddResult(completion, description, mode);
180 void TryCompleteCurrentArg(llvm::StringRef completion,
187 if (completion.starts_with(GetCursorArgumentPrefix()))
188 AddCompletion(completion, description, M);
197 for (const std::string &completion : completions) in AddCompletions() local
198 AddCompletion(completion); in AddCompletions()
/freebsd-14.2/sys/compat/linuxkpi/common/include/linux/
H A Dcompletion.h34 struct completion { struct
61 extern void linux_complete_common(struct completion *, int);
62 extern int linux_wait_for_common(struct completion *, int);
63 extern int linux_wait_for_timeout_common(struct completion *, int, int);
64 extern int linux_try_wait_for_completion(struct completion *);
65 extern int linux_completion_done(struct completion *);
/freebsd-14.2/sys/contrib/ck/include/
H A Dck_tflock.h43 uint32_t completion; member
76 pf->request = pf->completion = 0; in ck_tflock_ticket_init()
89 while (ck_pr_load_32(&lock->completion) != previous) in ck_tflock_ticket_write_lock()
101 ck_tflock_ticket_fca_32(&lock->completion, CK_TFLOCK_TICKET_WC_TOPMSK, in ck_tflock_ticket_write_unlock()
117 while ((ck_pr_load_32(&lock->completion) & in ck_tflock_ticket_read_lock()
131 ck_tflock_ticket_fca_32(&lock->completion, CK_TFLOCK_TICKET_RC_TOPMSK, in ck_tflock_ticket_read_unlock()
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DCompletionRequest.cpp61 void CompletionResult::AddResult(llvm::StringRef completion, in AddResult() argument
64 Completion r(completion, description, mode); in AddResult()
73 for (const Completion &completion : m_results) in GetMatches() local
74 matches.AppendString(completion.GetCompletion()); in GetMatches()
79 for (const Completion &completion : m_results) in GetDescriptions() local
80 descriptions.AppendString(completion.GetDescription()); in GetDescriptions()
/freebsd-14.2/sys/dev/mana/
H A Dgdma_util.c39 init_completion(struct completion *c) in init_completion()
47 free_completion(struct completion *c) in free_completion()
53 complete(struct completion *c) in complete()
62 wait_for_completion(struct completion *c) in wait_for_completion()
75 wait_for_completion_timeout(struct completion *c, int timeout) in wait_for_completion_timeout()
H A Dgdma_util.h194 struct completion { struct
199 void init_completion(struct completion *c); argument
200 void free_completion(struct completion *c);
201 void complete(struct completion *c);
202 void wait_for_completion(struct completion *c);
203 int wait_for_completion_timeout(struct completion *c, int timeout);
H A Dhw_channel.h183 struct completion comp_event;
202 struct completion hwc_init_eqe_comp;
/freebsd-14.2/sys/contrib/vchiq/interface/compat/
H A Dvchi_bsd.c135 init_completion(struct completion *c) in init_completion()
143 destroy_completion(struct completion *c) in destroy_completion()
150 complete(struct completion *c) in complete()
166 complete_all(struct completion *c) in complete_all()
182 INIT_COMPLETION_locked(struct completion *c) in INIT_COMPLETION_locked()
192 _completion_claim(struct completion *c) in _completion_claim()
205 wait_for_completion(struct completion *c) in wait_for_completion()
215 try_wait_for_completion(struct completion *c) in try_wait_for_completion()
229 wait_for_completion_interruptible_timeout(struct completion *c, unsigned long timeout) in wait_for_completion_interruptible_timeout()
267 wait_for_completion_interruptible(struct completion *c) in wait_for_completion_interruptible()
[all …]
H A Dvchi_bsd.h209 struct completion { struct
215 void init_completion(struct completion *c); argument
216 void destroy_completion(struct completion *c);
217 int try_wait_for_completion(struct completion *);
218 int wait_for_completion_interruptible(struct completion *);
219 int wait_for_completion_interruptible_timeout(struct completion *, unsigned long ticks);
220 int wait_for_completion_killable(struct completion *);
221 void wait_for_completion(struct completion *c);
222 void complete(struct completion *c);
223 void complete_all(struct completion *c);
[all …]
/freebsd-14.2/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_arm.h71 struct completion ka_evt;
76 struct completion vc_suspend_complete;
77 struct completion vc_resume_complete;
104 struct completion resume_blocker;
106 struct completion blocked_blocker;
H A Dvchiq_arm.c209 VCHIQ_COMPLETION_DATA_T *completion; in add_completion() local
237 completion->header = header; in add_completion()
238 completion->reason = reason; in add_completion()
830 VCHIQ_COMPLETION_DATA_T *completion; in vchiq_ioctl() local
849 completion->service_userdata = in vchiq_ioctl()
852 header = completion->header; in vchiq_ioctl()
904 completion->header = msgbuf; in vchiq_ioctl()
907 if ((completion->reason == in vchiq_ioctl()
915 completion, in vchiq_ioctl()
1313 VCHIQ_COMPLETION_DATA_T *completion; in vchiq_close() local
[all …]
/freebsd-14.2/sys/contrib/dev/athk/ath11k/
H A Dcore.h628 struct completion started;
629 struct completion completed;
630 struct completion on_channel;
682 struct completion peer_assoc_done;
689 struct completion vdev_setup_done;
726 struct completion target_suspend;
736 struct completion fw_mode_reset;
872 struct completion fw_ready;
967 struct completion reset_complete;
969 struct completion recovery_start;
[all …]
/freebsd-14.2/sys/contrib/dev/athk/ath12k/
H A Dcore.h483 struct completion started;
484 struct completion completed;
485 struct completion on_channel;
538 struct completion peer_assoc_done;
545 struct completion vdev_setup_done;
574 struct completion bss_survey_done;
684 struct completion fw_ready;
764 struct completion driver_recovery;
773 struct completion reset_complete;
775 struct completion recovery_start;
[all …]
/freebsd-14.2/sys/dev/mpi3mr/
H A Dmpi3mr.h230 struct completion { struct
413 struct completion completion; member
885 init_completion(struct completion *completion);
888 complete(struct completion *completion);
890 void wait_for_completion_timeout(struct completion *completion,
892 void wait_for_completion_timeout_tm(struct completion *completion,
936 init_completion(struct completion *completion);
938 complete(struct completion *completion);
939 void wait_for_completion_timeout(struct completion *completion,
H A Dmpi3mr.c118 init_completion(struct completion *completion) in init_completion() argument
120 completion->done = 0; in init_completion()
124 complete(struct completion *completion) in complete() argument
126 completion->done = 1; in complete()
130 void wait_for_completion_timeout(struct completion *completion, in wait_for_completion_timeout() argument
140 if (completion->done == 0) { in wait_for_completion_timeout()
142 completion->done = 1; in wait_for_completion_timeout()
145 void wait_for_completion_timeout_tm(struct completion *completion, in wait_for_completion_timeout_tm() argument
156 if (completion->done == 0) { in wait_for_completion_timeout_tm()
158 completion->done = 1; in wait_for_completion_timeout_tm()
[all …]
/freebsd-14.2/sys/contrib/dev/athk/ath10k/
H A Dcore.h195 struct completion service_ready;
196 struct completion unified_ready;
197 struct completion barrier;
198 struct completion radar_confirm;
696 struct completion tpc_complete;
1070 struct completion target_suspend;
1071 struct completion driver_recovery;
1117 struct completion started;
1118 struct completion completed;
1119 struct completion on_channel;
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/mailbox/
H A Dbrcm,iproc-flexrm-mbox.txt23 The 2nd cell contains MSI completion threshold. This is the
24 number of completion messages for which FlexRM will inject
28 which FlexRM will wait to accumulate N completion messages
30 does not get required number of completion messages in time
32 to CPU provided atleast one completion message is available.
/freebsd-14.2/sys/contrib/openzfs/config/
H A Dkernel-kthread.m439 struct completion *completion = NULL;
42 kthread_complete_and_exit(completion, code);
/freebsd-14.2/sys/contrib/device-tree/Bindings/scsi/
H A Dhisilicon-sas.txt19 - queue-count : number of delivery and completion queues in the controller
21 - interrupts : For v1 hw: Interrupts for phys, completion queues, and fatal
32 Completion queue interrupts : each completion queue has 1
38 For v2 hw: Interrupts for phys, Sata, and completion queues;
49 Completion queue interrupts : each completion queue has 1
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DOptionsBase.td65 // Default value: CommandCompletions::eNoCompletion (no tab completion)
67 // - `Completion`: Gives the option a single completion kind.
70 // Sets the completion to eDiskFileCompletion
75 // Sets the completion to
168 // Sets a single completion for the given option.
169 class Completion<string completion> {
170 list<string> Completions = [completion];
/freebsd-14.2/contrib/tcsh/
H A Dcsh-mode.el762 (defun csh-addto-alist (completion type)
765 (list (cons completion type)))))
820 (completion (try-completion pattern csh-completion-list predicate)))
822 (cond ((eq completion t))
826 ((null completion)
831 ((not (string= pattern completion))
833 (insert completion))
H A Dsrc.desc23 sh.file.c: Old csh file completion. Not used in tcsh.
57 Spelling, listing, and completion (tw*.c)
60 tw.parse.c: All the listing and completion. Tries to tokenize the line
65 tw.comp.c: File completion builtin
/freebsd-14.2/contrib/libedit/
H A Dfilecomplete.c671 char *completion; in fn_complete2() local
730 completion = escape_filename(el, matches[0], in fn_complete2()
733 completion = strdup(matches[0]); in fn_complete2()
734 if (completion == NULL) in fn_complete2()
742 ct_decode_string(completion, &el->el_scratch)); in fn_complete2()
754 (*app_func)(completion), &el->el_scratch)); in fn_complete2()
756 free(completion); in fn_complete2()
/freebsd-14.2/sys/dev/hyperv/pcib/
H A Dvmbus_pcib.c85 struct completion { struct
91 init_completion(struct completion *c) in init_completion() argument
98 reinit_completion(struct completion *c) in reinit_completion()
103 free_completion(struct completion *c) in free_completion()
109 complete(struct completion *c) in complete()
118 wait_for_completion(struct completion *c) in wait_for_completion()
532 struct completion host_event;
537 struct completion host_event;
592 completion->hpdev->probed_bar[i] = in q_resource_requirements()
596 complete(&completion->host_event); in q_resource_requirements()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp720 CompletionResult::Completion completion; member
733 return completion.GetUniqueKey() < o.completion.GetUniqueKey(); in operator <()
790 StringRef completion) const { in mergeCompletion()
799 return existing_command.str() + completion.str(); in mergeCompletion()
916 CompletionResult::Completion completion(CompletionSuggestion, Description, in getCompletionForResult() local
918 return {{completion, R.Priority}}; in getCompletionForResult()
929 request.AddCompletion(C.completion.GetCompletion(), in GetCompletions()
930 C.completion.GetDescription(), in GetCompletions()
931 C.completion.GetMode()); in GetCompletions()

123456789