Home
last modified time | relevance | path

Searched full:parsed (Results 1 – 25 of 692) sorted by relevance

12345678910>>...28

/linux-6.12.1/include/linux/sunrpc/
Dsvc_rdma_pcl.h34 * pcl_init - Initialize a parsed chunk list
35 * @pcl: parsed chunk list to initialize
44 * pcl_is_empty - Return true if parsed chunk list is empty
45 * @pcl: parsed chunk list
54 * pcl_first_chunk - Return first chunk in a parsed chunk list
55 * @pcl: parsed chunk list
69 * pcl_next_chunk - Return next chunk in a parsed chunk list
70 * @pcl: a parsed chunk list
84 * pcl_for_each_chunk - Iterate over chunks in a parsed chunk list
86 * @pcl: a parsed chunk list
[all …]
/linux-6.12.1/net/mac80211/tests/
Delems.c19 struct ieee802_11_elems *parsed; in mle_defrag() local
65 parsed = ieee802_11_parse_elems_full(&parse_params); in mle_defrag()
67 KUNIT_EXPECT_NOT_NULL(test, parsed); in mle_defrag()
69 if (IS_ERR_OR_NULL(parsed)) in mle_defrag()
72 KUNIT_EXPECT_NOT_NULL(test, parsed->ml_basic); in mle_defrag()
74 parsed->ml_basic_len, in mle_defrag()
81 KUNIT_EXPECT_NOT_NULL(test, parsed->prof); in mle_defrag()
83 parsed->sta_prof_len, in mle_defrag()
87 kfree(parsed); in mle_defrag()
/linux-6.12.1/security/ipe/
Dpolicy_parser.c21 * new_parsed_policy() - Allocate and initialize a parsed policy.
84 * @ver: Supplies a version string to be parsed.
85 * @p: Supplies the partial parsed policy.
133 * @line: Supplies header line to be parsed.
134 * @p: Supplies the partial parsed policy.
245 * @t: Supplies the token string to be parsed.
247 * Return: The parsed operation type.
264 * @t: Supplies the token string to be parsed.
266 * Return: The parsed action type.
289 * @t: Supplies the token string to be parsed.
[all …]
Dpolicy.c34 r = (((u64)p->parsed->version.major) << 32) in ver_to_u64()
35 | (((u64)p->parsed->version.minor) << 16) in ver_to_u64()
36 | ((u64)(p->parsed->version.rev)); in ver_to_u64()
53 ipe_free_parsed_policy(p->parsed); in ipe_free_policy()
104 if (strcmp(new->parsed->name, old->parsed->name)) { in ipe_update_policy()
Ddigest.c10 * @valstr: Supplies the string parsed from the policy.
16 * consistently. The parsed digest will be saved in @value in IPE's
19 * Return: The parsed digest_info structure on success. If an error occurs,
/linux-6.12.1/arch/um/drivers/
Dvector_transports.c265 if (get_uint_param(vp->parsed, "v6", &temp_int)) { in build_gre_transport_data()
270 if (get_uint_param(vp->parsed, "rx_key", &temp_rx)) { in build_gre_transport_data()
271 if (get_uint_param(vp->parsed, "tx_key", &temp_tx)) { in build_gre_transport_data()
284 if (get_uint_param(vp->parsed, "sequence", &temp_int)) { in build_gre_transport_data()
290 vp->parsed, "pin_sequence", &temp_int)) { in build_gre_transport_data()
329 if (get_uint_param(vp->parsed, "v6", &temp_int)) { in build_l2tpv3_transport_data()
334 if (get_uint_param(vp->parsed, "rx_session", &temp_rxs)) { in build_l2tpv3_transport_data()
335 if (get_uint_param(vp->parsed, "tx_session", &temp_txs)) { in build_l2tpv3_transport_data()
346 if (get_uint_param(vp->parsed, "cookie64", &temp_int)) { in build_l2tpv3_transport_data()
351 if (get_ulong_param(vp->parsed, "rx_cookie", &temp_rx)) { in build_l2tpv3_transport_data()
[all …]
Dvector_user.c729 struct arglist *parsed in uml_vector_user_open() argument
734 if (parsed == NULL) { in uml_vector_user_open()
735 printk(UM_KERN_ERR "no parsed config for unit %d\n", unit); in uml_vector_user_open()
738 transport = uml_vector_fetch_arg(parsed, "transport"); in uml_vector_user_open()
744 return user_init_raw_fds(parsed); in uml_vector_user_open()
746 return user_init_hybrid_fds(parsed); in uml_vector_user_open()
748 return user_init_tap_fds(parsed); in uml_vector_user_open()
750 return user_init_socket_fds(parsed, ID_GRE); in uml_vector_user_open()
752 return user_init_socket_fds(parsed, ID_L2TPV3); in uml_vector_user_open()
754 return user_init_unix_fds(parsed, ID_BESS); in uml_vector_user_open()
[all …]
/linux-6.12.1/net/sunrpc/xprtrdma/
Dsvc_rdma_pcl.c13 * pcl_free - Release all memory associated with a parsed chunk list
14 * @pcl: parsed chunk list
86 * pcl_alloc_call - Construct a parsed chunk list for the Call body
97 * %true: Parsed chunk list was successfully constructed, and
137 * pcl_alloc_read - Construct a parsed chunk list for normal Read chunks
148 * %true: Parsed chunk list was successfully constructed, and
188 * pcl_alloc_write - Construct a parsed chunk list from a Write list
190 * @pcl: Parsed chunk list to populate
198 * %true: Parsed chunk list was successfully constructed.
/linux-6.12.1/lib/
Dkstrtox.c123 * conventional semantics - If it begins with 0x the number will be parsed as a
125 * parsed as an octal number. Otherwise it will be parsed as a decimal.
147 * conventional semantics - If it begins with 0x the number will be parsed as a
149 * parsed as an octal number. Otherwise it will be parsed as a decimal.
219 * conventional semantics - If it begins with 0x the number will be parsed as a
221 * parsed as an octal number. Otherwise it will be parsed as a decimal.
250 * conventional semantics - If it begins with 0x the number will be parsed as a
252 * parsed as an octal number. Otherwise it will be parsed as a decimal.
Dcmdline.c38 * @pint: (optional output) integer value parsed from @str
84 * @str: String to be parsed
100 * in the range. The rest is what was parsed from the @str.
152 char *endptr; /* local pointer to end of parsed string */ in memparse()
195 * @str: String to be parsed
/linux-6.12.1/tools/testing/selftests/powerpc/
Dutils.c272 intmax_t parsed; in parse_int() local
273 int err = parse_bounded_int(buffer, count, &parsed, base, INT_MIN, INT_MAX); in parse_int()
275 *result = parsed; in parse_int()
281 uintmax_t parsed; in parse_uint() local
282 int err = parse_bounded_uint(buffer, count, &parsed, base, UINT_MAX); in parse_uint()
284 *result = parsed; in parse_uint()
290 intmax_t parsed; in parse_long() local
291 int err = parse_bounded_int(buffer, count, &parsed, base, LONG_MIN, LONG_MAX); in parse_long()
293 *result = parsed; in parse_long()
299 uintmax_t parsed; in parse_ulong() local
[all …]
/linux-6.12.1/tools/net/ynl/
Dynl-gen-c.py2627 parsed = Family(args.spec, exclude_ops)
2628 if parsed.license != '((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)':
2629 print('Spec license:', parsed.license)
2640 if parsed.msg_id_model not in supported_models:
2641 print(f'Message enum-model {parsed.msg_id_model} not supported for {args.mode} generation')
2648 cw.p(f'/* SPDX-License-Identifier: {parsed.license} */')
2650 cw.p(f'// SPDX-License-Identifier: {parsed.license}')
2662 render_uapi(parsed, cw)
2665 hdr_prot = f"_LINUX_{parsed.c_name.upper()}_GEN_H"
2681 headers = ['uapi/' + parsed.uapi_header]
[all …]
/linux-6.12.1/init/
Dinitramfs.c190 unsigned long parsed[13]; in parse_header() local
197 parsed[i] = simple_strtoul(buf, NULL, 16); in parse_header()
199 ino = parsed[0]; in parse_header()
200 mode = parsed[1]; in parse_header()
201 uid = parsed[2]; in parse_header()
202 gid = parsed[3]; in parse_header()
203 nlink = parsed[4]; in parse_header()
204 mtime = parsed[5]; /* breaks in y2106 */ in parse_header()
205 body_len = parsed[6]; in parse_header()
206 major = parsed[7]; in parse_header()
[all …]
/linux-6.12.1/lib/kunit/
Dexecutor.c70 static int kunit_parse_glob_filter(struct kunit_glob_filter *parsed, in kunit_parse_glob_filter() argument
76 parsed->suite_glob = kstrdup(filter_glob, GFP_KERNEL); in kunit_parse_glob_filter()
77 if (!parsed->suite_glob) in kunit_parse_glob_filter()
79 parsed->test_glob = NULL; in kunit_parse_glob_filter()
83 parsed->suite_glob = kstrndup(filter_glob, period - filter_glob, GFP_KERNEL); in kunit_parse_glob_filter()
84 if (!parsed->suite_glob) in kunit_parse_glob_filter()
87 parsed->test_glob = kstrdup(period + 1, GFP_KERNEL); in kunit_parse_glob_filter()
88 if (!parsed->test_glob) { in kunit_parse_glob_filter()
89 kfree(parsed->suite_glob); in kunit_parse_glob_filter()
/linux-6.12.1/net/bluetooth/
Deir.h65 size_t parsed = 0; in eir_get_data() local
70 while (parsed < eir_len - 1) { in eir_get_data()
76 parsed += field_len + 1; in eir_get_data()
78 if (parsed > eir_len) in eir_get_data()
/linux-6.12.1/drivers/xen/xen-pciback/
Dpci_stub.c1070 int parsed = 0; in str_to_slot() local
1073 &parsed)) { in str_to_slot()
1076 sscanf(buf, " %x:%x:%x.* %n", domain, bus, slot, &parsed); in str_to_slot()
1080 sscanf(buf, " %x:%x:*.* %n", domain, bus, &parsed); in str_to_slot()
1083 if (parsed && !buf[parsed]) in str_to_slot()
1088 switch (sscanf(buf, " %x:%x.%x %n", bus, slot, func, &parsed)) { in str_to_slot()
1091 sscanf(buf, " %x:%x.* %n", bus, slot, &parsed); in str_to_slot()
1095 sscanf(buf, " %x:*.* %n", bus, &parsed); in str_to_slot()
1098 if (parsed && !buf[parsed]) in str_to_slot()
1107 int parsed = 0; in str_to_quirk() local
[all …]
/linux-6.12.1/include/linux/
Dkstrtox.h22 * conventional semantics - If it begins with 0x the number will be parsed as a
24 * parsed as an octal number. Otherwise it will be parsed as a decimal.
50 * conventional semantics - If it begins with 0x the number will be parsed as a
52 * parsed as an octal number. Otherwise it will be parsed as a decimal.
/linux-6.12.1/tools/testing/kunit/
Dkunit_parser.py24 A class to represent a test parsed from KTAP results. All KTAP
260 version_num - The inputted version number from the parsed KTAP or TAP
265 test - Test object for current test being parsed
283 test - Test object for current test being parsed
286 True if successfully parsed KTAP/TAP header line
313 test - Test object for current test being parsed
316 True if successfully parsed test header line
339 test - Test object for current test being parsed
342 True if successfully parsed test plan line
369 test - Test object for current test being parsed
[all …]
/linux-6.12.1/Documentation/devicetree/bindings/display/samsung/
Dsamsung,exynos5-dp.yaml88 Deprecated prop that can parsed from drm_display_mode.
94 Deprecated prop that can parsed from drm_display_mode.
100 Deprecated prop that can parsed from drm_display_info.
106 Deprecated prop that can parsed from drm_display_info.
/linux-6.12.1/Documentation/userspace-api/media/v4l/
Dpixfmt-compressed.rst63 - H264 parsed slice data, including slice headers, either with or
118 - MPEG-2 parsed slice data, as extracted from the MPEG-2 bitstream.
162 - VP8 parsed frame, including the frame header, as extracted from the container.
184 - VP9 parsed frame, including the frame header, as extracted from the container.
209 - HEVC parsed slice data, as extracted from the HEVC bitstream.
265 - AV1 parsed frame, including the frame header, as extracted from the container.
/linux-6.12.1/arch/x86/boot/
Dstring.c117 * @endp: A pointer to the end of the parsed string will be placed here
322 * conventional semantics - If it begins with 0x the number will be parsed as a
324 * parsed as an octal number. Otherwise it will be parsed as a decimal.
359 * conventional semantics - If it begins with 0x the number will be parsed as a
361 * parsed as an octal number. Otherwise it will be parsed as a decimal.
/linux-6.12.1/drivers/virt/
Dvmgenid.c55 struct acpi_buffer parsed = { ACPI_ALLOCATE_BUFFER }; in vmgenid_add_acpi() local
62 status = acpi_evaluate_object(device->handle, "ADDR", NULL, &parsed); in vmgenid_add_acpi()
67 obj = parsed.pointer; in vmgenid_add_acpi()
94 ACPI_FREE(parsed.pointer); in vmgenid_add_acpi()
/linux-6.12.1/net/xdp/
Dxsk_queue.h230 struct xdp_desc *desc, struct parsed_desc *parsed) in parse_desc() argument
232 parsed->valid = xskq_cons_is_valid_desc(q, desc, pool); in parse_desc()
233 parsed->mb = xp_mb_desc(desc); in parse_desc()
250 struct parsed_desc parsed; in xskq_cons_read_desc_batch() local
254 parse_desc(q, pool, &descs[nb_entries], &parsed); in xskq_cons_read_desc_batch()
255 if (unlikely(!parsed.valid)) in xskq_cons_read_desc_batch()
258 if (likely(!parsed.mb)) { in xskq_cons_read_desc_batch()
/linux-6.12.1/drivers/net/can/usb/etas_es58x/
Des58x_devlink.c24 * @prefix: Select which information should be parsed. Set it to "FW"
40 * value and -EBADMSG if @prod_info could not be parsed.
91 * parsed.
172 * string could not be parsed.
189 * string could not be parsed.
/linux-6.12.1/include/media/
Dtveeprom.h28 * struct tveeprom - Contains the fields parsed from Hauppauge eeproms
98 * @tvee: Struct to where the eeprom parsed data will be filled;
113 * be parsed by tveeprom_hauppauge_analog(), len should be, at

12345678910>>...28