Home
last modified time | relevance | path

Searched refs:in_len (Results 1 - 25 of 106) sorted by relevance

12345

/kernel/linux/linux-5.10/lib/
H A Ddecompress_unlzo.c41 STATIC inline long INIT parse_header(u8 *input, long *skip, long in_len) in parse_header() argument
45 u8 *end = input + in_len; in parse_header()
54 if (in_len < HEADER_SIZE_MIN) in parse_header()
98 STATIC int INIT unlzo(u8 *input, long in_len, in unlzo() argument
152 in_len = fill(in_buf, HEADER_SIZE_MAX); in unlzo()
155 if (!parse_header(in_buf, &skip, in_len)) { in unlzo()
160 in_len -= skip; in unlzo()
164 memcpy(in_buf_save, in_buf, in_len); in unlzo()
173 if (fill && in_len < 4) { in unlzo()
174 skip = fill(in_buf + in_len, in unlzo()
[all...]
H A Ddecompress_unzstd.c123 static int INIT decompress_single(const u8 *in_buf, long in_len, u8 *out_buf, in decompress_single() argument
142 ret = ZSTD_findFrameCompressedSize(in_buf, in_len); in decompress_single()
146 in_len = (long)ret; in decompress_single()
148 ret = ZSTD_decompressDCtx(dctx, out_buf, out_len, in_buf, in_len); in decompress_single()
154 *in_pos = in_len; in decompress_single()
163 static int INIT __unzstd(unsigned char *in_buf, long in_len, in __unzstd() argument
194 return decompress_single(in_buf, in_len, out_buf, out_len, in __unzstd()
210 in_len = 0; in __unzstd()
214 in_len = fill(in_buf, ZSTD_IOBUF_SIZE); in __unzstd()
215 if (in_len < in __unzstd()
[all...]
H A Ddecompress_unlz4.c31 STATIC inline int INIT unlz4(u8 *input, long in_len, in unlz4() argument
43 long size = in_len; in unlz4()
45 size_t out_len = get_unaligned_le32(input + in_len); in unlz4()
207 STATIC int INIT __decompress(unsigned char *buf, long in_len, in __decompress() argument
215 return unlz4(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()
/kernel/linux/linux-6.6/lib/
H A Ddecompress_unlzo.c41 STATIC inline long INIT parse_header(u8 *input, long *skip, long in_len) in parse_header() argument
45 u8 *end = input + in_len; in parse_header()
53 if (in_len < HEADER_SIZE_MIN) in parse_header()
97 STATIC int INIT unlzo(u8 *input, long in_len, in unlzo() argument
151 in_len = fill(in_buf, HEADER_SIZE_MAX); in unlzo()
154 if (!parse_header(in_buf, &skip, in_len)) { in unlzo()
159 in_len -= skip; in unlzo()
163 memcpy(in_buf_save, in_buf, in_len); in unlzo()
172 if (fill && in_len < 4) { in unlzo()
173 skip = fill(in_buf + in_len, in unlzo()
[all...]
H A Ddecompress_unzstd.c125 static int INIT decompress_single(const u8 *in_buf, long in_len, u8 *out_buf, in decompress_single() argument
144 ret = zstd_find_frame_compressed_size(in_buf, in_len); in decompress_single()
148 in_len = (long)ret; in decompress_single()
150 ret = zstd_decompress_dctx(dctx, out_buf, out_len, in_buf, in_len); in decompress_single()
156 *in_pos = in_len; in decompress_single()
165 static int INIT __unzstd(unsigned char *in_buf, long in_len, in __unzstd() argument
196 return decompress_single(in_buf, in_len, out_buf, out_len, in __unzstd()
212 in_len = 0; in __unzstd()
216 in_len = fill(in_buf, ZSTD_IOBUF_SIZE); in __unzstd()
217 if (in_len < in __unzstd()
[all...]
H A Ddecompress_unlz4.c31 STATIC inline int INIT unlz4(u8 *input, long in_len, in unlz4() argument
43 long size = in_len; in unlz4()
45 size_t out_len = get_unaligned_le32(input + in_len); in unlz4()
207 STATIC int INIT __decompress(unsigned char *buf, long in_len, in __decompress() argument
215 return unlz4(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()
/kernel/linux/linux-5.10/fs/ubifs/
H A Dcompress.c86 * @in_len: length of the data to compress
92 * This function compresses input buffer @in_buf of length @in_len and stores
102 int in_len, void *out_buf, int *out_len, int *compr_type) in ubifs_compress()
111 if (in_len < UBIFS_MIN_COMPR_LEN) in ubifs_compress()
116 err = crypto_comp_compress(compr->cc, in_buf, in_len, out_buf, in ubifs_compress()
122 in_len, compr->name, err); in ubifs_compress()
130 if (in_len - *out_len < UBIFS_MIN_COMPRESS_DIFF) in ubifs_compress()
136 memcpy(out_buf, in_buf, in_len); in ubifs_compress()
137 *out_len = in_len; in ubifs_compress()
144 * @in_len
101 ubifs_compress(const struct ubifs_info *c, const void *in_buf, int in_len, void *out_buf, int *out_len, int *compr_type) ubifs_compress() argument
153 ubifs_decompress(const struct ubifs_info *c, const void *in_buf, int in_len, void *out_buf, int *out_len, int compr_type) ubifs_decompress() argument
[all...]
H A Dcrypto.c28 unsigned int in_len, unsigned int *out_len, int block) in ubifs_encrypt()
32 unsigned int pad_len = round_up(in_len, UBIFS_CIPHER_BLOCK_SIZE); in ubifs_encrypt()
36 dn->compr_size = cpu_to_le16(in_len); in ubifs_encrypt()
39 if (pad_len != in_len) in ubifs_encrypt()
40 memset(p + in_len, 0, pad_len - in_len); in ubifs_encrypt()
27 ubifs_encrypt(const struct inode *inode, struct ubifs_data_node *dn, unsigned int in_len, unsigned int *out_len, int block) ubifs_encrypt() argument
/kernel/linux/linux-6.6/fs/ubifs/
H A Dcompress.c86 * @in_len: length of the data to compress
92 * This function compresses input buffer @in_buf of length @in_len and stores
102 int in_len, void *out_buf, int *out_len, int *compr_type) in ubifs_compress()
111 if (in_len < UBIFS_MIN_COMPR_LEN) in ubifs_compress()
116 err = crypto_comp_compress(compr->cc, in_buf, in_len, out_buf, in ubifs_compress()
122 in_len, compr->name, err); in ubifs_compress()
130 if (in_len - *out_len < UBIFS_MIN_COMPRESS_DIFF) in ubifs_compress()
136 memcpy(out_buf, in_buf, in_len); in ubifs_compress()
137 *out_len = in_len; in ubifs_compress()
144 * @in_len
101 ubifs_compress(const struct ubifs_info *c, const void *in_buf, int in_len, void *out_buf, int *out_len, int *compr_type) ubifs_compress() argument
153 ubifs_decompress(const struct ubifs_info *c, const void *in_buf, int in_len, void *out_buf, int *out_len, int compr_type) ubifs_decompress() argument
[all...]
H A Dcrypto.c31 * @in_len: length of data to be compressed
39 unsigned int in_len, unsigned int *out_len, int block) in ubifs_encrypt()
43 unsigned int pad_len = round_up(in_len, UBIFS_CIPHER_BLOCK_SIZE); in ubifs_encrypt()
47 dn->compr_size = cpu_to_le16(in_len); in ubifs_encrypt()
50 if (pad_len != in_len) in ubifs_encrypt()
51 memset(p + in_len, 0, pad_len - in_len); in ubifs_encrypt()
38 ubifs_encrypt(const struct inode *inode, struct ubifs_data_node *dn, unsigned int in_len, unsigned int *out_len, int block) ubifs_encrypt() argument
/kernel/linux/linux-5.10/fs/btrfs/
H A Dlzo.c129 size_t in_len; in lzo_compress_pages() local
162 in_len = min(len, PAGE_SIZE); in lzo_compress_pages()
164 ret = lzo1x_1_compress(data_in, in_len, workspace->cbuf, in lzo_compress_pages()
179 tot_in += in_len; in lzo_compress_pages()
252 in_len = min(bytes_left, PAGE_SIZE); in lzo_compress_pages()
294 size_t in_len; in lzo_decompress_bio() local
331 in_len = read_compress_length(data_in + in_offset); in lzo_decompress_bio()
342 if (in_len > max_segment_len || tot_in + in_len > tot_len) { in lzo_decompress_bio()
347 tot_in += in_len; in lzo_decompress_bio()
428 size_t in_len; lzo_decompress() local
[all...]
/kernel/linux/linux-5.10/net/ceph/
H A Dcrypto.c219 void *buf, int buf_len, int in_len, int *pout_len) in ceph_aes_crypt()
225 int pad_byte = AES_BLOCK_SIZE - (in_len & (AES_BLOCK_SIZE - 1)); in ceph_aes_crypt()
226 int crypt_len = encrypt ? in_len + pad_byte : in_len; in ceph_aes_crypt()
231 memset(buf + in_len, pad_byte, pad_byte); in ceph_aes_crypt()
265 pad_byte = *(char *)(buf + in_len - 1); in ceph_aes_crypt()
267 in_len >= pad_byte) { in ceph_aes_crypt()
268 *pout_len = in_len - pad_byte; in ceph_aes_crypt()
270 pr_err("%s got bad padding %d on in_len %d\n", in ceph_aes_crypt()
271 __func__, pad_byte, in_len); in ceph_aes_crypt()
218 ceph_aes_crypt(const struct ceph_crypto_key *key, bool encrypt, void *buf, int buf_len, int in_len, int *pout_len) ceph_aes_crypt() argument
282 ceph_crypt(const struct ceph_crypto_key *key, bool encrypt, void *buf, int buf_len, int in_len, int *pout_len) ceph_crypt() argument
[all...]
/kernel/linux/linux-6.6/net/ceph/
H A Dcrypto.c220 void *buf, int buf_len, int in_len, int *pout_len) in ceph_aes_crypt()
226 int pad_byte = AES_BLOCK_SIZE - (in_len & (AES_BLOCK_SIZE - 1)); in ceph_aes_crypt()
227 int crypt_len = encrypt ? in_len + pad_byte : in_len; in ceph_aes_crypt()
232 memset(buf + in_len, pad_byte, pad_byte); in ceph_aes_crypt()
266 pad_byte = *(char *)(buf + in_len - 1); in ceph_aes_crypt()
268 in_len >= pad_byte) { in ceph_aes_crypt()
269 *pout_len = in_len - pad_byte; in ceph_aes_crypt()
271 pr_err("%s got bad padding %d on in_len %d\n", in ceph_aes_crypt()
272 __func__, pad_byte, in_len); in ceph_aes_crypt()
219 ceph_aes_crypt(const struct ceph_crypto_key *key, bool encrypt, void *buf, int buf_len, int in_len, int *pout_len) ceph_aes_crypt() argument
283 ceph_crypt(const struct ceph_crypto_key *key, bool encrypt, void *buf, int buf_len, int in_len, int *pout_len) ceph_crypt() argument
[all...]
/kernel/linux/linux-5.10/security/keys/
H A Dkeyctl_pkey.c138 if (uparams.in_len > info.max_dec_size || in keyctl_pkey_params_get_2()
143 if (uparams.in_len > info.max_enc_size || in keyctl_pkey_params_get_2()
148 if (uparams.in_len > info.max_data_size || in keyctl_pkey_params_get_2()
153 if (uparams.in_len > info.max_data_size || in keyctl_pkey_params_get_2()
161 params->in_len = uparams.in_len; in keyctl_pkey_params_get_2()
246 in = memdup_user(_in, params.in_len); in keyctl_pkey_e_d_s()
308 in = memdup_user(_in, params.in_len); in keyctl_pkey_verify()
/kernel/linux/linux-6.6/security/keys/
H A Dkeyctl_pkey.c138 if (uparams.in_len > info.max_dec_size || in keyctl_pkey_params_get_2()
143 if (uparams.in_len > info.max_enc_size || in keyctl_pkey_params_get_2()
148 if (uparams.in_len > info.max_data_size || in keyctl_pkey_params_get_2()
153 if (uparams.in_len > info.max_data_size || in keyctl_pkey_params_get_2()
161 params->in_len = uparams.in_len; in keyctl_pkey_params_get_2()
244 in = memdup_user(_in, params.in_len); in keyctl_pkey_e_d_s()
306 in = memdup_user(_in, params.in_len); in keyctl_pkey_verify()
/kernel/linux/linux-5.10/lib/lzo/
H A Dlzo1x_compress.c22 lzo1x_1_do_compress(const unsigned char *in, size_t in_len, in lzo1x_1_do_compress() argument
29 const unsigned char * const in_end = in + in_len; in lzo1x_1_do_compress()
30 const unsigned char * const ip_end = in + in_len - 20; in lzo1x_1_do_compress()
304 int lzogeneric1x_1_compress(const unsigned char *in, size_t in_len, in lzogeneric1x_1_compress() argument
311 size_t l = in_len; in lzogeneric1x_1_compress()
344 const unsigned char *ii = in + in_len - t; in lzogeneric1x_1_compress()
381 int lzo1x_1_compress(const unsigned char *in, size_t in_len, in lzo1x_1_compress() argument
385 return lzogeneric1x_1_compress(in, in_len, out, out_len, wrkmem, 0); in lzo1x_1_compress()
388 int lzorle1x_1_compress(const unsigned char *in, size_t in_len, in lzorle1x_1_compress() argument
392 return lzogeneric1x_1_compress(in, in_len, ou in lzorle1x_1_compress()
[all...]
H A Dlzo1x_decompress_safe.c39 int lzo1x_decompress_safe(const unsigned char *in, size_t in_len, in lzo1x_decompress_safe() argument
47 const unsigned char * const ip_end = in + in_len; in lzo1x_decompress_safe()
55 if (unlikely(in_len < 3)) in lzo1x_decompress_safe()
58 if (likely(in_len >= 5) && likely(*ip == 17)) { in lzo1x_decompress_safe()
/kernel/linux/linux-6.6/lib/lzo/
H A Dlzo1x_compress.c22 lzo1x_1_do_compress(const unsigned char *in, size_t in_len, in lzo1x_1_do_compress() argument
29 const unsigned char * const in_end = in + in_len; in lzo1x_1_do_compress()
30 const unsigned char * const ip_end = in + in_len - 20; in lzo1x_1_do_compress()
302 static int lzogeneric1x_1_compress(const unsigned char *in, size_t in_len, in lzogeneric1x_1_compress() argument
309 size_t l = in_len; in lzogeneric1x_1_compress()
342 const unsigned char *ii = in + in_len - t; in lzogeneric1x_1_compress()
379 int lzo1x_1_compress(const unsigned char *in, size_t in_len, in lzo1x_1_compress() argument
383 return lzogeneric1x_1_compress(in, in_len, out, out_len, wrkmem, 0); in lzo1x_1_compress()
386 int lzorle1x_1_compress(const unsigned char *in, size_t in_len, in lzorle1x_1_compress() argument
390 return lzogeneric1x_1_compress(in, in_len, ou in lzorle1x_1_compress()
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/
H A Dtx_tso.c43 * @in_len: Remaining length in current SKB fragment
66 unsigned int in_len; member
174 unsigned int header_len, in_len; in tso_start() local
180 in_len = skb_headlen(skb) - header_len; in tso_start()
182 st->in_len = in_len; in tso_start()
215 st->in_len = skb_frag_size(frag); in tso_get_fragment()
239 if (st->in_len == 0) in tso_fill_packet_with_fragment()
244 EFX_WARN_ON_ONCE_PARANOID(st->in_len <= 0); in tso_fill_packet_with_fragment()
247 n = min(st->in_len, s in tso_fill_packet_with_fragment()
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/sfc/
H A Dtx_tso.c43 * @in_len: Remaining length in current SKB fragment
66 unsigned int in_len; member
174 unsigned int header_len, in_len; in tso_start() local
180 in_len = skb_headlen(skb) - header_len; in tso_start()
182 st->in_len = in_len; in tso_start()
215 st->in_len = skb_frag_size(frag); in tso_get_fragment()
239 if (st->in_len == 0) in tso_fill_packet_with_fragment()
244 EFX_WARN_ON_ONCE_PARANOID(st->in_len <= 0); in tso_fill_packet_with_fragment()
247 n = min(st->in_len, s in tso_fill_packet_with_fragment()
[all...]
/kernel/linux/linux-5.10/net/tls/
H A Dtls_device_fallback.c52 struct scatter_walk *out, int *in_len) in tls_enc_record()
60 len = min_t(int, *in_len, ARRAY_SIZE(buf)); in tls_enc_record()
65 *in_len -= len; in tls_enc_record()
66 if (!*in_len) in tls_enc_record()
89 *in_len -= len; in tls_enc_record()
90 if (*in_len < 0) { in tls_enc_record()
91 *in_len += TLS_CIPHER_AES_GCM_128_TAG_SIZE; in tls_enc_record()
99 if (*in_len < 0) in tls_enc_record()
100 len += *in_len; in tls_enc_record()
102 *in_len in tls_enc_record()
48 tls_enc_record(struct aead_request *aead_req, struct crypto_aead *aead, char *aad, char *iv, __be64 rcd_sn, struct scatter_walk *in, struct scatter_walk *out, int *in_len) tls_enc_record() argument
[all...]
/kernel/linux/linux-6.6/fs/btrfs/
H A Dlzo.c242 u32 in_len; in lzo_compress_pages() local
252 in_len = min_t(u32, start + len - cur_in, sectorsize - sector_off); in lzo_compress_pages()
253 ASSERT(in_len); in lzo_compress_pages()
256 offset_in_page(cur_in), in_len, in lzo_compress_pages()
272 cur_in += in_len; in lzo_compress_pages()
432 size_t in_len; in lzo_decompress() local
442 in_len = read_compress_length(data_in); in lzo_decompress()
443 if (in_len != srclen) in lzo_decompress()
447 in_len = read_compress_length(data_in); in lzo_decompress()
448 if (in_len ! in lzo_decompress()
[all...]
/kernel/linux/linux-6.6/net/tls/
H A Dtls_device_fallback.c54 struct scatter_walk *out, int *in_len, in tls_enc_record()
75 len = min_t(int, *in_len, buf_size); in tls_enc_record()
80 *in_len -= len; in tls_enc_record()
81 if (!*in_len) in tls_enc_record()
101 *in_len -= len; in tls_enc_record()
102 if (*in_len < 0) { in tls_enc_record()
103 *in_len += cipher_desc->tag; in tls_enc_record()
111 if (*in_len < 0) in tls_enc_record()
112 len += *in_len; in tls_enc_record()
114 *in_len in tls_enc_record()
50 tls_enc_record(struct aead_request *aead_req, struct crypto_aead *aead, char *aad, char *iv, __be64 rcd_sn, struct scatter_walk *in, struct scatter_walk *out, int *in_len, struct tls_prot_info *prot) tls_enc_record() argument
[all...]
/kernel/linux/linux-5.10/drivers/infiniband/core/
H A Ducma.c370 int in_len, int out_len) in ucma_get_event()
440 int in_len, int out_len) in ucma_create_id()
592 int in_len, int out_len) in ucma_destroy_id()
626 int in_len, int out_len) in ucma_bind_ip()
651 int in_len, int out_len) in ucma_bind()
677 int in_len, int out_len) in ucma_resolve_ip()
704 int in_len, int out_len) in ucma_resolve_addr()
732 int in_len, int out_len) in ucma_resolve_route()
818 int in_len, int out_len) in ucma_query_route()
998 int in_len, in in ucma_query()
369 ucma_get_event(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_get_event() argument
439 ucma_create_id(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_create_id() argument
591 ucma_destroy_id(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_destroy_id() argument
625 ucma_bind_ip(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_bind_ip() argument
650 ucma_bind(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_bind() argument
675 ucma_resolve_ip(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_ip() argument
702 ucma_resolve_addr(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_addr() argument
730 ucma_resolve_route(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_route() argument
816 ucma_query_route(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_query_route() argument
996 ucma_query(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_query() argument
1050 ucma_connect(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_connect() argument
1086 ucma_listen(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_listen() argument
1111 ucma_accept(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_accept() argument
1158 ucma_reject(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_reject() argument
1191 ucma_disconnect(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_disconnect() argument
1212 ucma_init_qp_attr(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_init_qp_attr() argument
1379 ucma_set_option(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_set_option() argument
1413 ucma_notify(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_notify() argument
1521 ucma_join_ip_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_join_ip_multicast() argument
1544 ucma_join_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_join_multicast() argument
1559 ucma_leave_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_leave_multicast() argument
1610 ucma_migrate_id(struct ucma_file *new_file, const char __user *inbuf, int in_len, int out_len) ucma_migrate_id() argument
[all...]
/kernel/linux/linux-6.6/drivers/infiniband/core/
H A Ducma.c370 int in_len, int out_len) in ucma_get_event()
440 int in_len, int out_len) in ucma_create_id()
592 int in_len, int out_len) in ucma_destroy_id()
626 int in_len, int out_len) in ucma_bind_ip()
651 int in_len, int out_len) in ucma_bind()
677 int in_len, int out_len) in ucma_resolve_ip()
704 int in_len, int out_len) in ucma_resolve_addr()
732 int in_len, int out_len) in ucma_resolve_route()
818 int in_len, int out_len) in ucma_query_route()
998 int in_len, in in ucma_query()
369 ucma_get_event(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_get_event() argument
439 ucma_create_id(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_create_id() argument
591 ucma_destroy_id(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_destroy_id() argument
625 ucma_bind_ip(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_bind_ip() argument
650 ucma_bind(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_bind() argument
675 ucma_resolve_ip(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_ip() argument
702 ucma_resolve_addr(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_addr() argument
730 ucma_resolve_route(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_route() argument
816 ucma_query_route(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_query_route() argument
996 ucma_query(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_query() argument
1050 ucma_connect(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_connect() argument
1086 ucma_listen(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_listen() argument
1111 ucma_accept(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_accept() argument
1158 ucma_reject(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_reject() argument
1191 ucma_disconnect(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_disconnect() argument
1212 ucma_init_qp_attr(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_init_qp_attr() argument
1379 ucma_set_option(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_set_option() argument
1413 ucma_notify(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_notify() argument
1521 ucma_join_ip_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_join_ip_multicast() argument
1544 ucma_join_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_join_multicast() argument
1559 ucma_leave_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_leave_multicast() argument
1610 ucma_migrate_id(struct ucma_file *new_file, const char __user *inbuf, int in_len, int out_len) ucma_migrate_id() argument
[all...]

Completed in 14 milliseconds

12345