Home
last modified time | relevance | path

Searched full:processed (Results 1 – 25 of 2526) sorted by relevance

12345678910>>...102

/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/wireshark/files/
H A DCVE-2022-3190.patch24 - guint processed = 0;
48 - processed = dissect_low_trailer(tvb, pinfo, type_tree, offset, len, ver, tdata);
49 - if (processed > 0) {
50 - tdata->trailer_len += processed;
58 - processed = dissect_med_trailer(tvb, pinfo, type_tree, offset, len, ver, tdata);
59 - if (processed > 0) {
60 - tdata->trailer_len += processed;
68 - processed =
70 - if (processed > 0) {
71 - tdata->trailer_len += processed;
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/
H A DMakefile23 DT_TMP_SCHEMA := $(obj)/processed-schema-examples.json
26 -name 'processed-schema*' ! \
58 $(obj)/processed-schema-examples.json: $(DT_DOCS) $(src)/.yamllint check_dtschema_version FORCE
64 # Just copy processed-schema-examples.json
66 $(obj)/processed-schema.json: $(obj)/processed-schema-examples.json FORCE
73 # If DT_SCHEMA_FILES is specified, use it for processed-schema.json
75 $(obj)/processed-schema.json: DT_MK_SCHEMA_FLAGS := -u
76 $(obj)/processed-schema.json: $(DT_SCHEMA_FILES) check_dtschema_version FORCE
81 extra-$(CHECK_DT_BINDING) += processed-schema-examples.json
82 extra-$(CHECK_DTBS) += processed-schema.json
[all …]
/OK3568_Linux_fs/kernel/drivers/auxdisplay/
H A Dcharlcd.c354 int processed = 0; in handle_lcd_special_code() local
363 processed = 1; in handle_lcd_special_code()
367 processed = 1; in handle_lcd_special_code()
371 processed = 1; in handle_lcd_special_code()
375 processed = 1; in handle_lcd_special_code()
379 processed = 1; in handle_lcd_special_code()
383 processed = 1; in handle_lcd_special_code()
387 processed = 1; in handle_lcd_special_code()
391 processed = 1; in handle_lcd_special_code()
395 processed = 1; in handle_lcd_special_code()
[all …]
/OK3568_Linux_fs/kernel/drivers/dma/idxd/
H A Dirq.c176 int *processed) in irq_process_pending_llist() argument
182 *processed = 0; in irq_process_pending_llist()
191 (*processed)++; in irq_process_pending_llist()
202 int *processed) in irq_process_work_list() argument
207 *processed = 0; in irq_process_work_list()
220 (*processed)++; in irq_process_work_list()
231 int rc, processed, total = 0; in idxd_desc_process() local
253 rc = irq_process_work_list(irq_entry, &processed); in idxd_desc_process()
254 total += processed; in idxd_desc_process()
258 rc = irq_process_pending_llist(irq_entry, &processed); in idxd_desc_process()
[all …]
/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwinprocarg.c193 * processed.
196 * return: return the number of tokens processed correctly.
515 /* Indicate that we have processed the argument */ in ddxProcessArgument()
527 /* Indicate that we have processed this argument */ in ddxProcessArgument()
537 /* Indicate that we have processed this argument */ in ddxProcessArgument()
549 /* Indicate that we have processed this argument */ in ddxProcessArgument()
562 /* Indicate that we have processed this argument */ in ddxProcessArgument()
571 /* Indicate that we have processed this argument */ in ddxProcessArgument()
584 /* Indicate that we have processed this argument */ in ddxProcessArgument()
596 /* Indicate that we have processed this argument */ in ddxProcessArgument()
[all …]
/OK3568_Linux_fs/kernel/include/trace/events/
H A Dxdp.h179 TP_PROTO(int map_id, unsigned int processed, unsigned int drops,
182 TP_ARGS(map_id, processed, drops, sched, xdp_stats),
189 __field(unsigned int, processed)
201 __entry->processed = processed;
210 " processed=%u drops=%u"
215 __entry->processed, __entry->drops,
222 TP_PROTO(int map_id, unsigned int processed, unsigned int drops,
225 TP_ARGS(map_id, processed, drops, to_cpu),
232 __field(unsigned int, processed)
241 __entry->processed = processed;
[all …]
/OK3568_Linux_fs/kernel/drivers/crypto/nx/
H A Dnx-aes-gcm.c109 unsigned int processed = 0, to_process; in nx_gca() local
132 to_process = min_t(u64, nbytes - processed, in nx_gca()
138 req->src, processed, &to_process); in nx_gca()
140 if ((to_process + processed) < nbytes) in nx_gca()
161 processed += to_process; in nx_gca()
162 } while (processed < nbytes); in nx_gca()
177 unsigned int processed = 0, to_process; in gmac() local
199 to_process = min_t(u64, nbytes - processed, in gmac()
205 req->src, processed, &to_process); in gmac()
207 if ((to_process + processed) < nbytes) in gmac()
[all …]
H A Dnx-aes-ccm.c271 unsigned int processed = 0, to_process; in generate_pat() local
273 processed += iauth_len; in generate_pat()
282 to_process = min_t(u32, assoclen - processed, in generate_pat()
287 req->src, processed, in generate_pat()
290 if ((to_process + processed) < assoclen) { in generate_pat()
318 processed += to_process; in generate_pat()
319 } while (processed < assoclen); in generate_pat()
339 unsigned int processed = 0, to_process; in ccm_nx_decrypt() local
361 to_process = nbytes - processed; in ccm_nx_decrypt()
363 if ((to_process + processed) < nbytes) in ccm_nx_decrypt()
[all …]
H A Dnx-aes-cbc.c60 unsigned int processed = 0, to_process; in cbc_aes_nx_crypt() local
71 to_process = req->cryptlen - processed; in cbc_aes_nx_crypt()
74 &to_process, processed, in cbc_aes_nx_crypt()
94 processed += to_process; in cbc_aes_nx_crypt()
95 } while (processed < req->cryptlen); in cbc_aes_nx_crypt()
H A Dnx-aes-ecb.c60 unsigned int processed = 0, to_process; in ecb_aes_nx_crypt() local
71 to_process = req->cryptlen - processed; in ecb_aes_nx_crypt()
74 &to_process, processed, NULL); in ecb_aes_nx_crypt()
92 processed += to_process; in ecb_aes_nx_crypt()
93 } while (processed < req->cryptlen); in ecb_aes_nx_crypt()
H A Dnx-aes-ctr.c78 unsigned int processed = 0, to_process; in ctr_aes_nx_crypt() local
84 to_process = req->cryptlen - processed; in ctr_aes_nx_crypt()
87 &to_process, processed, in ctr_aes_nx_crypt()
108 processed += to_process; in ctr_aes_nx_crypt()
109 } while (processed < req->cryptlen); in ctr_aes_nx_crypt()
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Ddm-log-userspace.h67 * When the request has been processed, user-space must return the
87 * When the request has been processed, user-space must return the
106 * When the request has been processed, user-space must return the
125 * When the request has been processed, user-space must return the
144 * When the request has been processed, user-space must return the
163 * When the request has been processed, user-space must return the
180 * When the request has been processed, user-space must return the
219 * When the request has been processed, user-space must return the
238 * When the request has been processed, user-space must return the
257 * When the request has been processed, user-space must return the
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/
H A Ddm-log-userspace.h67 * When the request has been processed, user-space must return the
87 * When the request has been processed, user-space must return the
106 * When the request has been processed, user-space must return the
125 * When the request has been processed, user-space must return the
144 * When the request has been processed, user-space must return the
163 * When the request has been processed, user-space must return the
180 * When the request has been processed, user-space must return the
219 * When the request has been processed, user-space must return the
238 * When the request has been processed, user-space must return the
257 * When the request has been processed, user-space must return the
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/
H A Ddm-log-userspace.h67 * When the request has been processed, user-space must return the
87 * When the request has been processed, user-space must return the
106 * When the request has been processed, user-space must return the
125 * When the request has been processed, user-space must return the
144 * When the request has been processed, user-space must return the
163 * When the request has been processed, user-space must return the
180 * When the request has been processed, user-space must return the
219 * When the request has been processed, user-space must return the
238 * When the request has been processed, user-space must return the
257 * When the request has been processed, user-space must return the
[all …]
/OK3568_Linux_fs/kernel/fs/erofs/
H A Dxattr.c164 int (*name)(struct xattr_iter *_it, unsigned int processed, char *buf,
167 void (*value)(struct xattr_iter *_it, unsigned int processed, char *buf,
228 unsigned int value_sz, processed, slice; in xattr_foreach() local
264 processed = 0; in xattr_foreach()
266 while (processed < entry.e_name_len) { in xattr_foreach()
277 entry.e_name_len - processed); in xattr_foreach()
280 err = op->name(it, processed, it->kaddr + it->ofs, slice); in xattr_foreach()
282 it->ofs += entry.e_name_len - processed + value_sz; in xattr_foreach()
287 processed += slice; in xattr_foreach()
291 processed = 0; in xattr_foreach()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/synopsys/
H A Ddwc-xlgmac-net.c1045 int processed = 0; in xlgmac_tx_poll() local
1062 while ((processed < XLGMAC_TX_DESC_MAX_PROC) && in xlgmac_tx_poll()
1087 processed++; in xlgmac_tx_poll()
1091 if (!processed) in xlgmac_tx_poll()
1102 XLGMAC_PR("processed=%d\n", processed); in xlgmac_tx_poll()
1104 return processed; in xlgmac_tx_poll()
1285 int processed = 0; in xlgmac_one_poll() local
1293 processed = xlgmac_rx_poll(channel, budget); in xlgmac_one_poll()
1295 /* If we processed everything, we are done */ in xlgmac_one_poll()
1296 if (processed < budget) { in xlgmac_one_poll()
[all …]
/OK3568_Linux_fs/kernel/samples/bpf/
H A Dxdp_monitor_kern.c125 u64 processed; member
155 unsigned int processed; // offset:24; size:4; signed:0; member
171 rec->processed += ctx->processed; in trace_xdp_cpumap_enqueue()
175 if (ctx->processed > 0) in trace_xdp_cpumap_enqueue()
190 unsigned int processed; // offset:24; size:4; signed:0; member
203 rec->processed += ctx->processed; in trace_xdp_cpumap_kthread()
242 rec->processed += ctx->sent; in trace_xdp_devmap_xmit()
H A Dxdp_redirect_cpu_kern.c30 __u64 processed; member
223 rec->processed++; in xdp_prognum0_no_touch()
259 rec->processed++; in xdp_prognum1_touch_data()
314 rec->processed++; in xdp_prognum2_round_robin()
343 rec->processed++; in xdp_prognum3_proto_separate()
412 rec->processed++; in xdp_prognum4_ddos_filter_pktgen()
533 rec->processed++; in xdp_prognum5_lb_hash_ip_pairs()
663 unsigned int processed; // offset:24; size:4; signed:0; member
679 rec->processed += ctx->processed; in trace_xdp_cpumap_enqueue()
683 if (ctx->processed > 0) in trace_xdp_cpumap_enqueue()
[all …]
/OK3568_Linux_fs/kernel/crypto/
H A Dalgif_aead.c18 * allocated and prepared. As part of the recvmsg operation, the processed
107 size_t processed = 0; /* [in] TX bufs to be consumed */ in _aead_recvmsg() local
117 * yet been processed. in _aead_recvmsg()
148 * length as this data is processed separately later on. in _aead_recvmsg()
166 * allows AIO operation where the caller sent all data to be processed in _aead_recvmsg()
181 processed = used + ctx->aead_assoclen; in _aead_recvmsg()
194 if (processed && !tsgl_src) { in _aead_recvmsg()
227 areq->first_rsgl.sgl.sg, processed); in _aead_recvmsg()
230 af_alg_pull_tsgl(sk, processed, NULL, 0); in _aead_recvmsg()
250 areq->tsgl_entries = af_alg_count_tsgl(sk, processed, in _aead_recvmsg()
[all …]
/OK3568_Linux_fs/buildroot/support/testing/tests/utils/
H A Dtest_check_package.py58 """Infer from check-package stderr if at least one file was processed
60 self.assertIn("lines processed", stderr[0], stderr)
61 processed = int(stderr[0].split()[0])
62 self.assertGreater(processed, 0)
65 """Infer from check-package stderr if no file was processed and fail
67 self.assertIn("lines processed", stderr[0], stderr)
68 processed = int(stderr[0].split()[0])
69 self.assertEqual(processed, 0)
/OK3568_Linux_fs/kernel/include/net/
H A Dregulatory.h65 * @processed: indicates whether or not this requests has already been
66 * processed. When the last request is processed it means that the
69 * the last request is not yet processed we must yield until it
70 * is processed before processing any new requests.
71 * @country_ie_checksum: checksum of the last processed and accepted
85 bool processed; member
132 * all country IE information processed by the regulatory core. This will
/OK3568_Linux_fs/kernel/arch/s390/include/asm/trace/
H A Dzcrypt.h14 * request has been processed by the kernel and the result is about to be
22 * and queue the request has been processed. It is not an ffdc interface as
82 * @dev: The adapter nr where this request was actually processed.
83 * @dom: Domain id of the device where this request was processed.
87 * carries some info about on which adapter the request was processed
/OK3568_Linux_fs/kernel/include/linux/iio/
H A Dconsumer.h194 * iio_read_channel_processed() - read processed value from a given channel
200 * This function will read a processed value from a channel. A processed value
202 * representation. If the device does not support reporting a processed value
323 * iio_convert_raw_to_processed() - Converts a raw value to a processed value
326 * @processed: The result of the conversion
331 * This function converts a raw value to processed value for a specific channel.
334 * depended. A processed value on the other hand is value has a normed unit
343 int *processed, unsigned int scale);
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/xcore/
H A Dtask_traits.h43 kReadyForProcess, // Filled with content, waiting to be processed
45 kProcessedError, // Be Processed but failed
46 kProcessedSuccess, // Be Processed, waiting to be dequeued
47 kProcessedDequed, // Be processed and dequed, canbe either error or
/OK3568_Linux_fs/kernel/include/linux/
H A Dpsp-sev.h494 * 0 if the SEV successfully processed the command
505 * @status: sev_user_data_status structure to be processed
509 * 0 if the SEV successfully processed the command
531 * 0 if the SEV successfully processed the command
544 * @deactivate: sev_data_deactivate structure to be processed
548 * 0 if the sev successfully processed the command
559 * @activate: sev_data_activate structure to be processed
563 * 0 if the sev successfully processed the command
577 * 0 if the sev successfully processed the command
588 * @decommission: sev_data_decommission structure to be processed
[all …]

12345678910>>...102