Searched refs:opts (Results 126 - 150 of 512) sorted by relevance

1234567891011>>

/linux-master/arch/um/drivers/
H A Dssl.c31 static struct chan_opts opts = { variable in typeref:struct:chan_opts
71 return line_config(serial_lines, ARRAY_SIZE(serial_lines), str, &opts,
159 new_title = add_xterm_umid(opts.xterm_title);
161 opts.xterm_title = new_title;
168 if (setup_one_line(serial_lines, i, s, &opts, &error))
198 opts.raw = 0;
H A Dtty.c19 static void *tty_chan_init(char *str, int device, const struct chan_opts *opts) argument
34 .raw = opts->raw });
H A Dstdio_console.c37 static struct chan_opts opts = { variable in typeref:struct:chan_opts
77 return line_config(vts, ARRAY_SIZE(vts), str, &opts, error_out);
159 new_title = add_xterm_umid(opts.xterm_title);
161 opts.xterm_title = new_title;
170 if (setup_one_line(vts, i, s, &opts, &error))
/linux-master/tools/objtool/include/objtool/
H A Dwarn.h34 if (opts.sec_address)
68 if (opts.verbose || opts.backtrace) { \
/linux-master/tools/testing/selftests/bpf/map_tests/
H A Dhtab_map_batch_ops.c20 DECLARE_LIBBPF_OPTS(bpf_map_batch_opts, opts,
37 err = bpf_map_update_batch(map_fd, keys, values, &max_entries, &opts);
87 DECLARE_LIBBPF_OPTS(bpf_map_batch_opts, opts,
110 values, &count, &opts);
120 values, &count, &opts);
128 values, &count, &opts);
157 &count, &opts);
190 &count, &opts);
220 &count, &opts);
H A Dlpm_trie_map_batch_ops.c28 DECLARE_LIBBPF_OPTS(bpf_map_batch_opts, opts,
40 err = bpf_map_update_batch(map_fd, keys, values, &max_entries, &opts);
75 DECLARE_LIBBPF_OPTS(bpf_map_batch_opts, opts,
107 keys + total, values + total, &count, &opts);
128 &opts);
/linux-master/fs/hfsplus/
H A Doptions.c49 void hfsplus_fill_defaults(struct hfsplus_sb_info *opts) argument
51 if (!opts)
54 opts->creator = HFSPLUS_DEF_CR_TYPE;
55 opts->type = HFSPLUS_DEF_CR_TYPE;
56 opts->umask = current_umask();
57 opts->uid = current_uid();
58 opts->gid = current_gid();
59 opts->part = -1;
60 opts->session = -1;
/linux-master/scripts/
H A Djobserver-exec23 opts = [x for x in flags.split(" ") if x.startswith("--jobserver")]
28 fds = opts[-1].split("=", 1)[1]
/linux-master/fs/bcachefs/
H A Dio_read.h69 struct bch_io_opts opts; member in struct:bch_read_bio
145 struct bch_io_opts opts)
151 rbio->opts = opts;
144 rbio_init(struct bio *bio, struct bch_io_opts opts) argument
/linux-master/tools/testing/selftests/bpf/
H A Dnetwork_helpers.c283 int connect_to_fd_opts(int server_fd, const struct network_helper_opts *opts) argument
290 if (!opts)
291 opts = &default_opts;
295 if (opts->type) {
296 type = opts->type;
304 if (opts->proto) {
305 protocol = opts->proto;
326 if (settimeo(fd, opts->timeout_ms))
329 if (opts->cc && opts
347 struct network_helper_opts opts = { local
[all...]
/linux-master/security/apparmor/
H A Dcapability.c111 * @opts: CAP_OPT_NOAUDIT bit determines whether audit record is generated
117 unsigned int opts, struct apparmor_audit_data *ad)
129 if (opts & CAP_OPT_NOAUDIT) {
146 * @opts: CAP_OPT_NOAUDIT bit determines whether audit record is generated
153 int cap, unsigned int opts)
162 profile_capable(profile, cap, opts, &ad));
116 profile_capable(struct aa_profile *profile, int cap, unsigned int opts, struct apparmor_audit_data *ad) argument
152 aa_capable(const struct cred *subj_cred, struct aa_label *label, int cap, unsigned int opts) argument
/linux-master/tools/lib/bpf/
H A Dfeatures.c216 LIBBPF_OPTS(bpf_map_create_opts, opts,
222 fd = bpf_map_create(BPF_MAP_TYPE_ARRAY, "libbpf_mmap", sizeof(int), sizeof(int), 1, &opts);
228 LIBBPF_OPTS(bpf_prog_load_opts, opts,
244 fd = bpf_prog_load(BPF_PROG_TYPE_CGROUP_SOCK, NULL, "GPL", insns, insn_cnt, &opts);
250 LIBBPF_OPTS(bpf_prog_load_opts, opts,
264 fd = bpf_prog_load(BPF_PROG_TYPE_TRACEPOINT, NULL, "GPL", insns, insn_cnt, &opts);
343 LIBBPF_OPTS(bpf_prog_load_opts, opts,
350 insns, ARRAY_SIZE(insns), &opts);
408 LIBBPF_OPTS(bpf_prog_load_opts, opts,
414 ret = bpf_prog_load(BPF_PROG_TYPE_TRACEPOINT, NULL, "GPL", insns, insn_cnt, &opts);
[all...]
H A Dlibbpf.h219 * @param opts options for how to load the bpf object, this parameter is
225 bpf_object__open_file(const char *path, const struct bpf_object_open_opts *opts);
233 * @param opts options for how to load the bpf object
239 const struct bpf_object_open_opts *opts);
487 const struct bpf_perf_event_opts *opts);
527 const struct bpf_kprobe_opts *opts);
550 const struct bpf_kprobe_multi_opts *opts);
593 * @param opts Additional options (see **struct bpf_uprobe_multi_opts**)
601 const struct bpf_uprobe_multi_opts *opts);
640 * @param opts Additiona
[all...]
H A Dlibbpf_internal.h297 static inline bool libbpf_validate_opts(const char *opts, argument
305 if (!libbpf_is_mem_zeroed(opts + opts_sz, (ssize_t)user_sz - opts_sz)) {
312 #define OPTS_VALID(opts, type) \
313 (!(opts) || libbpf_validate_opts((const char *)opts, \
316 (opts)->sz, #type))
317 #define OPTS_HAS(opts, field) \
318 ((opts) && opts->sz >= offsetofend(typeof(*(opts)), fiel
[all...]
/linux-master/drivers/usb/gadget/function/
H A Df_phonet.c583 struct f_phonet_opts *opts = to_f_phonet_opts(item); local
585 usb_put_function_instance(&opts->func_inst);
612 struct f_phonet_opts *opts; local
614 opts = container_of(f, struct f_phonet_opts, func_inst);
615 if (opts->bound)
616 gphonet_cleanup(opts->net);
618 free_netdev(opts->net);
619 kfree(opts);
624 struct f_phonet_opts *opts; local
626 opts
670 struct f_phonet_opts *opts; local
[all...]
/linux-master/kernel/bpf/
H A Dinode.c735 struct bpf_mount_opts *opts = root->d_sb->s_fs_info; local
747 if (opts->delegate_cmds || opts->delegate_maps ||
748 opts->delegate_progs || opts->delegate_attachs) {
757 opts->delegate_cmds, mask);
762 opts->delegate_maps, mask);
767 opts->delegate_progs, mask);
772 opts->delegate_attachs, mask);
819 struct bpf_mount_opts *opts local
1012 struct bpf_mount_opts *opts = sb->s_fs_info; local
1057 struct bpf_mount_opts *opts; local
1080 struct bpf_mount_opts *opts = sb->s_fs_info; local
[all...]
/linux-master/drivers/nvme/target/
H A Dfcloop.c58 fcloop_parse_options(struct fcloop_ctrl_options *opts, argument
75 opts->mask |= token;
83 opts->wwnn = token64;
91 opts->wwpn = token64;
98 opts->roles = token;
105 opts->fcaddr = token;
113 opts->lpwwnn = token64;
121 opts->lpwwpn = token64;
1093 struct fcloop_ctrl_options *opts; local
1104 opts
1211 struct fcloop_ctrl_options *opts; local
[all...]
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dlinked_list.c103 LIBBPF_OPTS(bpf_object_open_opts, opts, .kernel_log_buf = log_buf,
110 skel = linked_list_fail__open_opts(&opts);
151 LIBBPF_OPTS(bpf_test_run_opts, opts,
168 ret = bpf_prog_test_run_opts(bpf_program__fd(skel->progs.map_list_push_pop), &opts);
170 ASSERT_OK(opts.retval, "map_list_push_pop retval");
174 ret = bpf_prog_test_run_opts(bpf_program__fd(skel->progs.inner_map_list_push_pop), &opts);
176 ASSERT_OK(opts.retval, "inner_map_list_push_pop retval");
180 ret = bpf_prog_test_run_opts(bpf_program__fd(skel->progs.global_list_push_pop), &opts);
182 ASSERT_OK(opts.retval, "global_list_push_pop retval");
190 ret = bpf_prog_test_run_opts(bpf_program__fd(skel->progs.map_list_push_pop_multiple), &opts);
[all...]
H A Dxdp_do_redirect.c43 DECLARE_LIBBPF_OPTS(bpf_tc_opts, opts, .handle = 1, .priority = 1, .prog_fd = fd);
50 ret = bpf_tc_attach(hook, &opts);
72 DECLARE_LIBBPF_OPTS(bpf_test_run_opts, opts,
78 err = bpf_prog_test_run_opts(fd, &opts);
81 opts.data_size_in += 1;
82 err = bpf_prog_test_run_opts(fd, &opts);
97 DECLARE_LIBBPF_OPTS(bpf_test_run_opts, opts,
222 err = bpf_prog_test_run_opts(xdp_prog_fd, &opts);
/linux-master/include/net/
H A Dicmp.h51 struct ip_options opts = { 0 }; local
52 __icmp_send(skb_in, type, code, info, &opts);
/linux-master/drivers/media/platform/sunxi/sun8i-a83t-mipi-csi2/
H A Dsun8i_a83t_dphy.c14 union phy_configure_opts *opts)
16 return phy_mipi_dphy_config_validate(&opts->mipi_dphy);
13 sun8i_a83t_dphy_configure(struct phy *dphy, union phy_configure_opts *opts) argument
/linux-master/fs/smb/client/
H A Dcifsroot.c83 int __init cifs_root_data(char **dev, char **opts) argument
91 *opts = root_opts;
/linux-master/tools/testing/selftests/bpf/benchs/
H A Dbench_bpf_loop.c23 static const struct argp_option opts[] = { variable in typeref:struct:argp_option
44 .options = opts,
/linux-master/tools/usb/usbip/src/
H A Dusbip_detach.c98 static const struct option opts[] = { local
106 opt = getopt_long(argc, argv, "p:", opts, NULL);
/linux-master/fs/ntfs3/
H A Dsuper.c312 struct ntfs_mount_options *opts = fc->fs_private; local
322 opts->fs_uid = make_kuid(current_user_ns(), result.uint_32);
323 if (!uid_valid(opts->fs_uid))
327 opts->fs_gid = make_kgid(current_user_ns(), result.uint_32);
328 if (!gid_valid(opts->fs_gid))
334 opts->fs_fmask_inv = ~result.uint_32;
335 opts->fs_dmask_inv = ~result.uint_32;
336 opts->fmask = 1;
337 opts->dmask = 1;
342 opts
683 struct ntfs_mount_options *opts = sbi->options; local
1714 struct ntfs_mount_options *opts = fc->fs_private; local
1743 struct ntfs_mount_options *opts; local
[all...]

Completed in 219 milliseconds

1234567891011>>