Home
last modified time | relevance | path

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

12345678910>>...48

/kernel/linux/linux-6.6/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 …]
/kernel/linux/linux-6.6/lib/kunit/
Dexecutor.c68 static int kunit_parse_glob_filter(struct kunit_glob_filter *parsed, in kunit_parse_glob_filter() argument
75 parsed->suite_glob = kzalloc(len + 1, GFP_KERNEL); in kunit_parse_glob_filter()
76 if (!parsed->suite_glob) in kunit_parse_glob_filter()
79 parsed->test_glob = NULL; in kunit_parse_glob_filter()
80 strcpy(parsed->suite_glob, filter_glob); in kunit_parse_glob_filter()
84 parsed->suite_glob = kzalloc(period - filter_glob + 1, GFP_KERNEL); in kunit_parse_glob_filter()
85 if (!parsed->suite_glob) in kunit_parse_glob_filter()
88 parsed->test_glob = kzalloc(len - (period - filter_glob) + 1, GFP_KERNEL); in kunit_parse_glob_filter()
89 if (!parsed->test_glob) { in kunit_parse_glob_filter()
90 kfree(parsed->suite_glob); in kunit_parse_glob_filter()
[all …]
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/display/exynos/
Dexynos_dp.txt60 -interlaced: deprecated prop that can parsed from drm_display_mode.
61 -vsync-active-high: deprecated prop that can parsed from drm_display_mode.
62 -hsync-active-high: deprecated prop that can parsed from drm_display_mode.
63 -samsung,ycbcr-coeff: deprecated prop that can parsed from drm_display_mode.
64 -samsung,dynamic-range: deprecated prop that can parsed from drm_display_mode.
65 -samsung,color-space: deprecated prop that can parsed from drm_display_info.
66 -samsung,color-depth: deprecated prop that can parsed from drm_display_info.
/kernel/linux/linux-6.6/Documentation/devicetree/bindings/display/exynos/
Dexynos_dp.txt60 -interlaced: deprecated prop that can parsed from drm_display_mode.
61 -vsync-active-high: deprecated prop that can parsed from drm_display_mode.
62 -hsync-active-high: deprecated prop that can parsed from drm_display_mode.
63 -samsung,ycbcr-coeff: deprecated prop that can parsed from drm_display_mode.
64 -samsung,dynamic-range: deprecated prop that can parsed from drm_display_mode.
65 -samsung,color-space: deprecated prop that can parsed from drm_display_info.
66 -samsung,color-depth: deprecated prop that can parsed from drm_display_info.
/kernel/linux/linux-5.10/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 …]
/kernel/linux/linux-6.6/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 …]
/kernel/linux/linux-6.6/tools/net/ynl/
Dynl-gen-c.py2344 parsed = Family(args.spec, exclude_ops)
2345 if parsed.license != '((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)':
2346 print('Spec license:', parsed.license)
2357 if parsed.msg_id_model not in supported_models:
2358 print(f'Message enum-model {parsed.msg_id_model} not supported for {args.mode} generation')
2365 cw.p(f'/* SPDX-License-Identifier: {parsed.license} */')
2367 cw.p(f'// SPDX-License-Identifier: {parsed.license}')
2379 render_uapi(parsed, cw)
2382 hdr_prot = f"_LINUX_{parsed.name.upper()}_GEN_H"
2396 headers = ['uapi/' + parsed.uapi_header]
[all …]
/kernel/linux/linux-6.6/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.
/kernel/linux/linux-5.10/lib/
Dkstrtox.c120 * conventional semantics - If it begins with 0x the number will be parsed as a
122 * parsed as an octal number. Otherwise it will be parsed as a decimal.
143 * conventional semantics - If it begins with 0x the number will be parsed as a
145 * parsed as an octal number. Otherwise it will be parsed as a decimal.
214 * conventional semantics - If it begins with 0x the number will be parsed as a
216 * parsed as an octal number. Otherwise it will be parsed as a decimal.
244 * conventional semantics - If it begins with 0x the number will be parsed as a
246 * parsed as an octal number. Otherwise it will be parsed as a decimal.
/kernel/linux/linux-6.6/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
/kernel/linux/linux-6.6/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 …]
/kernel/linux/linux-6.6/init/
Dinitramfs.c188 unsigned long parsed[13]; in parse_header() local
195 parsed[i] = simple_strtoul(buf, NULL, 16); in parse_header()
197 ino = parsed[0]; in parse_header()
198 mode = parsed[1]; in parse_header()
199 uid = parsed[2]; in parse_header()
200 gid = parsed[3]; in parse_header()
201 nlink = parsed[4]; in parse_header()
202 mtime = parsed[5]; /* breaks in y2106 */ in parse_header()
203 body_len = parsed[6]; in parse_header()
204 major = parsed[7]; in parse_header()
[all …]
/kernel/linux/linux-5.10/init/
Dinitramfs.c159 unsigned long parsed[12]; in parse_header() local
166 parsed[i] = simple_strtoul(buf, NULL, 16); in parse_header()
168 ino = parsed[0]; in parse_header()
169 mode = parsed[1]; in parse_header()
170 uid = parsed[2]; in parse_header()
171 gid = parsed[3]; in parse_header()
172 nlink = parsed[4]; in parse_header()
173 mtime = parsed[5]; /* breaks in y2106 */ in parse_header()
174 body_len = parsed[6]; in parse_header()
175 major = parsed[7]; in parse_header()
[all …]
/kernel/linux/linux-5.10/drivers/xen/xen-pciback/
Dpci_stub.c1008 int parsed = 0; in str_to_slot() local
1011 &parsed)) { in str_to_slot()
1014 sscanf(buf, " %x:%x:%x.* %n", domain, bus, slot, &parsed); in str_to_slot()
1018 sscanf(buf, " %x:%x:*.* %n", domain, bus, &parsed); in str_to_slot()
1021 if (parsed && !buf[parsed]) in str_to_slot()
1026 switch (sscanf(buf, " %x:%x.%x %n", bus, slot, func, &parsed)) { in str_to_slot()
1029 sscanf(buf, " %x:%x.* %n", bus, slot, &parsed); in str_to_slot()
1033 sscanf(buf, " %x:*.* %n", bus, &parsed); in str_to_slot()
1036 if (parsed && !buf[parsed]) in str_to_slot()
1045 int parsed = 0; in str_to_quirk() local
[all …]
/kernel/linux/linux-6.6/drivers/xen/xen-pciback/
Dpci_stub.c1007 int parsed = 0; in str_to_slot() local
1010 &parsed)) { in str_to_slot()
1013 sscanf(buf, " %x:%x:%x.* %n", domain, bus, slot, &parsed); in str_to_slot()
1017 sscanf(buf, " %x:%x:*.* %n", domain, bus, &parsed); in str_to_slot()
1020 if (parsed && !buf[parsed]) in str_to_slot()
1025 switch (sscanf(buf, " %x:%x.%x %n", bus, slot, func, &parsed)) { in str_to_slot()
1028 sscanf(buf, " %x:%x.* %n", bus, slot, &parsed); in str_to_slot()
1032 sscanf(buf, " %x:*.* %n", bus, &parsed); in str_to_slot()
1035 if (parsed && !buf[parsed]) in str_to_slot()
1044 int parsed = 0; in str_to_quirk() local
[all …]
/kernel/linux/linux-6.6/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()
/kernel/linux/linux-6.6/drivers/virt/
Dvmgenid.c26 struct acpi_buffer parsed = { ACPI_ALLOCATE_BUFFER }; in vmgenid_add() local
37 status = acpi_evaluate_object(device->handle, "ADDR", NULL, &parsed); in vmgenid_add()
42 obj = parsed.pointer; in vmgenid_add()
64 ACPI_FREE(parsed.pointer); in vmgenid_add()
/kernel/liteos_a/apps/shell/src/
Dshcmd.c53 static int OsStrSeparateTabStrGet(const char **tabStr, CmdParsed *parsed, unsigned int tabStrLen) in OsStrSeparateTabStrGet() argument
69 parsed->cmdType = CMD_TYPE_STD; in OsStrSeparateTabStrGet()
82 if (OsCmdParse(shiftStr, parsed)) { in OsStrSeparateTabStrGet()
86 *tabStr = parsed->paramArray[parsed->paramCnt - 1]; in OsStrSeparateTabStrGet()
116 CmdParsed parsed = {0}; in OsStrSeparate() local
120 ret = OsStrSeparateTabStrGet(&tabStr, &parsed, tabStrLen); in OsStrSeparate()
128 OsFreeCmdPara(&parsed); in OsStrSeparate()
133 OsFreeCmdPara(&parsed); in OsStrSeparate()
140 OsFreeCmdPara(&parsed); in OsStrSeparate()
148 OsFreeCmdPara(&parsed); in OsStrSeparate()
[all …]
/kernel/linux/linux-6.6/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 …]
/kernel/linux/linux-6.6/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.
/kernel/linux/linux-5.10/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.
/kernel/linux/linux-6.6/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.
/kernel/linux/linux-5.10/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.
/kernel/linux/linux-6.6/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.

12345678910>>...48