| /onnv/onnv-gate/usr/src/lib/libtecla/common/ |
| cplfile.h | 61 * word_end int The index of the character in line[] that 84 const char *line, int word_start, int word_end,
|
| cplfile.c | 95 int word_start, int word_end, int escaped); 98 const char *line, int word_start, int word_end, 117 int word_end; /* The index in line[] following the end of the prefix */ member in struct:__anon4216 214 * word_end int The index of the character in line[] that 237 const char *line, int word_start, int word_end, 246 if(!cpl || !cf || !line || word_end < word_start) { 260 nleft = word_end - word_start; 307 word_end, escaped); 440 if(cpl_add_completion(cpl, line, lptr-line, word_end, FS_DIR_SEP, 452 return cf_complete_entry(cf, cpl, line, word_start, word_end, escaped [all...] |
| cplmatch.c | 271 * word_end int The index within line[] of the character which 296 int word_start, int word_end, const char *suffix, 334 string = _sg_alloc_string(cpl->sg, word_end-word_start + len); 343 strncpy(string, line + word_start, word_end - word_start); 344 strlcpy(string + word_end - word_start, suffix, len + 1); 350 match->suffix = string + word_end - word_start; 517 * word_end int The index of the character in line[] which 535 int word_end, void *data, 546 if(!cpl || !line || !match_fn || word_end < 0 || word_end > line_len) [all...] |
| pcache.c | [all...] |
| /onnv/onnv-gate/usr/src/uts/common/fs/zfs/ |
| zio_compress.c | 74 uint64_t *word, *word_end; local 85 word_end = (uint64_t *)((char *)src + s_len); 86 for (word = src; word < word_end; word++) 90 if (word == word_end)
|
| /onnv/onnv-gate/usr/src/cmd/idmap/idmap/ |
| idmap_engine.c | 262 * WordCompletion *cpl; const char *line; int word_end are 276 (void) cpl_add_completion(cpl, line, word_end, 277 word_end, my_comv[i].cmd, "", " "); 282 if (isspace(line[word_end - 1])) 293 word_end - prefix_l, 294 word_end, my_comv[i].cmd + prefix_l, 325 word_end - prefix_l, 326 word_end, paren - 1 + prefix_l, "", " "); 334 word_end - 2, 335 word_end, "", "", " "); [all...] |
| /onnv/onnv-gate/usr/src/lib/krb5/ss/ |
| listen.c | 103 if (word_end != strlen(l)) 104 l[word_end] = '\0'; 114 ws = word_end - len; 119 word_end, commands->cmd[i] + len, "", " ");
|
| /onnv/onnv-gate/usr/src/cmd/svc/svccfg/ |
| svccfg_engine.c | 175 if (arg1end_i < word_end) 186 ret = cpl_file_completions(cpl, cfc, line, word_end); 232 add_cmd_matches(WordCompletion *cpl, const char *line, int word_end, 241 len = word_end - word_start; 242 bol = line + word_end - len; 250 word_end, cip->name + len, "", " "); 275 if ((arg0 + arg0len) - line >= word_end || 277 return (complete_command(cpl, (void *)arg0, line, word_end)); 293 word_end));
|
| svccfg_libscf.c | [all...] |
| /onnv/onnv-gate/usr/src/cmd/filebench/common/ |
| auto_comp.c | 710 * save the result in the passed ac_inputline_t structure. line and word_end 712 * buffer, and word_end is the index of the last character of user input. 716 parse_user_input(const char *line, int word_end, ac_inputline_t *input) 729 * Parse user input. We don't use word_end to do boundary checking, 952 match_string(WordCompletion *cpl, const char *line, int word_end, 970 acstr->startp - line, word_end, str, 978 acstr->startp - line, word_end, restp, 1009 parse_user_input(line, word_end, &inputline); 1038 ret = match_string(cpl, line, word_end, &inputline.strs[i],
|
| /onnv/onnv-gate/usr/src/cmd/fmli/oh/ |
| slk.c | 436 char *response, *word_end; local 461 word_end = response; /* abs k18.2 */ 462 while (!isspace(*word_end) && *word_end != '\0') /* abs k18.2 */ 463 word_end++; /* abs k18.2 */ 464 *word_end = '\0'; /* abs k18.2 */
|
| /onnv/onnv-gate/usr/src/lib/libtecla/ |
| libtecla.h | 312 * word_end int The index of the character in line[] which 320 const char *line, int word_end) [all...] |
| /onnv/onnv-gate/usr/src/cmd/zonecfg/ |
| zonecfg.c | 565 initial_match(const char *line1, const char *line2, int word_end) 567 if (word_end <= 0) 569 return (strncmp(line1, line2, word_end) == 0); 574 int word_end) 579 if (initial_match(line1, list[i], word_end)) { 580 err = cpl_add_completion(cpl, line1, 0, word_end, 581 list[i] + word_end, "", ""); 599 if (strncmp(line, "add ", MAX(MIN(word_end, 4), 1)) == 0) 600 return (add_stuff(cpl, line, add_cmds, word_end)); 601 if (strncmp(line, "clear ", MAX(MIN(word_end, 6), 2)) == 0 [all...] |
| /onnv/onnv-gate/usr/src/cmd/sgs/elfedit/common/ |
| elfedit.c | [all...] |