Home
last modified time | relevance | path

Searched refs:keyword (Results 1 – 25 of 48) sorted by relevance

12

/Linux-v4.19/fs/orangefs/
Dorangefs-debugfs.c62 char *keyword; member
589 cdm_array[i].keyword = kzalloc(keyword_len + 1, GFP_KERNEL); in orangefs_prepare_cdm_array()
590 if (!cdm_array[i].keyword) { in orangefs_prepare_cdm_array()
597 cdm_array[i].keyword, in orangefs_prepare_cdm_array()
601 if (!strcmp(cdm_array[i].keyword, ORANGEFS_VERBOSE)) in orangefs_prepare_cdm_array()
604 if (!strcmp(cdm_array[i].keyword, ORANGEFS_ALL)) in orangefs_prepare_cdm_array()
684 strlcat(new, cdm_array[i].keyword, string_size); in orangefs_prepare_debugfs_help_string()
694 strlcat(new, s_kmod_keyword_mask_map[i].keyword, string_size); in orangefs_prepare_debugfs_help_string()
780 if (keyword_is_amalgam((char *) s_kmod_keyword_mask_map[index].keyword)) in do_k_string()
785 strlen(s_kmod_keyword_mask_map[index].keyword)) in do_k_string()
[all …]
Dorangefs-debug.h48 const char *keyword; member
/Linux-v4.19/drivers/staging/speakup/
Dvarhandlers.c63 int spk_chartab_get_value(char *keyword) in spk_chartab_get_value() argument
67 if (!strcmp(keyword, "ALPHA")) in spk_chartab_get_value()
69 else if (!strcmp(keyword, "B_CTL")) in spk_chartab_get_value()
71 else if (!strcmp(keyword, "WDLM")) in spk_chartab_get_value()
73 else if (!strcmp(keyword, "A_PUNC")) in spk_chartab_get_value()
75 else if (!strcmp(keyword, "PUNC")) in spk_chartab_get_value()
77 else if (!strcmp(keyword, "NUM")) in spk_chartab_get_value()
79 else if (!strcmp(keyword, "A_CAP")) in spk_chartab_get_value()
81 else if (!strcmp(keyword, "B_CAPSYM")) in spk_chartab_get_value()
83 else if (!strcmp(keyword, "B_SYM")) in spk_chartab_get_value()
Dspeakup.h55 int spk_chartab_get_value(char *keyword);
Dkobjects.c116 char keyword[MAX_DESC_LEN + 1]; in chars_chartab_store() local
182 outptr = keyword; in chars_chartab_store()
195 charclass = spk_chartab_get_value(keyword); in chars_chartab_store()
Dspkguide.txt66 DoubleTalk LT at boot up. You may replace the ltlk synthesizer keyword
67 with the keyword for whatever synthesizer you wish to use. The
423 to the device whose keyword is KWD.
511 # Replace KWD with the keyword for your synthesizer, E.G., ltlk for LiteTalk.
530 synthesizer keyword to the /speakup/synth sys entry.
533 a second one is connected in its place. Then echo the keyword for the
536 keywords in section 1 to find the keyword which matches your synth.
554 named speakup_<keyword>, where <keyword> is the keyword for the
569 were using a different synth, then you would substitute its keyword in
587 of by simply echoing the synthesizer keyword into the
[all …]
/Linux-v4.19/scripts/
Dunifdef.c191 static char *keyword; /* used for editing #elif's */ variable
453 static void Mpass (void) { strncpy(keyword, "if ", 4); Pelif(); } in Mpass()
522 snprintf(keyword, tline + sizeof(tline) - keyword, in keywordedit()
669 keyword = tline + (cp - tline); in parseline()
671 kwlen = cp - keyword; in parseline()
676 if (strlcmp("ifdef", keyword, kwlen) == 0 || in parseline()
677 strlcmp("ifndef", keyword, kwlen) == 0) { in parseline()
682 retval = (keyword[2] == 'n') in parseline()
692 } else if (strlcmp("if", keyword, kwlen) == 0) in parseline()
694 else if (strlcmp("elif", keyword, kwlen) == 0) in parseline()
[all …]
/Linux-v4.19/drivers/media/usb/pvrusb2/
Dpvrusb2-debugifc.c116 const char *keyword) in debugifc_match_keyword() argument
119 if (!keyword) return 0; in debugifc_match_keyword()
120 kl = strlen(keyword); in debugifc_match_keyword()
122 return !memcmp(buf,keyword,kl); in debugifc_match_keyword()
/Linux-v4.19/tools/perf/Documentation/
Dtips.txt9 Search options using a keyword: perf report -h <keyword>
11 List events using substring match: perf list <keyword>
/Linux-v4.19/security/keys/encrypted-keys/
Dencrypted.c179 char *p, *keyword; in datablob_parse() local
181 keyword = strsep(&datablob, " \t"); in datablob_parse()
182 if (!keyword) { in datablob_parse()
186 key_cmd = match_token(keyword, key_tokens, args); in datablob_parse()
230 "when called from .update method\n", keyword); in datablob_parse()
238 "when called from .update method\n", keyword); in datablob_parse()
252 keyword); in datablob_parse()
259 keyword); in datablob_parse()
/Linux-v4.19/Documentation/fb/
Dsisfb.txt56 described above or the vesa keyword instead of mode). If compiled as a module,
74 The desired display mode can be specified using the keyword "mode" with
87 Additionally, sisfb understands the keyword "vesa" followed by a VESA mode
105 You should *not* compile-in vesafb. And please do not use the "vga=" keyword
Dframebuffer.txt139 still have to specify the color depth (using the Depth keyword) and virtual
140 resolution (using the Virtual keyword) though. This is the default for the
/Linux-v4.19/drivers/s390/block/
Ddasd_devmap.c225 static int __init dasd_parse_keyword(char *keyword) in dasd_parse_keyword() argument
227 int length = strlen(keyword); in dasd_parse_keyword()
229 if (strncmp("autodetect", keyword, length) == 0) { in dasd_parse_keyword()
234 if (strncmp("probeonly", keyword, length) == 0) { in dasd_parse_keyword()
239 if (strncmp("nopav", keyword, length) == 0) { in dasd_parse_keyword()
248 if (strncmp("nofcx", keyword, length) == 0) { in dasd_parse_keyword()
254 if (strncmp("fixedbuffers", keyword, length) == 0) { in dasd_parse_keyword()
/Linux-v4.19/tools/bpf/bpftool/bash-completion/
Dbpftool134 local keyword ref
137 keyword=${words[$((idx-1))]}
144 type=$(bpftool -jp map show $keyword $ref | \
152 # Search for "value" keyword.
/Linux-v4.19/Documentation/devicetree/bindings/pinctrl/
Dberlin,pinctrl.txt13 Be aware the Marvell Berlin datasheets use the keyword 'mode' for what
/Linux-v4.19/tools/bpf/bpftool/Documentation/
Dbpftool-map.rst60 If the **hex** keyword is provided in front of the bytes
62 no "0x" prefix is added. If the keyword is not provided, then
/Linux-v4.19/LICENSES/exceptions/
DLinux-syscall-note8 To use this exception add it with the keyword WITH to one of the
/Linux-v4.19/drivers/usb/misc/sisusbvga/
DKconfig37 the "options" keyword, such as eg.
/Linux-v4.19/tools/power/acpi/os_specific/service_layers/
Doslinuxtbl.c47 osl_find_rsdp_via_efi_by_keyword(FILE * file, const char *keyword);
402 osl_find_rsdp_via_efi_by_keyword(FILE * file, const char *keyword) in osl_find_rsdp_via_efi_by_keyword() argument
408 snprintf(format, 32, "%s=%s", keyword, "%llx"); in osl_find_rsdp_via_efi_by_keyword()
/Linux-v4.19/Documentation/filesystems/
Djfs.txt17 read-write. The resize keyword with no value will grow
/Linux-v4.19/security/tomoyo/
Dutil.c113 bool tomoyo_permstr(const char *string, const char *keyword) in tomoyo_permstr() argument
115 const char *cp = strstr(string, keyword); in tomoyo_permstr()
/Linux-v4.19/Documentation/trace/
Dmmiotrace.rst145 one line in the log. A record starts with a keyword, followed by keyword-
/Linux-v4.19/fs/reiserfs/
DKconfig17 database and keyword search systems than block allocation based file
/Linux-v4.19/Documentation/s390/
DCommonIO27 You can use the 'all' keyword to ignore all devices. The 'ipldev' and 'condev'
/Linux-v4.19/tools/perf/pmu-events/
DREADME20 use "ArchStdEvent" keyword to dereference an "Architecture standard

12