Lines Matching defs:key
130 static void altera_export_int(char *key, s32 value)
132 dprintk("Export: key = \"%s\", value = %d\n", key, value);
138 static void altera_export_bool_array(char *key, u8 *data, s32 count)
145 dprintk("Export: key = \"%s\", %d bits, value = HEX\n",
146 key, count);
199 dprintk("Export: key = \"%s\", %d bits, value = HEX %s\n",
200 key, count, string);
2116 char *key, char *value, int keylen, int vallen)
2118 * Gets key and value of NOTE fields in the JBC file.
2121 * the key string provided. If offset is not NULL, then
2122 * the function finds the next note field of any key,
2157 * We will search for the first note with a specific key,
2165 if (key && !strncasecmp(key, key_ptr, strlen(key_ptr))) {
2179 * We will search for the next note, regardless of the key,
2180 * and return both the value and the key
2188 if (key != NULL)
2189 strlcpy(key, &p[note_strings +
2407 char *key = NULL;
2421 key = kzalloc(33, GFP_KERNEL);
2422 if (!key) {
2452 &offset, key, value, 32, 256) == 0)
2454 __func__, key, value);
2518 kfree(key);