Searched refs:new_keys (Results 1 – 6 of 6) sorted by relevance
/openbmc/linux/drivers/input/keyboard/ |
H A D | qt1070.c | 109 u8 new_keys, keyval, mask = 0x01; in qt1070_interrupt() local 115 new_keys = qt1070_read(client, KEY_STATUS); in qt1070_interrupt() 118 keyval = new_keys & mask; in qt1070_interrupt() 125 data->last_keys = new_keys; in qt1070_interrupt()
|
H A D | qt1050.c | 257 unsigned long new_keys, changed; in qt1050_irq_threaded() local 276 new_keys = (val & 0x70) >> 2 | (val & 0x6) >> 1; in qt1050_irq_threaded() 277 changed = ts->last_keys ^ new_keys; in qt1050_irq_threaded() 283 test_bit(i, &new_keys)); in qt1050_irq_threaded() 285 ts->last_keys = new_keys; in qt1050_irq_threaded()
|
/openbmc/qemu/qga/ |
H A D | commands-posix-ssh.c | 168 g_autofree GStrv new_keys = NULL; /* do not own the strings */ in qmp_guest_ssh_remove_authorized_keys() local 192 new_keys = g_new0(char *, g_strv_length(authkeys) + 1); in qmp_guest_ssh_remove_authorized_keys() 205 new_keys[nkeys++] = *a; in qmp_guest_ssh_remove_authorized_keys() 208 write_authkeys(authkeys_path, new_keys, p, errp); in qmp_guest_ssh_remove_authorized_keys()
|
H A D | commands-windows-ssh.c | 670 g_autofree GStrv new_keys = NULL; /* do not own the strings */ in qmp_guest_ssh_remove_authorized_keys() local 692 new_keys = g_new0(char *, g_strv_length(authkeys) + 1); in qmp_guest_ssh_remove_authorized_keys() 707 new_keys[nkeys++] = *a; in qmp_guest_ssh_remove_authorized_keys() 711 write_authkeys(userInfo, new_keys, errp); in qmp_guest_ssh_remove_authorized_keys()
|
/openbmc/linux/tools/testing/selftests/arm64/pauth/ |
H A D | pac.c | 299 struct signatures new_keys; in TEST() local 314 ret = exec_sign_all(&new_keys, i); in TEST() 322 ret = n_same(&old_keys, &new_keys, nkeys); in TEST()
|
/openbmc/linux/drivers/md/bcache/ |
H A D | bset.c | 136 uint64_t *new_keys; in __bch_keylist_realloc() local 144 new_keys = krealloc(old_keys, sizeof(uint64_t) * newsize, GFP_NOIO); in __bch_keylist_realloc() 146 if (!new_keys) in __bch_keylist_realloc() 150 memcpy(new_keys, l->inline_keys, sizeof(uint64_t) * oldsize); in __bch_keylist_realloc() 152 l->keys_p = new_keys; in __bch_keylist_realloc() 153 l->top_p = new_keys + oldsize; in __bch_keylist_realloc()
|