Searched refs:keyword (Results 1 - 18 of 18) sorted by relevance

/linux-master/drivers/accessibility/speakup/
H A Dvarhandlers.c66 int spk_chartab_get_value(char *keyword) argument
70 if (!strcmp(keyword, "ALPHA"))
72 else if (!strcmp(keyword, "B_CTL"))
74 else if (!strcmp(keyword, "WDLM"))
76 else if (!strcmp(keyword, "A_PUNC"))
78 else if (!strcmp(keyword, "PUNC"))
80 else if (!strcmp(keyword, "NUM"))
82 else if (!strcmp(keyword, "A_CAP"))
84 else if (!strcmp(keyword, "B_CAPSYM"))
86 else if (!strcmp(keyword, "B_SY
[all...]
H A Dspeakup.h55 int spk_chartab_get_value(char *keyword);
H A Dkobjects.c116 char keyword[MAX_DESC_LEN + 1]; local
117 char *outptr = NULL; /* Will hold keyword or desc. */
186 outptr = keyword;
199 charclass = spk_chartab_get_value(keyword);
/linux-master/fs/orangefs/
H A Dorangefs-debugfs.c58 * An array of client_debug_mask will be built to hold debug keyword/mask
62 char *keyword; member in struct:client_debug_mask
413 * Map the keyword string from userspace into a valid debug mask.
534 cdm_array[i].keyword = kzalloc(keyword_len + 1, GFP_KERNEL);
535 if (!cdm_array[i].keyword) {
542 cdm_array[i].keyword,
546 if (!strcmp(cdm_array[i].keyword, ORANGEFS_VERBOSE))
549 if (!strcmp(cdm_array[i].keyword, ORANGEFS_ALL))
617 * fill the client keyword/mask array and remember
629 strlcat(new, cdm_array[i].keyword, string_siz
773 keyword_is_amalgam(char *keyword) argument
[all...]
H A Dorangefs-debug.h48 const char *keyword; member in struct:__keyword_mask_s
58 * keyword mask_val index
/linux-master/scripts/
H A Dunifdef.c151 * Sometimes when editing a keyword the replacement text is longer, so
191 static char *keyword; /* used for editing #elif's */ variable
453 static void Mpass (void) { memcpy(keyword, "if ", 4); Pelif(); }
522 snprintf(keyword, tline + sizeof(tline) - keyword,
669 keyword = tline + (cp - tline);
671 kwlen = cp - keyword;
672 /* no way can we deal with a continuation inside a keyword */
676 if (strlcmp("ifdef", keyword, kwlen) == 0 ||
677 strlcmp("ifndef", keyword, kwle
[all...]
/linux-master/drivers/media/usb/pvrusb2/
H A Dpvrusb2-debugifc.c106 const char *keyword)
109 if (!keyword) return 0;
110 kl = strlen(keyword);
112 return !memcmp(buf,keyword,kl);
105 debugifc_match_keyword(const char *buf,unsigned int count, const char *keyword) argument
/linux-master/security/keys/encrypted-keys/
H A Dencrypted.c184 char *p, *keyword; local
186 keyword = strsep(&datablob, " \t");
187 if (!keyword) {
191 key_cmd = match_token(keyword, key_tokens, args);
235 pr_info("encrypted_key: keyword \'%s\' not allowed "
236 "when called from .update method\n", keyword);
244 pr_info("encrypted_key: keyword \'%s\' not allowed "
245 "when called from .update method\n", keyword);
257 pr_info("encrypted_key: keyword \'%s\' not allowed "
259 keyword);
[all...]
/linux-master/tools/power/acpi/os_specific/service_layers/
H A Doslinuxtbl.c47 osl_find_rsdp_via_efi_by_keyword(FILE * file, const char *keyword);
391 * PARAMETERS: keyword - Character string indicating ACPI GUID version
396 * DESCRIPTION: Find RSDP address via EFI using keyword indicating the ACPI
402 osl_find_rsdp_via_efi_by_keyword(FILE * file, const char *keyword) argument
408 snprintf(format, 32, "%s=%s", keyword, "%llx");
/linux-master/drivers/s390/crypto/
H A Dzcrypt_ccamisc.h205 const char *keyword,
H A Dzcrypt_ccamisc.c1482 const char *keyword,
1518 memcpy(preqparm->rule_array, keyword, sizeof(preqparm->rule_array));
1481 cca_query_crypto_facility(u16 cardnr, u16 domain, const char *keyword, u8 *rarray, size_t *rarraylen, u8 *varray, size_t *varraylen) argument
/linux-master/security/tomoyo/
H A Dutil.c108 * @keyword: Keyword to find from @string/
110 * Returns true if @keyword was found in @string, false otherwise.
114 bool tomoyo_permstr(const char *string, const char *keyword) argument
116 const char *cp = strstr(string, keyword);
374 * tomoyo_str_starts - Check whether the given string starts with the given keyword.
377 * @find: Pointer to the keyword.
H A Dcommon.h847 * "no_keep_domain" keyword.
858 /* Structure for "aggregator" keyword. */
909 /* The global ACL referred by "use_group" keyword. */
952 bool tomoyo_permstr(const char *string, const char *keyword);
H A Dcommon.c136 /* String table for PREFERENCE keyword. */
538 * tomoyo_find_yesno - Find values for specified keyword.
541 * @find: Name of keyword.
564 * @find: Name of keyword.
1129 const char *keyword; member in struct:__anon75
1142 tomoyo_callback[i].keyword))
1358 * tomoyo_set_group - Print "acl_group " header keyword and category name.
/linux-master/drivers/usb/typec/ucsi/
H A Ducsi_stm32g0.c56 u32 keyword; member in struct:ucsi_stm32g0_fw_info
509 /* Sanity check on keyword and firmware version */
510 if (fw_info->keyword != STM32G0_FW_KEYWORD || fw_info->version == fw_version)
/linux-master/drivers/s390/block/
H A Ddasd_devmap.c218 * with one of the known keywords. If a keyword is found, take the approprate
220 * could not be matched to any keyword then return an error code.
222 static int __init dasd_parse_keyword(char *keyword) argument
224 int length = strlen(keyword);
226 if (strncmp("autodetect", keyword, length) == 0) {
231 if (strncmp("probeonly", keyword, length) == 0) {
236 if (strncmp("nopav", keyword, length) == 0) {
245 if (strncmp("nofcx", keyword, length) == 0) {
251 if (strncmp("fixedbuffers", keyword, length) == 0) {
/linux-master/lib/
H A Ddynamic_debug.c399 * of (keyword, value) pairs chosen from these possibilities:
426 char *keyword = words[i]; local
429 if (!strcmp(keyword, "func")) {
431 } else if (!strcmp(keyword, "file")) {
448 } else if (!strcmp(keyword, "module")) {
450 } else if (!strcmp(keyword, "format")) {
455 } else if (!strcmp(keyword, "line")) {
458 } else if (!strcmp(keyword, "class")) {
461 pr_err("unknown keyword \"%s\"\n", keyword);
[all...]
/linux-master/drivers/scsi/
H A DBusLogic.c3477 blogic_parse parses an individual option keyword. It returns true
3478 and updates the pointer if the keyword is recognized and false otherwise.
3481 static bool __init blogic_parse(char **str, char *keyword) argument
3484 while (*keyword != '\0') {
3486 char keywordch = *keyword++;

Completed in 231 milliseconds