Home
last modified time | relevance | path

Searched defs:ctx (Results 1 – 25 of 2608) sorted by relevance

12345678910>>...105

/linux/tools/testing/selftests/bpf/progs/
H A Dverifier_sock_addr.c11 int recvmsg4_good_return_code(struct bpf_sock_addr *ctx) in recvmsg4_good_return_code()
18 int recvmsg4_bad_return_code(struct bpf_sock_addr *ctx) in recvmsg4_bad_return_code()
25 int recvmsg6_good_return_code(struct bpf_sock_addr *ctx) in recvmsg6_good_return_code()
32 int recvmsg6_bad_return_code(struct bpf_sock_addr *ctx) in recvmsg6_bad_return_code()
39 int recvmsg_unix_good_return_code(struct bpf_sock_addr *ctx) in recvmsg_unix_good_return_code()
46 int recvmsg_unix_bad_return_code(struct bpf_sock_addr *ctx) in recvmsg_unix_bad_return_code()
53 int sendmsg4_good_return_code_0(struct bpf_sock_addr *ctx) in sendmsg4_good_return_code_0()
60 int sendmsg4_good_return_code_1(struct bpf_sock_addr *ctx) in sendmsg4_good_return_code_1()
67 int sendmsg4_bad_return_code(struct bpf_sock_addr *ctx) in sendmsg4_bad_return_code()
74 int sendmsg6_good_return_code_0(struct bpf_sock_addr *ctx) in sendmsg6_good_return_code_0()
[all …]
H A Dstring_kfuncs_success.c13 __test(0) int test_strcmp_eq(void *ctx) { return bpf_strcmp(str, "hello world"); } in test_strcmp_eq()
14 __test(1) int test_strcmp_neq(void *ctx) { return bpf_strcmp(str, "hello"); } in test_strcmp_neq()
15 __test(1) int test_strchr_found(void *ctx) { return bpf_strchr(str, 'e'); } in test_strchr_found()
16 __test(11) int test_strchr_null(void *ctx) { return bpf_strchr(str, '\0'); } in test_strchr_null()
17 __test(-ENOENT) int test_strchr_notfound(void *ctx) { return bpf_strchr(str, 'x'); } in test_strchr_notfound()
18 __test(1) int test_strchrnul_found(void *ctx) { return bpf_strchrnul(str, 'e'); } in test_strchrnul_found()
19 __test(11) int test_strchrnul_notfound(void *ctx) { return bpf_strchrnul(str, 'x'); } in test_strchrnul_notfound()
20 __test(1) int test_strnchr_found(void *ctx) { return bpf_strnchr(str, 5, 'e'); } in test_strnchr_found()
21 __test(11) int test_strnchr_null(void *ctx) { return bpf_strnchr(str, 12, '\0'); } in test_strnchr_null()
22 __test(-ENOENT) int test_strnchr_notfound(void *ctx) { return bpf_strnchr(str, 5, 'w'); } in test_strnchr_notfound()
[all …]
H A Dlinked_list_fail.c171 int map_compat_kprobe(void *ctx) in map_compat_kprobe()
178 int map_compat_kretprobe(void *ctx) in map_compat_kretprobe()
185 int map_compat_tp(void *ctx) in map_compat_tp()
192 int map_compat_perf(void *ctx) in map_compat_perf()
199 int map_compat_raw_tp(void *ctx) in map_compat_raw_tp()
206 int map_compat_raw_tp_w(void *ctx) in map_compat_raw_tp_w()
213 int obj_type_id_oor(void *ctx) in obj_type_id_oor()
220 int obj_new_no_composite(void *ctx) in obj_new_no_composite()
227 int obj_new_no_struct(void *ctx) in obj_new_no_struct()
235 int obj_drop_non_zero_off(void *ctx) in obj_drop_non_zero_off()
[all …]
H A Dverifier_lsm.c10 __naked int errno_zero_retval_test1(void *ctx) in errno_zero_retval_test1()
21 __naked int errno_zero_retval_test2(void *ctx) in errno_zero_retval_test2()
32 __naked int errno_zero_retval_test4(void *ctx) in errno_zero_retval_test4()
43 __naked int errno_zero_retval_test5(void *ctx) in errno_zero_retval_test5()
54 __naked int errno_zero_retval_test6(void *ctx) in errno_zero_retval_test6()
65 __naked int bool_retval_test1(void *ctx) in bool_retval_test1()
77 __naked int bool_retval_test2(void *ctx) in bool_retval_test2()
88 __naked int bool_retval_test3(void *ctx) in bool_retval_test3()
99 __naked int bool_retval_test4(void *ctx) in bool_retval_test4()
110 __naked int void_retval_test1(void *ctx) in void_retval_test1()
[all …]
H A Dirq.c19 int irq_save_bad_arg(struct __sk_buff *ctx) in irq_save_bad_arg()
27 int irq_restore_bad_arg(struct __sk_buff *ctx) in irq_restore_bad_arg()
35 int irq_restore_missing_2(struct __sk_buff *ctx) in irq_restore_missing_2()
47 int irq_restore_missing_3(struct __sk_buff *ctx) in irq_restore_missing_3()
61 int irq_restore_missing_3_minus_2(struct __sk_buff *ctx) in irq_restore_missing_3_minus_2()
87 int irq_restore_missing_1_subprog(struct __sk_buff *ctx) in irq_restore_missing_1_subprog()
97 int irq_restore_missing_2_subprog(struct __sk_buff *ctx) in irq_restore_missing_2_subprog()
109 int irq_restore_missing_3_subprog(struct __sk_buff *ctx) in irq_restore_missing_3_subprog()
123 int irq_restore_missing_3_minus_2_subprog(struct __sk_buff *ctx) in irq_restore_missing_3_minus_2_subprog()
139 int irq_balance(struct __sk_buff *ctx) in irq_balance()
[all …]
H A Dstring_kfuncs_failure2.c9 SEC("syscall") int test_strcmp_too_long(void *ctx) { return bpf_strcmp(long_str, long_str); } in test_strcmp_too_long()
10 SEC("syscall") int test_strchr_too_long(void *ctx) { return bpf_strchr(long_str, 'b'); } in test_strchr_too_long()
11 SEC("syscall") int test_strchrnul_too_long(void *ctx) { return bpf_strchrnul(long_str, 'b'); } in test_strchrnul_too_long()
12 SEC("syscall") int test_strnchr_too_long(void *ctx) { return bpf_strnchr(long_str, sizeof(long_str)… in test_strnchr_too_long()
13 SEC("syscall") int test_strrchr_too_long(void *ctx) { return bpf_strrchr(long_str, 'b'); } in test_strrchr_too_long()
14 SEC("syscall") int test_strlen_too_long(void *ctx) { return bpf_strlen(long_str); } in test_strlen_too_long()
15 SEC("syscall") int test_strnlen_too_long(void *ctx) { return bpf_strnlen(long_str, sizeof(long_str)… in test_strnlen_too_long()
16 SEC("syscall") int test_strspn_str_too_long(void *ctx) { return bpf_strspn(long_str, "a"); } in test_strspn_str_too_long()
17 SEC("syscall") int test_strspn_accept_too_long(void *ctx) { return bpf_strspn("b", long_str); } in test_strspn_accept_too_long()
18 SEC("syscall") int test_strcspn_str_too_long(void *ctx) { return bpf_strcspn(long_str, "b"); } in test_strcspn_str_too_long()
[all …]
H A Dtest_global_func_ctx_args.c17 __weak int kprobe_typedef_ctx_subprog(bpf_user_pt_regs_t *ctx) in kprobe_typedef_ctx_subprog()
24 int kprobe_typedef_ctx(void *ctx) in kprobe_typedef_ctx()
48 __weak int kprobe_struct_ctx_subprog(pt_regs_struct_t *ctx) in kprobe_struct_ctx_subprog()
55 int kprobe_resolved_ctx(void *ctx) in kprobe_resolved_ctx()
65 __weak int kprobe_workaround_ctx_subprog(struct bpf_user_pt_regs_t *ctx) in kprobe_workaround_ctx_subprog()
72 int kprobe_workaround_ctx(void *ctx) in kprobe_workaround_ctx()
81 __weak int raw_tp_ctx_subprog(struct bpf_raw_tracepoint_args *ctx) in raw_tp_ctx_subprog()
88 int raw_tp_ctx(void *ctx) in raw_tp_ctx()
97 __weak int raw_tp_writable_ctx_subprog(struct bpf_raw_tracepoint_args *ctx) in raw_tp_writable_ctx_subprog()
104 int raw_tp_writable_ctx(void *ctx) in raw_tp_writable_ctx()
[all …]
H A Drcu_read_lock.c31 int get_cgroup_id(void *ctx) in get_cgroup_id()
52 int task_succ(void *ctx) in task_succ()
81 int no_lock(void *ctx) in no_lock()
93 int two_regions(void *ctx) in two_regions()
112 int non_sleepable_1(void *ctx) in non_sleepable_1()
128 int non_sleepable_2(void *ctx) in non_sleepable_2()
147 int task_acquire(void *ctx) in task_acquire()
175 int miss_lock(void *ctx) in miss_lock()
189 int miss_unlock(void *ctx) in miss_unlock()
201 int non_sleepable_rcu_mismatch(void *ctx) in non_sleepable_rcu_mismatch()
[all …]
H A Dpreempt_lock.c12 int preempt_lock_missing_1(struct __sk_buff *ctx) in preempt_lock_missing_1()
20 int preempt_lock_missing_2(struct __sk_buff *ctx) in preempt_lock_missing_2()
29 int preempt_lock_missing_3(struct __sk_buff *ctx) in preempt_lock_missing_3()
39 int preempt_lock_missing_3_minus_2(struct __sk_buff *ctx) in preempt_lock_missing_3_minus_2()
61 int preempt_lock_missing_1_subprog(struct __sk_buff *ctx) in preempt_lock_missing_1_subprog()
69 int preempt_lock_missing_2_subprog(struct __sk_buff *ctx) in preempt_lock_missing_2_subprog()
78 int preempt_lock_missing_2_minus_1_subprog(struct __sk_buff *ctx) in preempt_lock_missing_2_minus_1_subprog()
93 __success int preempt_balance(struct __sk_buff *ctx) in preempt_balance()
100 __success int preempt_balance_subprog_test(struct __sk_buff *ctx) in preempt_balance_subprog_test()
108 int preempt_sleepable_helper(void *ctx) in preempt_sleepable_helper()
[all …]
H A Dtrigger_bench.c29 int bench_trigger_uprobe(void *ctx) in bench_trigger_uprobe()
36 int bench_trigger_uprobe_multi(void *ctx) in bench_trigger_uprobe_multi()
45 int trigger_count(void *ctx) in trigger_count()
56 int trigger_driver(void *ctx) in trigger_driver()
69 int trigger_driver_kfunc(void *ctx) in trigger_driver_kfunc()
80 int bench_trigger_kprobe(void *ctx) in bench_trigger_kprobe()
87 int bench_trigger_kretprobe(void *ctx) in bench_trigger_kretprobe()
94 int bench_trigger_kprobe_multi(void *ctx) in bench_trigger_kprobe_multi()
101 int bench_trigger_kretprobe_multi(void *ctx) in bench_trigger_kretprobe_multi()
108 int bench_trigger_fentry(void *ctx) in bench_trigger_fentry()
[all …]
H A Dtest_sk_lookup.c76 int lookup_pass(struct bpf_sk_lookup *ctx) in lookup_pass()
82 int lookup_drop(struct bpf_sk_lookup *ctx) in lookup_drop()
88 int check_ifindex(struct bpf_sk_lookup *ctx) in check_ifindex()
96 int reuseport_pass(struct sk_reuseport_md *ctx) in reuseport_pass()
102 int reuseport_drop(struct sk_reuseport_md *ctx) in reuseport_drop()
109 int redir_port(struct bpf_sk_lookup *ctx) in redir_port()
128 int redir_ip4(struct bpf_sk_lookup *ctx) in redir_ip4()
151 int redir_ip6(struct bpf_sk_lookup *ctx) in redir_ip6()
176 int select_sock_a(struct bpf_sk_lookup *ctx) in select_sock_a()
191 int select_sock_a_no_reuseport(struct bpf_sk_lookup *ctx) in select_sock_a_no_reuseport()
[all …]
H A Dexceptions_fail.c97 int reject_async_callback_throw(struct __sk_buff *ctx) in reject_async_callback_throw()
107 __noinline static int subprog_lock(struct __sk_buff *ctx) in subprog_lock()
119 int reject_with_lock(void *ctx) in reject_with_lock()
128 int reject_subprog_with_lock(void *ctx) in reject_subprog_with_lock()
135 int reject_with_rcu_read_lock(void *ctx) in reject_with_rcu_read_lock()
142 __noinline static int throwing_subprog(struct __sk_buff *ctx) in throwing_subprog()
151 int reject_subprog_with_rcu_read_lock(void *ctx) in reject_subprog_with_rcu_read_lock()
165 int reject_with_rbtree_add_throw(void *ctx) in reject_with_rbtree_add_throw()
180 int reject_with_reference(void *ctx) in reject_with_reference()
191 __noinline static int subprog_ref(struct __sk_buff *ctx) in subprog_ref()
[all …]
/linux/drivers/gpu/drm/i915/gem/
H A Di915_gem_context.h21 static inline bool i915_gem_context_is_closed(const struct i915_gem_context *ctx) in i915_gem_context_is_closed()
26 static inline void i915_gem_context_set_closed(struct i915_gem_context *ctx) in i915_gem_context_set_closed()
32 static inline bool i915_gem_context_no_error_capture(const struct i915_gem_context *ctx) in i915_gem_context_no_error_capture()
37 static inline void i915_gem_context_set_no_error_capture(struct i915_gem_context *ctx) in i915_gem_context_set_no_error_capture()
42 static inline void i915_gem_context_clear_no_error_capture(struct i915_gem_context *ctx) in i915_gem_context_clear_no_error_capture()
47 static inline bool i915_gem_context_is_bannable(const struct i915_gem_context *ctx) in i915_gem_context_is_bannable()
52 static inline void i915_gem_context_set_bannable(struct i915_gem_context *ctx) in i915_gem_context_set_bannable()
57 static inline void i915_gem_context_clear_bannable(struct i915_gem_context *ctx) in i915_gem_context_clear_bannable()
62 static inline bool i915_gem_context_is_recoverable(const struct i915_gem_context *ctx) in i915_gem_context_is_recoverable()
67 static inline void i915_gem_context_set_recoverable(struct i915_gem_context *ctx) in i915_gem_context_set_recoverable()
[all …]
/linux/arch/powerpc/platforms/cell/spufs/
H A Dbacking_ops.c34 static void gen_spu_event(struct spu_context *ctx, u32 event) in gen_spu_event()
49 static int spu_backing_mbox_read(struct spu_context *ctx, u32 * data) in spu_backing_mbox_read()
71 static u32 spu_backing_mbox_stat_read(struct spu_context *ctx) in spu_backing_mbox_stat_read()
76 static __poll_t spu_backing_mbox_stat_poll(struct spu_context *ctx, in spu_backing_mbox_stat_poll()
115 static int spu_backing_ibox_read(struct spu_context *ctx, u32 * data) in spu_backing_ibox_read()
139 static int spu_backing_wbox_write(struct spu_context *ctx, u32 data) in spu_backing_wbox_write()
170 static u32 spu_backing_signal1_read(struct spu_context *ctx) in spu_backing_signal1_read()
175 static void spu_backing_signal1_write(struct spu_context *ctx, u32 data) in spu_backing_signal1_write()
187 static u32 spu_backing_signal2_read(struct spu_context *ctx) in spu_backing_signal2_read()
192 static void spu_backing_signal2_write(struct spu_context *ctx, u32 data) in spu_backing_signal2_write()
[all …]
H A Dhw_ops.c24 static int spu_hw_mbox_read(struct spu_context *ctx, u32 * data) in spu_hw_mbox_read()
41 static u32 spu_hw_mbox_stat_read(struct spu_context *ctx) in spu_hw_mbox_stat_read()
46 static __poll_t spu_hw_mbox_stat_poll(struct spu_context *ctx, __poll_t events) in spu_hw_mbox_stat_poll()
82 static int spu_hw_ibox_read(struct spu_context *ctx, u32 * data) in spu_hw_ibox_read()
103 static int spu_hw_wbox_write(struct spu_context *ctx, u32 data) in spu_hw_wbox_write()
124 static void spu_hw_signal1_write(struct spu_context *ctx, u32 data) in spu_hw_signal1_write()
129 static void spu_hw_signal2_write(struct spu_context *ctx, u32 data) in spu_hw_signal2_write()
134 static void spu_hw_signal1_type_set(struct spu_context *ctx, u64 val) in spu_hw_signal1_type_set()
150 static u64 spu_hw_signal1_type_get(struct spu_context *ctx) in spu_hw_signal1_type_get()
155 static void spu_hw_signal2_type_set(struct spu_context *ctx, u64 val) in spu_hw_signal2_type_set()
[all …]
H A Dsched.c85 void spu_set_timeslice(struct spu_context *ctx) in spu_set_timeslice()
96 void __spu_update_sched_info(struct spu_context *ctx) in __spu_update_sched_info()
137 void spu_update_sched_info(struct spu_context *ctx) in spu_update_sched_info()
155 static int __node_allowed(struct spu_context *ctx, int node) in __node_allowed()
167 static int node_allowed(struct spu_context *ctx, int node) in node_allowed()
191 struct spu_context *ctx = spu->ctx; in do_notify_spus_active() local
207 static void spu_bind_context(struct spu *spu, struct spu_context *ctx) in spu_bind_context()
256 struct spu_context *ctx; in aff_merge_remaining_ctxs() local
267 struct spu_context *ctx; in aff_set_offsets() local
288 static struct spu *aff_ref_location(struct spu_context *ctx, int mem_aff, in aff_ref_location()
[all …]
/linux/drivers/ras/amd/atl/
H A Dmap.c15 static int df2_get_intlv_mode(struct addr_ctx *ctx) in df2_get_intlv_mode()
30 static int df3_get_intlv_mode(struct addr_ctx *ctx) in df3_get_intlv_mode()
36 static int df3p5_get_intlv_mode(struct addr_ctx *ctx) in df3p5_get_intlv_mode()
46 static int df4_get_intlv_mode(struct addr_ctx *ctx) in df4_get_intlv_mode()
59 static int df4p5_get_intlv_mode(struct addr_ctx *ctx) in df4p5_get_intlv_mode()
80 static int get_intlv_mode(struct addr_ctx *ctx) in get_intlv_mode()
143 static int get_dram_offset(struct addr_ctx *ctx, u64 *norm_offset) in get_dram_offset()
182 static int df3_6ch_get_dram_addr_map(struct addr_ctx *ctx) in df3_6ch_get_dram_addr_map()
212 static int df2_get_dram_addr_map(struct addr_ctx *ctx) in df2_get_dram_addr_map()
227 static int df3_get_dram_addr_map(struct addr_ctx *ctx) in df3_get_dram_addr_map()
[all …]
H A Ddenormalize.c19 static u16 get_dst_fabric_id(struct addr_ctx *ctx) in get_dst_fabric_id()
44 static u64 make_space_for_coh_st_id_at_intlv_bit(struct addr_ctx *ctx) in make_space_for_coh_st_id_at_intlv_bit()
70 static u64 make_space_for_coh_st_id_split_2_1(struct addr_ctx *ctx) in make_space_for_coh_st_id_split_2_1()
94 static u64 make_space_for_coh_st_id_mi300(struct addr_ctx *ctx) in make_space_for_coh_st_id_mi300()
121 static u64 make_space_for_coh_st_id(struct addr_ctx *ctx) in make_space_for_coh_st_id()
156 static u16 get_coh_st_id_df2(struct addr_ctx *ctx) in get_coh_st_id_df2()
196 static u16 get_coh_st_id_df4(struct addr_ctx *ctx) in get_coh_st_id_df4()
256 static u16 get_coh_st_id_mi300(struct addr_ctx *ctx) in get_coh_st_id_mi300()
282 static u16 calculate_coh_st_id(struct addr_ctx *ctx) in calculate_coh_st_id()
323 static u64 insert_coh_st_id_at_intlv_bit(struct addr_ctx *ctx, u64 denorm_addr, u16 coh_st_id) in insert_coh_st_id_at_intlv_bit()
[all …]
/linux/security/ipe/
H A Deval.c33 static void build_ipe_sb_ctx(struct ipe_eval_ctx *ctx, const struct file *const file) in build_ipe_sb_ctx()
44 static void build_ipe_bdev_ctx(struct ipe_eval_ctx *ctx, const struct inode *const ino) in build_ipe_bdev_ctx()
50 static void build_ipe_bdev_ctx(struct ipe_eval_ctx *ctx, const struct inode *const ino) in build_ipe_bdev_ctx()
57 static void build_ipe_inode_blob_ctx(struct ipe_eval_ctx *ctx, in build_ipe_inode_blob_ctx()
63 static inline void build_ipe_inode_blob_ctx(struct ipe_eval_ctx *ctx, in build_ipe_inode_blob_ctx()
74 static void build_ipe_inode_ctx(struct ipe_eval_ctx *ctx, const struct inode *const ino) in build_ipe_inode_ctx()
80 static void build_ipe_inode_ctx(struct ipe_eval_ctx *ctx, const struct inode *const ino) in build_ipe_inode_ctx()
92 void ipe_build_eval_ctx(struct ipe_eval_ctx *ctx, in ipe_build_eval_ctx()
119 static bool evaluate_boot_verified(const struct ipe_eval_ctx *const ctx) in evaluate_boot_verified()
134 static bool evaluate_dmv_roothash(const struct ipe_eval_ctx *const ctx, in evaluate_dmv_roothash()
[all …]
/linux/drivers/base/regmap/
H A Dregmap-mmio.c65 static void regmap_mmio_write8(struct regmap_mmio_context *ctx, in regmap_mmio_write8()
72 static void regmap_mmio_write8_relaxed(struct regmap_mmio_context *ctx, in regmap_mmio_write8_relaxed()
79 static void regmap_mmio_iowrite8(struct regmap_mmio_context *ctx, in regmap_mmio_iowrite8()
85 static void regmap_mmio_write16le(struct regmap_mmio_context *ctx, in regmap_mmio_write16le()
92 static void regmap_mmio_write16le_relaxed(struct regmap_mmio_context *ctx, in regmap_mmio_write16le_relaxed()
99 static void regmap_mmio_iowrite16le(struct regmap_mmio_context *ctx, in regmap_mmio_iowrite16le()
105 static void regmap_mmio_write16be(struct regmap_mmio_context *ctx, in regmap_mmio_write16be()
112 static void regmap_mmio_iowrite16be(struct regmap_mmio_context *ctx, in regmap_mmio_iowrite16be()
118 static void regmap_mmio_write32le(struct regmap_mmio_context *ctx, in regmap_mmio_write32le()
125 static void regmap_mmio_write32le_relaxed(struct regmap_mmio_context *ctx, in regmap_mmio_write32le_relaxed()
[all …]
/linux/drivers/gpu/drm/bridge/analogix/
H A Danx7625.c46 static int i2c_access_workaround(struct anx7625_data *ctx, in i2c_access_workaround()
80 static int anx7625_reg_read(struct anx7625_data *ctx, in anx7625_reg_read()
96 static int anx7625_reg_block_read(struct anx7625_data *ctx, in anx7625_reg_block_read()
113 static int anx7625_reg_write(struct anx7625_data *ctx, in anx7625_reg_write()
131 static int anx7625_reg_block_write(struct anx7625_data *ctx, in anx7625_reg_block_write()
148 static int anx7625_write_or(struct anx7625_data *ctx, in anx7625_write_or()
161 static int anx7625_write_and(struct anx7625_data *ctx, in anx7625_write_and()
174 static int anx7625_write_and_or(struct anx7625_data *ctx, in anx7625_write_and_or()
188 static int anx7625_config_bit_matrix(struct anx7625_data *ctx) in anx7625_config_bit_matrix()
202 static int anx7625_read_ctrl_status_p0(struct anx7625_data *ctx) in anx7625_read_ctrl_status_p0()
[all …]
/linux/io_uring/
H A Dio_uring.h44 struct io_ring_ctx *ctx; member
61 struct io_ring_ctx *ctx = iowq->ctx; in io_should_wake() local
125 static inline void io_lockdep_assert_cq_locked(struct io_ring_ctx *ctx) in io_lockdep_assert_cq_locked()
150 static inline bool io_is_compat(struct io_ring_ctx *ctx) in io_is_compat()
160 static inline void io_submit_flush_completions(struct io_ring_ctx *ctx) in io_submit_flush_completions()
170 static inline bool io_get_cqe_overflow(struct io_ring_ctx *ctx, in io_get_cqe_overflow()
188 static inline bool io_get_cqe(struct io_ring_ctx *ctx, struct io_uring_cqe **ret) in io_get_cqe()
193 static inline bool io_defer_get_uncommited_cqe(struct io_ring_ctx *ctx, in io_defer_get_uncommited_cqe()
202 static __always_inline bool io_fill_cqe_req(struct io_ring_ctx *ctx, in io_fill_cqe_req()
269 static inline void io_ring_submit_unlock(struct io_ring_ctx *ctx, in io_ring_submit_unlock()
[all …]
/linux/drivers/media/i2c/
H A Dmax2175.c30 #define mxm_dbg(ctx, fmt, arg...) dev_dbg(&ctx->client->dev, fmt, ## arg) argument
31 #define mxm_err(ctx, fmt, arg...) dev_err(&ctx->client->dev, fmt, ## arg) argument
316 static int max2175_read(struct max2175 *ctx, u8 idx, u8 *val) in max2175_read()
330 static int max2175_write(struct max2175 *ctx, u8 idx, u8 val) in max2175_write()
342 static u8 max2175_read_bits(struct max2175 *ctx, u8 idx, u8 msb, u8 lsb) in max2175_read_bits()
352 static int max2175_write_bits(struct max2175 *ctx, u8 idx, in max2175_write_bits()
364 static int max2175_write_bit(struct max2175 *ctx, u8 idx, u8 bit, u8 newval) in max2175_write_bit()
370 static int max2175_poll_timeout(struct max2175 *ctx, u8 idx, u8 msb, u8 lsb, in max2175_poll_timeout()
380 static int max2175_poll_csm_ready(struct max2175 *ctx) in max2175_poll_csm_ready()
391 #define MAX2175_IS_BAND_AM(ctx) \ argument
[all …]
/linux/drivers/media/dvb-core/
H A Ddvb_vb2.c33 struct dvb_vb2_ctx *ctx = vb2_get_drv_priv(vq); in _queue_setup() local
52 struct dvb_vb2_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue); in _buffer_prepare() local
69 struct dvb_vb2_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue); in _buffer_queue() local
82 struct dvb_vb2_ctx *ctx = vb2_get_drv_priv(vq); in _start_streaming() local
90 struct dvb_vb2_ctx *ctx = vb2_get_drv_priv(vq); in _stop_streaming() local
108 struct dvb_vb2_ctx *ctx = vb2_get_drv_priv(vq); in _dmxdev_lock() local
116 struct dvb_vb2_ctx *ctx = vb2_get_drv_priv(vq); in _dmxdev_unlock() local
135 struct dvb_vb2_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue); in _fill_dmx_buffer() local
147 struct dvb_vb2_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue); in _fill_vb2_buffer() local
163 int dvb_vb2_init(struct dvb_vb2_ctx *ctx, const char *name, int nonblocking) in dvb_vb2_init()
[all …]
/linux/drivers/media/platform/samsung/s5p-mfc/
H A Ds5p_mfc_opr_v5.c34 static int s5p_mfc_alloc_dec_temp_buffers_v5(struct s5p_mfc_ctx *ctx) in s5p_mfc_alloc_dec_temp_buffers_v5()
55 static void s5p_mfc_release_dec_desc_buffer_v5(struct s5p_mfc_ctx *ctx) in s5p_mfc_release_dec_desc_buffer_v5()
61 static int s5p_mfc_alloc_codec_buffers_v5(struct s5p_mfc_ctx *ctx) in s5p_mfc_alloc_codec_buffers_v5()
193 static void s5p_mfc_release_codec_buffers_v5(struct s5p_mfc_ctx *ctx) in s5p_mfc_release_codec_buffers_v5()
200 static int s5p_mfc_alloc_instance_buffer_v5(struct s5p_mfc_ctx *ctx) in s5p_mfc_alloc_instance_buffer_v5()
242 static void s5p_mfc_release_instance_buffer_v5(struct s5p_mfc_ctx *ctx) in s5p_mfc_release_instance_buffer_v5()
260 static void s5p_mfc_write_info_v5(struct s5p_mfc_ctx *ctx, unsigned int data, in s5p_mfc_write_info_v5()
267 static unsigned int s5p_mfc_read_info_v5(struct s5p_mfc_ctx *ctx, in s5p_mfc_read_info_v5()
274 static void s5p_mfc_dec_calc_dpb_size_v5(struct s5p_mfc_ctx *ctx) in s5p_mfc_dec_calc_dpb_size_v5()
316 static void s5p_mfc_enc_calc_src_size_v5(struct s5p_mfc_ctx *ctx) in s5p_mfc_enc_calc_src_size_v5()
[all …]

12345678910>>...105