Searched refs:key (Results 251 - 275 of 3067) sorted by last modified time

<<11121314151617181920>>

/linux-master/tools/testing/selftests/net/forwarding/
H A Dvxlan_bridge_1q_ipv6.sh633 local key
649 for key in ${!t0s[@]}; do
650 local delta=$((t1s[$key] - t0s[$key]))
651 local expect=${expects[$key]}
654 check_err $? "${counters[$key]}: Expected to capture $expect packets, got $delta."
/linux-master/scripts/kconfig/
H A Dqconf.cc44 QList<int> ConfigSettings::readSizes(const QString& key, bool *ok) argument
48 if (contains(key))
50 QStringList entryList = value(key).toStringList();
67 bool ConfigSettings::writeSizes(const QString& key, const QList<int>& value) argument
74 setValue(key, stringList);
733 if (ev->key() == Qt::Key_Escape && mode != fullMode && mode != listMode) {
745 switch (ev->key()) {
H A Dnconf.c49 "<n> to remove it. You may press the <Space> key to cycle through the\n"
80 "Unless in a data entry window, key <1> may be used instead of <F1>,\n"
151 "For verbose global help use key <1>.\n"
240 " Press the key in the (#) prefix to jump directly to that\n"
296 typedef void (*function_key_handler_t)(int *key, struct menu *menu);
297 static void handle_f1(int *key, struct menu *current_item);
298 static void handle_f2(int *key, struct menu *current_item);
299 static void handle_f3(int *key, struct menu *current_item);
300 static void handle_f4(int *key, struct menu *current_item);
301 static void handle_f5(int *key, struc
310 function_key key; member in struct:function_keys
395 handle_f1(int *key, struct menu *current_item) argument
403 handle_f2(int *key, struct menu *current_item) argument
410 handle_f3(int *key, struct menu *current_item) argument
419 handle_f4(int *key, struct menu *current_item) argument
435 handle_f5(int *key, struct menu *current_item) argument
442 handle_f6(int *key, struct menu *current_item) argument
449 handle_f7(int *key, struct menu *current_item) argument
456 handle_f8(int *key, struct menu *current_item) argument
463 handle_f9(int *key, struct menu *current_item) argument
470 process_special_keys(int *key, struct menu *menu) argument
1042 do_match(int key, struct match_state *state, int *ans) argument
[all...]
H A Dhashtable.h16 #define hash_head(table, key) (&(table)[(key) % HASH_SIZE(table)])
22 * @key: the key of the object to be added
24 #define hash_add(table, node, key) \
25 hlist_add_head(node, hash_head(table, key))
43 * @key: the key of the objects to iterate over
45 #define hash_for_each_possible(table, obj, member, key) \
46 hlist_for_each_entry(obj, hash_head(table, key), membe
[all...]
/linux-master/net/rxrpc/
H A Dsendmsg.c565 struct key *key; variable in typeref:struct:key
582 key = rx->key;
583 if (key && !rx->key->payload.data[0])
584 key = NULL;
589 cp.key = rx->key;
/linux-master/net/ipv6/
H A Desp6.c1097 char *key; local
1139 key = kmalloc(keylen, GFP_KERNEL);
1140 if (!key)
1143 p = key;
1177 err = crypto_aead_setkey(aead, key, keylen);
1180 kfree(key);
/linux-master/net/ipv4/
H A Dtcp_minisocks.c260 struct tcp_md5sig_key *key; local
263 * The timewait bucket does not have the key DB from the
265 * md5 key being used (if indeed we are using one)
266 * so the timewait ack generating code has the key.
269 if (!static_branch_unlikely(&tcp_md5_needed.key))
272 key = tp->af_specific->md5_lookup(sk, sk);
273 if (key) {
274 tcptw->tw_md5_key = kmemdup(key, sizeof(*key), GFP_ATOMIC);
277 if (!static_key_fast_inc_not_disabled(&tcp_md5_needed.key
368 struct tcp_md5sig_key *key; local
[all...]
H A Desp4.c1054 char *key; local
1096 key = kmalloc(keylen, GFP_KERNEL);
1097 if (!key)
1100 p = key;
1134 err = crypto_aead_setkey(aead, key, keylen);
1137 kfree_sensitive(key);
/linux-master/lib/
H A Dkobject_uevent.c117 const char *next, *buf_end, *key; local
147 /* skip the ' ', key must follow */
148 key = ++next;
149 if (key > buf_end)
168 key_len, key, (int) (next - buf), buf))
646 * add_uevent_var - add key value string to the environment buffer
648 * @format: printf format for the key=value pair
/linux-master/kernel/sched/
H A Dcore.c226 static inline int rb_sched_core_cmp(const void *key, const struct rb_node *node) argument
229 unsigned long cookie = (unsigned long)key;
1393 * This static key is used to reduce the uclamp overhead in the fast path. It
1400 * As soon as userspace modifies any of the uclamp knobs, the static key is
1404 * The knobs that would enable this static key are:
7077 void *key)
8770 #define preempt_dynamic_enable(f) static_key_enable(&sk_dynamic_##f.key)
8771 #define preempt_dynamic_disable(f) static_key_disable(&sk_dynamic_##f.key)
7076 default_wake_function(wait_queue_entry_t *curr, unsigned mode, int wake_flags, void *key) argument
/linux-master/kernel/bpf/
H A Dcpumap.c515 static long cpu_map_delete_elem(struct bpf_map *map, void *key) argument
518 u32 key_cpu = *(u32 *)key;
528 static long cpu_map_update_elem(struct bpf_map *map, void *key, void *value, argument
534 /* Array index key correspond to CPU number */
535 u32 key_cpu = *(u32 *)key;
602 static void *__cpu_map_lookup_elem(struct bpf_map *map, u32 key) argument
607 if (key >= map->max_entries)
610 rcpu = rcu_dereference_check(cmap->cpu_map[key],
615 static void *cpu_map_lookup_elem(struct bpf_map *map, void *key) argument
618 __cpu_map_lookup_elem(map, *(u32 *)key);
623 cpu_map_get_next_key(struct bpf_map *map, void *key, void *next_key) argument
[all...]
/linux-master/io_uring/
H A Dwaitid.c264 int sync, void *key)
270 struct task_struct *p = key;
263 io_waitid_wait(struct wait_queue_entry *wait, unsigned mode, int sync, void *key) argument
H A Dpoll.c56 void *key);
430 void *key)
434 __poll_t mask = key_to_poll(key);
429 io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync, void *key) argument
/linux-master/include/linux/
H A Dthunderbolt.h43 * @TB_SECURITY_SECURE: One time saved key required at minimum
125 * @key: Key for the property (always terminated).
134 char key[TB_PROPERTY_KEY_SIZE + 1]; member in struct:tb_property
152 int tb_property_add_immediate(struct tb_property_dir *parent, const char *key,
154 int tb_property_add_data(struct tb_property_dir *parent, const char *key,
156 int tb_property_add_text(struct tb_property_dir *parent, const char *key,
158 int tb_property_add_dir(struct tb_property_dir *parent, const char *key,
162 const char *key, enum tb_property_type type);
171 int tb_register_property_dir(const char *key, struct tb_property_dir *dir);
172 void tb_unregister_property_dir(const char *key, struc
400 const char *key; member in struct:tb_service
[all...]
H A Dsysfs.h35 struct lock_class_key *key; member in struct:attribute
55 (attr)->key = &__key; \
H A Dkernfs.h432 struct lock_class_key *key);
528 void *priv, const void *ns, struct lock_class_key *key)
525 __kernfs_create_file(struct kernfs_node *parent, const char *name, umode_t mode, kuid_t uid, kgid_t gid, loff_t size, const struct kernfs_ops *ops, void *priv, const void *ns, struct lock_class_key *key) argument
/linux-master/fs/ubifs/
H A Dubifs.h98 * There is no notion of truncation key because truncation nodes do not exist
303 * @key: key of node scanned (if it has one)
312 union ubifs_key key; member in struct:ubifs_scan_node
746 * struct ubifs_zbranch - key/coordinate/length branch stored in znodes.
747 * @key: key
755 union ubifs_key key; member in struct:ubifs_zbranch
777 * @alt: lower bound of key range has altered i.e. child inserted at slot 0
805 * @key
815 union ubifs_key key; member in struct:bu_info
[all...]
H A Dtnc_misc.c114 * @key: key to search for
117 * This is a helper function which search branch with key @key in @znode using
123 * greater than @key, then %-1 is returned in @n.
127 const union ubifs_key *key, int *n)
137 cmp = keys_cmp(c, key, &zbr[mid].key);
153 ubifs_assert(c, keys_cmp(c, key, &zbr[0].key) <
125 ubifs_search_zbranch(const struct ubifs_info *c, const struct ubifs_znode *znode, const union ubifs_key *key, int *n) argument
485 union ubifs_key key1, *key = &zbr->key; local
[all...]
H A Dtnc.c27 static int fallible_read_node(struct ubifs_info *c, const union ubifs_key *key,
352 ubifs_assert(c, is_hash_key(c, &zbr->key));
413 * @zbr: key and position of the node
426 ubifs_assert(c, is_hash_key(c, &zbr->key));
436 err = fallible_read_node(c, &zbr->key, zbr, node);
527 * @key: key of node to read
534 static int fallible_read_node(struct ubifs_info *c, const union ubifs_key *key, argument
539 dbg_tnck(key, "LEB %d:%d, key ", zb
737 resolve_collision(struct ubifs_info *c, const union ubifs_key *key, struct ubifs_znode **zn, int *n, const struct fscrypt_name *nm) argument
925 fallible_resolve_collision(struct ubifs_info *c, const union ubifs_key *key, struct ubifs_znode **zn, int *n, const struct fscrypt_name *nm, int adding) argument
1070 resolve_collision_directly(struct ubifs_info *c, const union ubifs_key *key, struct ubifs_znode **zn, int *n, int lnum, int offs) argument
1207 ubifs_lookup_level0(struct ubifs_info *c, const union ubifs_key *key, struct ubifs_znode **zn, int *n) argument
1343 lookup_level0_dirty(struct ubifs_info *c, const union ubifs_key *key, struct ubifs_znode **zn, int *n) argument
1478 ubifs_tnc_locate(struct ubifs_info *c, const union ubifs_key *key, void *node, int *lnum, int *offs) argument
1584 union ubifs_key *key; local
1846 do_lookup_nm(struct ubifs_info *c, const union ubifs_key *key, void *node, const struct fscrypt_name *nm) argument
1894 ubifs_tnc_lookup_nm(struct ubifs_info *c, const union ubifs_key *key, void *node, const struct fscrypt_name *nm) argument
1920 search_dh_cookie(struct ubifs_info *c, const union ubifs_key *key, struct ubifs_dent_node *dent, uint32_t cookie, struct ubifs_znode **zn, int *n, int exact) argument
1960 do_lookup_dh(struct ubifs_info *c, const union ubifs_key *key, struct ubifs_dent_node *dent, uint32_t cookie) argument
1997 ubifs_tnc_lookup_dh(struct ubifs_info *c, const union ubifs_key *key, void *node, uint32_t cookie) argument
2036 union ubifs_key *key, *key1; local
2123 union ubifs_key *key = &zbr->key, *key1; local
2311 ubifs_tnc_add(struct ubifs_info *c, const union ubifs_key *key, int lnum, int offs, int len, const u8 *hash) argument
2362 ubifs_tnc_replace(struct ubifs_info *c, const union ubifs_key *key, int old_lnum, int old_offs, int lnum, int offs, int len) argument
2446 ubifs_tnc_add_nm(struct ubifs_info *c, const union ubifs_key *key, int lnum, int offs, int len, const u8 *hash, const struct fscrypt_name *nm) argument
2653 ubifs_tnc_remove(struct ubifs_info *c, const union ubifs_key *key) argument
2683 ubifs_tnc_remove_nm(struct ubifs_info *c, const union ubifs_key *key, const struct fscrypt_name *nm) argument
2732 ubifs_tnc_remove_dh(struct ubifs_info *c, const union ubifs_key *key, uint32_t cookie) argument
2801 key_in_range(struct ubifs_info *c, union ubifs_key *key, union ubifs_key *from_key, union ubifs_key *to_key) argument
2826 union ubifs_key *key; local
2988 ubifs_tnc_next_ent(struct ubifs_info *c, union ubifs_key *key, const struct fscrypt_name *nm) argument
3223 lookup_znode(struct ubifs_info *c, union ubifs_key *key, int level, int lnum, int offs) argument
3352 is_idx_node_in_tnc(struct ubifs_info *c, union ubifs_key *key, int level, int lnum, int offs) argument
3379 is_leaf_node_in_tnc(struct ubifs_info *c, union ubifs_key *key, int lnum, int offs) argument
3449 ubifs_tnc_has_node(struct ubifs_info *c, union ubifs_key *key, int level, int lnum, int offs, int is_idx) argument
3489 ubifs_dirty_idx_node(struct ubifs_info *c, union ubifs_key *key, int level, int lnum, int offs) argument
3529 union ubifs_key from_key, to_key, *key; local
[all...]
H A Dsuper.c106 union ubifs_key key; local
127 ino_key_init(c, &key, inode->i_ino);
129 err = ubifs_tnc_lookup(c, &key, ino);
610 * read and the key length is known.
968 * Opt_auth_key: The key name used for authentication
1592 dbg_gen("key hash type: %d", c->key_hash_type);
H A Dlprops.c1131 key_read(c, ubifs_idx_key(c, idx), &snod->key);
1135 found = ubifs_tnc_has_node(c, &snod->key, level, lnum,
H A Djournal.c580 ino_key_init_flash(c, &ino->key, inode->i_ino);
727 key_write(c, &dent_key, dent->key);
843 * @key: node key
851 const union ubifs_key *key, const void *buf, int len)
861 dbg_jnlk(key, "ino %lu, blk %u, len %d, key ",
862 (unsigned long)key_inum(c, key), key_block(c, key), len);
885 key_write(c, key,
850 ubifs_jnl_write_data(struct ubifs_info *c, const struct inode *inode, const union ubifs_key *key, const void *buf, int len) argument
1006 union ubifs_key key; local
1076 union ubifs_key key; local
1185 union ubifs_key key; local
1354 union ubifs_key key; local
1681 union ubifs_key key, to_key; local
1973 union ubifs_key key; local
[all...]
H A Dfile.c50 union ubifs_key key; local
53 data_key_init(c, &key, inode->i_ino, block);
54 err = ubifs_tnc_lookup(c, &key, dn);
628 } else if (key_block(c, &bu->zbranch[nn].key) == page_block) {
659 } else if (key_block(c, &bu->zbranch[nn].key) < page_block) {
875 data_key_init(c, &bu->key, inode->i_ino,
904 union ubifs_key key; local
921 data_key_init(c, &key, inode->i_ino, block);
922 err = ubifs_jnl_write_data(c, inode, &key, addr, blen);
H A Ddir.c199 union ubifs_key key; local
227 dent_key_init_hash(c, &key, dir->i_ino, nm.hash);
228 err = ubifs_tnc_lookup_dh(c, &key, dent, nm.minor_hash);
230 dent_key_init(c, &key, dir->i_ino, &nm);
231 err = ubifs_tnc_lookup_nm(c, &key, dent, &nm);
546 * 'seekdir()'/'telldir()' may not always work because of possible key
559 union ubifs_key key; local
614 lowest_dent_key(c, &key, dir->i_ino);
616 dent = ubifs_tnc_next_ent(c, &key, &nm);
622 ctx->pos = key_hash_flash(c, &dent->key);
889 union ubifs_key key; local
[all...]
H A Ddebug.c64 return "unknown/invalid key";
91 const union ubifs_key *key, char *buffer, int len)
94 int type = key_type(c, key);
100 (unsigned long)key_inum(c, key),
106 (unsigned long)key_inum(c, key),
107 get_key_type(type), key_hash(c, key));
111 (unsigned long)key_inum(c, key),
112 get_key_type(type), key_block(c, key));
116 (unsigned long)key_inum(c, key),
120 len -= snprintf(p, len, "(bad key typ
90 dbg_snprintf_key(const struct ubifs_info *c, const union ubifs_key *key, char *buffer, int len) argument
228 union ubifs_key key; local
297 union ubifs_key key; local
1127 union ubifs_key key; local
1199 union ubifs_key key; local
1935 union ubifs_key key; local
2170 union ubifs_key key; local
[all...]

Completed in 306 milliseconds

<<11121314151617181920>>