| /openbsd-src/sys/dev/pci/drm/include/linux/ |
| H A D | completion.h | 26 struct completion { struct 32 struct completion name = { 0, MUTEX_INITIALIZER(IPL_TTY) } argument 35 init_completion(struct completion *x) in init_completion() 42 reinit_completion(struct completion *x) in reinit_completion() 48 wait_for_completion_timeout(struct completion *x, u_long timo) in wait_for_completion_timeout() 71 wait_for_completion(struct completion *x) in wait_for_completion() 85 wait_for_completion_interruptible(struct completion *x) in wait_for_completion_interruptible() 109 wait_for_completion_interruptible_timeout(struct completion *x, u_long timo) in wait_for_completion_interruptible_timeout() 133 complete(struct completion *x) in complete() 143 complete_all(struct completion *x) in complete_all() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | CompletionRequest.h | 53 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.startswith(GetCursorArgumentPrefix())) 188 AddCompletion(completion, description, M); 197 for (const std::string &completion : completions) in AddCompletions() local 198 AddCompletion(completion); in AddCompletions()
|
| /openbsd-src/gnu/llvm/lldb/source/Utility/ |
| H A D | CompletionRequest.cpp | 61 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()
|
| /openbsd-src/sys/dev/pci/drm/include/drm/ |
| H A D | drm_file.h | 34 #include <linux/completion.h> 96 * This represents a DRM event. Drivers can use this as a generic completion 97 * mechanism, which supports kernel-internal &struct completion, &struct dma_fence 102 * @completion: 104 * Optional pointer to a kernel internal completion signalled when 108 struct completion *completion; 114 * to clean up the reference count for the structure @completion is 117 void (*completion_release)(struct completion *completion); 106 struct completion *completion; global() member [all...] |
| H A D | drm_audio_component.h | 126 struct completion master_bind_complete;
|
| /openbsd-src/sys/dev/pci/drm/apple/ |
| H A D | afk.h | 34 struct completion *completion; member 160 struct completion started; 161 struct completion stopped;
|
| H A D | dptxep.h | 51 struct completion enable_completion; 52 struct completion linkcfg_completion;
|
| H A D | dcp-internal.h | 180 struct completion start_done; 222 struct completion systemep_done;
|
| H A D | afk.c | 378 if (service->cmds[idx].completion) in afk_recv_handle_reply() 379 complete(service->cmds[idx].completion); in afk_recv_handle_reply() 849 DECLARE_COMPLETION_ONSTACK(completion); in afk_send_command() 891 service->cmds[idx].completion = &completion; in afk_send_command() 892 init_completion(&completion); in afk_send_command() 902 ret = wait_for_completion_timeout(&completion, in afk_send_command() 913 service->cmds[idx].completion = NULL; in afk_send_command()
|
| H A D | apldcp.c | 217 struct completion *completion, int atomic) in apple_rtkit_send_message() 218 apple_rtkit_send_message(struct apple_rtkit * rtk,uint8_t ep,uint64_t msg,struct completion * completion,int atomic) apple_rtkit_send_message() argument
|
| /openbsd-src/gnu/llvm/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];
|
| /openbsd-src/gnu/lib/libreadline/ |
| H A D | CHANGES | 57 f. New application-settable completion variable: 58 rl_completion_mark_symlink_dirs, allows an application's completion 62 g. New function available to application completion functions: 63 rl_completion_mode, to tell how the completion function was invoked 70 i. New application-settable completion variable: 90 c. The completion code no longer appends a `/' or ` ' to a match when 105 h. The completion code now attempts to do a better job of preserving the 146 completion of files beginning with a `.' (on Unix). Enabled by default. 176 e. Fixed a bug in the completion code that allowed a backslash to quote a 207 o. The completion convenience functions filename_completion_function, [all …]
|
| /openbsd-src/gnu/lib/libreadline/doc/ |
| H A D | rluser.texinfo | 413 @item completion-ignore-case 414 If set to @samp{on}, Readline performs filename matching and completion 418 @item completion-query-items 419 @vindex completion-query-items 435 @item disable-completion 436 @vindex disable-completion 437 If set to @samp{On}, Readline will inhibit word completion. 457 attempts word completion. The default is @samp{off}. 526 completion, unless the leading @samp{.} is 549 This alters the default behavior of the completion functions. If [all …]
|
| H A D | rltech.texinfo | 39 such as completion, line editing, and interactive history manipulation 52 completion functions. 138 completion: completion on file names. If you do not want Readline to 506 Readline is performing word completion. 1041 of strings, in argv format, such as a list of completion matches. 1361 it can provide completion for commands, data, or both. 1366 * How Completing Works:: The logic used to do completion. 1368 * Completion Variables:: Variables which control completion. 1379 the user interface to completion, and two of the most common 1380 completion functions: filename and username. For completing other types [all …]
|
| /openbsd-src/usr.bin/vi/docs/ |
| H A D | features | 17 + It would be nice to have the completion mechanism found in tcsh versions 18 >= 6.03. For instance, the completion for the `:cd' command will be 19 directories only. The completion for the `:set' command will be all 21 that are set at that moment. The completion for `:< count' will be the
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionParser.cpp | 737 CompletionResult::Completion completion; member 750 return completion.GetUniqueKey() < o.completion.GetUniqueKey(); in operator <() 807 StringRef completion) const { in mergeCompletion() 816 return existing_command.str() + completion.str(); in mergeCompletion() 933 CompletionResult::Completion completion(CompletionSuggestion, Description, in getCompletionForResult() local 935 return {{completion, R.Priority}}; in getCompletionForResult() 946 request.AddCompletion(C.completion.GetCompletion(), in GetCompletions() 947 C.completion.GetDescription(), in GetCompletions() 948 C.completion.GetMode()); in GetCompletions()
|
| H A D | ClangExpressionParser.h | 166 clang::CodeCompleteConsumer *completion = nullptr,
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| H A D | IOHandler.h | 195 IOHandlerDelegate(Completion completion = Completion::None) 196 : m_completion(completion) {} in m_completion() argument 299 Completion completion = Completion::None) 300 : IOHandlerDelegate(completion), in IOHandlerDelegate() argument
|
| /openbsd-src/sys/dev/pci/drm/include/linux/soc/apple/ |
| H A D | rtkit.h | 28 struct completion *, int);
|
| /openbsd-src/gnu/llvm/llvm/utils/vim/ |
| H A D | vimrc | 102 " Clang code-completion support. This is somewhat experimental! 129 " Build a clang commandline to do code completion on stdin. 131 \ " -cc1 -code-completion-at=-:" . l:l . ":" . l:c 138 " apparent inability to do code completion at the very end of the
|
| /openbsd-src/gnu/gcc/gcc/config/rs6000/ |
| H A D | 8540.md | 32 ;; We could describe completion buffers slots in combination with the 33 ;; retirement units and the order of completion but the result 35 ;; real latency time with taking in order completion into account. 41 ;; insns would not wait in the completion buffer.
|
| /openbsd-src/sys/dev/pci/drm/i915/pxp/ |
| H A D | intel_pxp_types.h | 109 struct completion termination;
|
| /openbsd-src/regress/usr.bin/mandoc/mdoc/Rv/ |
| H A D | args.out_markdown | 10 Upon successful completion, the value 0 is returned; otherwise the value -1 is return…
|
| H A D | nostd.out_markdown | 10 Upon successful completion, the value 0 is returned; otherwise the value -1 is return…
|
| /openbsd-src/sys/dev/pci/drm/ |
| H A D | drm_file.c | 104 * own needs, e.g. to signal completion of rendering. 610 * Since events are used by the KMS API for vblank and page flip completion this 707 * events are used by the KMS API for vblank and page flip completion this means 742 * using drm_send_event() or drm_send_event_locked() to signal completion of the 784 * using drm_send_event() or drm_send_event_locked() to signal completion of the 846 if (e->completion) { in drm_send_event_helper() 847 complete_all(e->completion); in drm_send_event_helper() 848 e->completion_release(e->completion); in drm_send_event_helper() 849 e->completion = NULL; in drm_send_event_helper() 889 * completion o [all...] |