Home
last modified time | relevance | path

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

12345678

/openbsd/sys/dev/pci/drm/include/linux/
H A Dcompletion.h26 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/gnu/llvm/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.startswith(GetCursorArgumentPrefix()))
188 AddCompletion(completion, description, M);
197 for (const std::string &completion : completions) in AddCompletions() local
198 AddCompletion(completion); in AddCompletions()
/openbsd/gnu/llvm/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()
/openbsd/sys/dev/pci/drm/include/drm/
H A Ddrm_file.h108 struct completion *completion; member
117 void (*completion_release)(struct completion *completion);
H A Ddrm_audio_component.h126 struct completion master_bind_complete;
/openbsd/sys/dev/pci/drm/apple/
H A Dafk.h34 struct completion *completion; member
160 struct completion started;
161 struct completion stopped;
H A Ddptxep.h51 struct completion enable_completion;
52 struct completion linkcfg_completion;
H A Ddcp-internal.h180 struct completion start_done;
222 struct completion systemep_done;
H A Dafk.c378 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 Dapldcp.c217 struct completion *completion, int atomic) in apple_rtkit_send_message() argument
/openbsd/gnu/llvm/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];
/openbsd/gnu/lib/libreadline/
H A DCHANGES57 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
207 o. The completion convenience functions filename_completion_function,
459 m. The menu completion code was fixed to properly insert a single completion
528 display the list of completion matches. The new function
[all …]
/openbsd/gnu/lib/libreadline/doc/
H A Drluser.texinfo413 @item completion-ignore-case
418 @item completion-query-items
419 @vindex completion-query-items
435 @item disable-completion
436 @vindex disable-completion
863 set completion-query-items 150
1262 completion matches.
1587 @cindex completion builtins
1609 completion code had generated them directly from a completion specification
1632 completion specifications.
[all …]
H A Drltech.texinfo52 completion functions.
138 completion: completion on file names. If you do not want Readline to
506 Readline is performing word completion.
1361 it can provide completion for commands, data, or both.
1395 completion, depending on which behavior is desired.
1447 performing partial completion.
1497 completion functions (the Bash completion functions call this and other
1528 completion even if this function returns no matches.
1605 which break words for completion in Bash:
1650 This can be changed in custom completion functions to
[all …]
/openbsd/usr.bin/vi/docs/
H A Dfeatures17 + 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/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp737 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()
/openbsd/gnu/llvm/lldb/include/lldb/Core/
H A DIOHandler.h195 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/sys/dev/pci/drm/include/linux/soc/apple/
H A Drtkit.h28 struct completion *, int);
/openbsd/gnu/gcc/gcc/config/rs6000/
H A D8540.md32 ;; 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/gnu/llvm/llvm/utils/vim/
H A Dvimrc102 " 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/sys/dev/pci/drm/i915/pxp/
H A Dintel_pxp_types.h109 struct completion termination;
/openbsd/regress/usr.bin/mandoc/mdoc/Rv/
H A Dargs.out_markdown10 Upon successful completion, the value&#160;0 is returned; otherwise the value&#160;&#45;1 is return…
H A Dnostd.out_markdown10 Upon successful completion, the value&#160;0 is returned; otherwise the value&#160;&#45;1 is return…
/openbsd/sys/dev/pci/drm/
H A Ddrm_file.c846 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()
/openbsd/gnu/llvm/lldb/utils/lui/
H A DReadme31 - tab-completion

12345678