Home
last modified time | relevance | path

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

/third_party/uapp/dash/src/
A Dtab.c94 char completion[LINE_MAX]; in complete_at_dir() local
95 strncpy(completion, state->line_prefix, sizeof(completion)); in complete_at_dir()
96 completion[sizeof(completion) - 1] = '\0'; in complete_at_dir()
97 size_t remaining = sizeof(completion) - strlen(completion) - 1; in complete_at_dir()
98 strncat(completion, state->line_separator, remaining); in complete_at_dir()
99 remaining = sizeof(completion) - strlen(completion) - 1; in complete_at_dir()
100 strncat(completion, de->d_name, remaining); in complete_at_dir()
102 linenoiseAddCompletion(completions, completion); in complete_at_dir()
/third_party/ulib/linenoise/
A Dexample.c7 void completion(const char *buf, linenoiseCompletions *lc) { in completion() function
45 linenoiseSetCompletionCallback(completion); in main()
A DREADME.markdown131 Linenoise supports completion, which is the ability to complete the user
134 In order to use completion, you need to register a completion callback, which
138 The following is an example of registering a completion callback:
140 linenoiseSetCompletionCallback(completion);
142 The completion must be a function returning `void` and getting as input
148 void completion(const char *buf, linenoiseCompletions *lc) {
155 Basically in your completion callback, you inspect the input, and return
158 If you want to test the completion feature, compile the example program
/third_party/lib/acpica/
A Dchanges.txt6614 completion routine AcpiPsCompleteThisOp. Lin Ming. ACPICA BZ 492.
6865 completion message. Previously, no message was displayed in this case.
10978 ACPI 3.0 support is nearing completion in both the iASL compiler and the
13242 Methods must run to completion, or the system may be left in an

Completed in 47 milliseconds