/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | CompletionRequest.h | 26 /// a completion, but that the token is still incomplete. Examples 28 /// the file path token is still incomplete after the completion. Clients 29 /// should not indicate to the user that this is a full completion (e.g. by 30 /// not inserting the usual trailing space after a successful completion). 33 /// The full line has been rewritten by the completion. 40 /// A single completion and all associated data. 48 /// completion text. 53 Completion(llvm::StringRef completion, llvm::StringRef description, in Completion() argument 55 : m_completion(completion.str()), m_descripton(description.str()), in Completion() 61 /// Generates a string that uniquely identifies this completion resul 197 for (const std::string &completion : completions) AddCompletions() local [all...] |
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | completion.h | 34 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/sys/contrib/ck/include/ |
H A D | ck_tflock.h | 43 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/contrib/llvm-project/lldb/source/Utility/ |
H A D | CompletionRequest.cpp | 37 // Let's add an empty fake argument to the end to make sure the completion in CompletionRequest() 46 // We build a unique key for this pair of completion:description. We in GetUniqueKey() 47 // prefix the key with the length of the completion string. This prevents in GetUniqueKey() 61 void CompletionResult::AddResult(llvm::StringRef completion, in AddResult() argument 64 Completion r(completion, description, mode); in AddResult() 66 // Add the completion if we haven't seen the same value before. 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 in GetDescriptions() [all...] |
/freebsd/sys/dev/mana/ |
H A D | gdma_util.c | 39 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 D | gdma_util.h | 173 struct completion { struct 178 void init_completion(struct completion *c); argument 179 void free_completion(struct completion *c); 180 void complete(struct completion *c); 181 void wait_for_completion(struct completion *c); 182 int wait_for_completion_timeout(struct completion *c, int timeout);
|
H A D | hw_channel.h | 183 struct completion comp_event; 202 struct completion hwc_init_eqe_comp;
|
/freebsd/sys/contrib/vchiq/interface/compat/ |
H A D | vchi_bsd.c | 135 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 D | vchi_bsd.h | 209 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/sys/contrib/dev/athk/ath11k/ |
H A D | core.h | 628 struct completion started; 629 struct completion completed; 630 struct completion on_channel; 682 struct completion peer_assoc_done; 683 struct completion peer_delete_done; 686 struct completion install_key_done; 689 struct completion vdev_setup_done; 690 struct completion vdev_delete_done; 718 struct completion bss_survey_done; 726 struct completion target_suspend; [all …]
|
/freebsd/sys/contrib/vchiq/interface/vchiq_arm/ |
H A D | vchiq_arm.h | 71 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 D | vchiq_arm.c | 209 VCHIQ_COMPLETION_DATA_T *completion; in add_completion() local 235 completion = &instance->completions[insert & (MAX_COMPLETIONS - 1)]; in add_completion() 237 completion->header = header; in add_completion() 238 completion->reason = reason; in add_completion() 240 completion->service_userdata = user_service->service; in add_completion() 241 completion->bulk_userdata = bulk_userdata; in add_completion() 830 VCHIQ_COMPLETION_DATA_T *completion; in vchiq_ioctl() local 838 completion = &instance->completions[ in vchiq_ioctl() 847 service1 = completion->service_userdata; in vchiq_ioctl() 849 completion->service_userdata = in vchiq_ioctl() [all …]
|
/freebsd/sys/contrib/dev/athk/ath12k/ |
H A D | core.h | 483 struct completion started; 484 struct completion completed; 485 struct completion on_channel; 538 struct completion peer_assoc_done; 539 struct completion peer_delete_done; 542 struct completion install_key_done; 545 struct completion vdev_setup_done; 546 struct completion vdev_delete_done; 574 struct completion bss_survey_done; 684 struct completion fw_ready; [all …]
|
/freebsd/sys/dev/mpi3mr/ |
H A D | mpi3mr.h | 236 struct completion { struct 419 struct completion completion; member 890 init_completion(struct completion *completion); 893 complete(struct completion *completion); 895 void wait_for_completion_timeout(struct completion *completion, 897 void wait_for_completion_timeout_tm(struct completion *completion, 941 init_completion(struct completion *completion); 943 complete(struct completion *completion); 944 void wait_for_completion_timeout(struct completion *completion,
|
H A D | mpi3mr.c | 117 init_completion(struct completion *completion) in init_completion() argument 119 completion->done = 0; in init_completion() 123 complete(struct completion *completion) in complete() argument 125 completion->done = 1; in complete() 129 void wait_for_completion_timeout(struct completion *completion, in wait_for_completion_timeout() argument 134 while ((completion->done == 0) && count) { in wait_for_completion_timeout() 139 if (completion->done == 0) { in wait_for_completion_timeout() 141 completion->done = 1; in wait_for_completion_timeout() 144 void wait_for_completion_timeout_tm(struct completion *completion, in wait_for_completion_timeout_tm() argument 149 while ((completion->done == 0) && count) { in wait_for_completion_timeout_tm() [all …]
|
/freebsd/sys/contrib/dev/athk/ath10k/ |
H A D | core.h | 195 struct completion service_ready; 196 struct completion unified_ready; 197 struct completion barrier; 198 struct completion radar_confirm; 683 struct completion fw_stats_complete; 696 struct completion tpc_complete; 1070 struct completion target_suspend; 1071 struct completion driver_recovery; 1117 struct completion started; 1118 struct completion completed; [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/mailbox/ |
H A D | brcm,iproc-flexrm-mbox.txt | 23 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 at least one completion message is available.
|
/freebsd/sys/contrib/device-tree/Bindings/scsi/ |
H A D | hisilicon-sas.txt | 19 - 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/contrib/llvm-project/lldb/source/Commands/ |
H A D | OptionsBase.td | 65 // 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/contrib/tcsh/ |
H A D | csh-mode.el | 762 (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 D | src.desc | 23 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/sys/contrib/openzfs/config/ |
H A D | kernel-kthread.m4 | 58 struct completion *completion = NULL; 61 kthread_complete_and_exit(completion, code);
|
/freebsd/contrib/libedit/ |
H A D | filecomplete.c | 671 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/sys/dev/hyperv/pcib/ |
H A D | vmbus_pcib.c | 84 struct completion { struct 90 init_completion(struct completion *c) in init_completion() argument 97 reinit_completion(struct completion *c) in reinit_completion() 102 free_completion(struct completion *c) in free_completion() 108 complete(struct completion *c) in complete() 117 wait_for_completion(struct completion *c) in wait_for_completion() 130 wait_for_completion_timeout(struct completion *c, int timeout) in wait_for_completion_timeout() 419 struct completion query_completion, *query_comp; 531 struct completion host_event; 536 struct completion host_event; [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionParser.cpp | 723 CompletionResult::Completion completion; member 736 return completion.GetUniqueKey() < o.completion.GetUniqueKey(); in operator <() 793 StringRef completion) const { in mergeCompletion() 802 return existing_command.str() + completion.str(); in mergeCompletion() 919 CompletionResult::Completion completion(CompletionSuggestion, Description, in getCompletionForResult() local 921 return {{completion, R.Priority}}; in getCompletionForResult() 932 request.AddCompletion(C.completion.GetCompletion(), in GetCompletions() 933 C.completion.GetDescription(), in GetCompletions() 934 C.completion.GetMode()); in GetCompletions()
|