Home
last modified time | relevance | path

Searched full:parse (Results 1 – 25 of 3715) sorted by relevance

12345678910>>...149

/kernel/linux/linux-6.6/sound/soc/intel/avs/
Dtopology.c120 * @parse: parsing function, extracts and assigns value to object's field
126 int (*parse)(struct snd_soc_component *comp, void *elem, void *object, u32 offset); member
202 /* Parse element by element. */ in avs_parse_uuid_tokens()
212 ret = parsers[j].parse(comp, tuple, object, parsers[j].offset); in avs_parse_uuid_tokens()
228 /* Parse element by element. */ in avs_parse_string_tokens()
238 ret = parsers[j].parse(comp, tuple, object, parsers[j].offset); in avs_parse_string_tokens()
254 /* Parse element by element. */ in avs_parse_word_tokens()
269 ret = parsers[j].parse(comp, tuple, object, parsers[j].offset); in avs_parse_word_tokens()
439 dev_err(comp->dev, "parse entry: %d of type: %d failed: %d\n", in parse_dictionary_entries()
479 .parse = avs_parse_string_token,
[all …]
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
Dtest_bpftool_synctypes.py26 @reader: a pointer to the open file to parse
34 @start_marker: regex marking the beginning of a structure to parse
42 def parse(self, pattern, end_marker): member in BlockParser
44 Parse a block and return a set of values. Values to extract must be
47 @end_marker: regex marking the end of the block to parse
62 @reader: a pointer to the open file to parse
63 @array_name: name of the array to parse
78 def parse(self): member in ArrayParser
80 Parse a block and return data as a dictionary. Items to extract must be
98 def parse(self, pattern, end_marker): member in InlineListParser
[all …]
/kernel/linux/linux-6.6/lib/
Ddecompress_unlzo.c44 u8 *parse = input; in parse_header() local
50 * Then it is possible to parse several fields until the minimum in parse_header()
58 if (*parse++ != lzop_magic[l]) in parse_header()
64 version = get_unaligned_be16(parse); in parse_header()
65 parse += 7; in parse_header()
67 parse++; in parse_header()
68 if (get_unaligned_be32(parse) & HEADER_HAS_FILTER) in parse_header()
69 parse += 8; /* flags + filter info */ in parse_header()
71 parse += 4; /* flags */ in parse_header()
79 if (end - parse < 8 + 1 + 4) in parse_header()
[all …]
Dcmdline.c36 * get_option - Parse integer from an option string
83 * get_options - Parse a string into a list of integers
90 * or a combination of both. The parse halts when the array is
103 * the parse to end (typically a null terminator, if @str is
142 * memparse - parse a string with mem suffixes into a number
143 * @ptr: Where parse begins
144 * @retptr: (output) Optional pointer to next char after parse completes
194 * parse_option_str - Parse a string and check an option is set or not
223 * Parse a string to get a param value pair.
/kernel/linux/linux-5.10/lib/
Ddecompress_unlzo.c44 u8 *parse = input; in parse_header() local
51 * Then it is possible to parse several fields until the minimum in parse_header()
59 if (*parse++ != lzop_magic[l]) in parse_header()
65 version = get_unaligned_be16(parse); in parse_header()
66 parse += 7; in parse_header()
68 level = *parse++; in parse_header()
69 if (get_unaligned_be32(parse) & HEADER_HAS_FILTER) in parse_header()
70 parse += 8; /* flags + filter info */ in parse_header()
72 parse += 4; /* flags */ in parse_header()
80 if (end - parse < 8 + 1 + 4) in parse_header()
[all …]
Dcmdline.c36 * get_option - Parse integer from an option string
71 * get_options - Parse a string into a list of integers
78 * or a combination of both. The parse halts when the array is
83 * the parse to end (typically a null terminator, if @str is
117 * memparse - parse a string with mem suffixes into a number
118 * @ptr: Where parse begins
119 * @retptr: (output) Optional pointer to next char after parse completes
168 * parse_option_str - Parse a string and check an option is set or not
197 * Parse a string to get a param value pair.
/kernel/linux/linux-5.10/tools/lib/traceevent/
DBuild1 libtraceevent-y += event-parse.o
4 libtraceevent-y += parse-filter.o
5 libtraceevent-y += parse-utils.o
6 libtraceevent-y += kbuffer-parse.o
8 libtraceevent-y += event-parse-api.o
/kernel/linux/linux-5.10/tools/perf/util/
DBuild25 perf-y += parse-events.o
66 perf-y += trace-event-parse.o
67 perf-y += parse-events-flex.o
68 perf-y += parse-events-bison.o
119 perf-y += parse-branch-options.o
121 perf-y += parse-regs-options.o
122 perf-y += parse-sublevel-options.o
205 $(OUTPUT)util/parse-events-flex.c $(OUTPUT)util/parse-events-flex.h: util/parse-events.l $(OUTPUT)u…
207 $(Q)$(call echo-cmd,flex)$(FLEX) -o $(OUTPUT)util/parse-events-flex.c \
208 --header-file=$(OUTPUT)util/parse-events-flex.h $(PARSER_DEBUG_FLEX) $<
[all …]
/kernel/linux/linux-6.6/tools/perf/util/
DBuild28 perf-y += parse-events.o
74 perf-y += parse-events-flex.o
75 perf-y += parse-events-bison.o
84 perf-$(CONFIG_LIBTRACEEVENT) += trace-event-parse.o
132 perf-y += parse-branch-options.o
134 perf-y += parse-regs-options.o
135 perf-y += parse-sublevel-options.o
240 $(OUTPUT)util/parse-events-flex.c $(OUTPUT)util/parse-events-flex.h: util/parse-events.l $(OUTPUT)u…
242 $(Q)$(call echo-cmd,flex)$(FLEX) -o $(OUTPUT)util/parse-events-flex.c \
243 --header-file=$(OUTPUT)util/parse-events-flex.h $(PARSER_DEBUG_FLEX) $<
[all …]
/kernel/linux/linux-5.10/tools/lib/traceevent/Documentation/
Dlibtraceevent-parse_event.txt6 tep_parse_event, tep_parse_format - Parse the event format information
12 *#include <event-parse.h>*
21 structure to quickly parse raw data for a given event. The _tep_ argument is
41 #include <event-parse.h>
50 /* Failed to parse the ftrace print format */
54 /* Failed to parse the ftrace print format */
63 *event-parse.h*
Dlibtraceevent-reg_event_handler.txt7 unregisters a callback function to parse an event information.
13 *#include <event-parse.h>*
29 which is going to be called to parse the information for a given event.
35 to be called to parse the event information. The _context_ argument is a pointer
40 can register a function for an event to be used to parse the data instead.
72 #include <event-parse.h>
125 *event-parse.h*
/kernel/linux/linux-6.6/drivers/pcmcia/
Dpcmcia_cis.c31 * @parse: buffer where the tuple shall be parsed (or NULL, if no parse)
33 * pccard_read_tuple() reads out one tuple and attempts to parse it
36 cisdata_t code, void *parse) in pccard_read_tuple() argument
60 ret = pcmcia_parse_tuple(&tuple, parse); in pccard_read_tuple()
72 * @parse: buffer where the tuple shall be parsed (or NULL, if no parse)
75 * gets passed the raw tuple, the paresed tuple (if @parse is
83 cisdata_t code, cisparse_t *parse, void *priv_data, in pccard_loop_tuple() argument
85 cisparse_t *parse, in pccard_loop_tuple()
109 if (parse) in pccard_loop_tuple()
110 if (pcmcia_parse_tuple(&tuple, parse)) in pccard_loop_tuple()
[all …]
/kernel/linux/linux-5.10/drivers/pcmcia/
Dpcmcia_cis.c30 * @parse: buffer where the tuple shall be parsed (or NULL, if no parse)
32 * pccard_read_tuple() reads out one tuple and attempts to parse it
35 cisdata_t code, void *parse) in pccard_read_tuple() argument
59 ret = pcmcia_parse_tuple(&tuple, parse); in pccard_read_tuple()
71 * @parse: buffer where the tuple shall be parsed (or NULL, if no parse)
74 * gets passed the raw tuple, the paresed tuple (if @parse is
82 cisdata_t code, cisparse_t *parse, void *priv_data, in pccard_loop_tuple() argument
84 cisparse_t *parse, in pccard_loop_tuple()
108 if (parse) in pccard_loop_tuple()
109 if (pcmcia_parse_tuple(&tuple, parse)) in pccard_loop_tuple()
[all …]
/kernel/linux/linux-5.10/scripts/
Dobjdiff28 SRCTREE=$(cd $(git rev-parse --show-toplevel 2>/dev/null); pwd)
76 CMT="`git rev-parse --short HEAD`"
97 SRC="`git rev-parse --short HEAD^`"
98 DST="`git rev-parse --short HEAD`"
100 SRC="`git rev-parse --short $1`"
101 DST="`git rev-parse --short $2`"
133 CMT="`git rev-parse --short $1`"
/kernel/linux/linux-6.6/scripts/
Dobjdiff28 SRCTREE=$(cd $(git rev-parse --show-toplevel 2>/dev/null); pwd)
76 CMT="`git rev-parse --short HEAD`"
97 SRC="`git rev-parse --short HEAD^`"
98 DST="`git rev-parse --short HEAD`"
100 SRC="`git rev-parse --short $1`"
101 DST="`git rev-parse --short $2`"
133 CMT="`git rev-parse --short $1`"
/kernel/linux/linux-5.10/Documentation/driver-api/mmc/
Dmmc-tools.rst15 - Print and parse extcsd data.
35 - Print and parse CID data.
36 - Print and parse CSD data.
37 - Print and parse SCR data.
/kernel/linux/linux-6.6/Documentation/driver-api/mmc/
Dmmc-tools.rst15 - Print and parse extcsd data.
35 - Print and parse CID data.
36 - Print and parse CSD data.
37 - Print and parse SCR data.
/kernel/linux/linux-6.6/drivers/media/usb/as102/
Das10x_cmd_cfg.c57 /* parse response: context command do not follow the common response */ in as10x_cmd_get_context()
58 /* structure -> specific handling response parse required */ in as10x_cmd_get_context()
115 /* parse response: context command do not follow the common response */ in as10x_cmd_set_context()
116 /* structure -> specific handling response parse required */ in as10x_cmd_set_context()
165 /* parse response */ in as10x_cmd_eLNA_change_mode()
173 * as10x_context_rsp_parse - Parse context command response
178 * response, a specific parse function is required.
/kernel/linux/linux-5.10/drivers/media/usb/as102/
Das10x_cmd_cfg.c57 /* parse response: context command do not follow the common response */ in as10x_cmd_get_context()
58 /* structure -> specific handling response parse required */ in as10x_cmd_get_context()
115 /* parse response: context command do not follow the common response */ in as10x_cmd_set_context()
116 /* structure -> specific handling response parse required */ in as10x_cmd_set_context()
165 /* parse response */ in as10x_cmd_eLNA_change_mode()
173 * as10x_context_rsp_parse - Parse context command response
178 * response, a specific parse function is required.
/kernel/linux/linux-6.6/drivers/acpi/acpica/
Dnsparse.c25 * PARAMETERS: table_desc - An ACPI table descriptor for table to parse
39 * Note: This causes the table to only have a single-pass parse.
143 * DESCRIPTION: Perform one complete parse of an ACPI/AML table.
223 /* Parse the AML */ in acpi_ns_one_complete_parse()
226 "*PARSE* pass %u parse\n", pass_number)); in acpi_ns_one_complete_parse()
240 * PARAMETERS: table_desc - An ACPI table descriptor for table to parse
245 * DESCRIPTION: Parse AML within an ACPI table and return a tree of ops
261 * Note: This causes the table to only have a single-pass parse. in acpi_ns_parse_table()
Dpsloop.c4 * Module Name: psloop - Main AML parse loop
11 * Parse the AML and build an operation tree as most interpreters, (such as
140 * info in the first pass to parse it correctly. in acpi_ps_get_arguments()
172 * enough info in the first pass to parse them correctly. in acpi_ps_get_arguments()
216 * DESCRIPTION: Parse AML (pointed to by the current parser state) and return
343 * If the scope/device op fails to parse, skip the body of in acpi_ps_parse_loop()
344 * the scope op because the parse failure indicates that in acpi_ps_parse_loop()
347 …ACPI_INFO(("Skipping parse of AML opcode: %s (0x%4.4X)", acpi_ps_get_opcode_name(walk_state->opcod… in acpi_ps_parse_loop()
415 * If the if/while op fails to parse, we will skip parsing in acpi_ps_parse_loop()
488 * to parse them correctly. in acpi_ps_parse_loop()
[all …]
/kernel/linux/linux-5.10/drivers/acpi/acpica/
Dnsparse.c25 * PARAMETERS: table_desc - An ACPI table descriptor for table to parse
39 * Note: This causes the table to only have a single-pass parse.
143 * DESCRIPTION: Perform one complete parse of an ACPI/AML table.
223 /* Parse the AML */ in acpi_ns_one_complete_parse()
226 "*PARSE* pass %u parse\n", pass_number)); in acpi_ns_one_complete_parse()
240 * PARAMETERS: table_desc - An ACPI table descriptor for table to parse
245 * DESCRIPTION: Parse AML within an ACPI table and return a tree of ops
261 * Note: This causes the table to only have a single-pass parse. in acpi_ns_parse_table()
Dpsloop.c4 * Module Name: psloop - Main AML parse loop
11 * Parse the AML and build an operation tree as most interpreters, (such as
140 * info in the first pass to parse it correctly. in acpi_ps_get_arguments()
172 * enough info in the first pass to parse them correctly. in acpi_ps_get_arguments()
216 * DESCRIPTION: Parse AML (pointed to by the current parser state) and return
344 * If the scope/device op fails to parse, skip the body of in acpi_ps_parse_loop()
345 * the scope op because the parse failure indicates that in acpi_ps_parse_loop()
348 …ACPI_INFO(("Skipping parse of AML opcode: %s (0x%4.4X)", acpi_ps_get_opcode_name(walk_state->opcod… in acpi_ps_parse_loop()
416 * If the if/while op fails to parse, we will skip parsing in acpi_ps_parse_loop()
489 * to parse them correctly. in acpi_ps_parse_loop()
[all …]
/kernel/linux/linux-6.6/drivers/net/ethernet/microchip/vcap/
Dvcap_tc.c58 NL_SET_ERR_MSG_MOD(st->fco->common.extack, "eth_addr parse error"); in vcap_tc_flower_handler_ethaddr_usage()
94 NL_SET_ERR_MSG_MOD(st->fco->common.extack, "ipv4_addr parse error"); in vcap_tc_flower_handler_ipv4_usage()
130 NL_SET_ERR_MSG_MOD(st->fco->common.extack, "ipv6_addr parse error"); in vcap_tc_flower_handler_ipv6_usage()
166 NL_SET_ERR_MSG_MOD(st->fco->common.extack, "port parse error"); in vcap_tc_flower_handler_portnum_usage()
208 NL_SET_ERR_MSG_MOD(st->fco->common.extack, "cvlan parse error"); in vcap_tc_flower_handler_cvlan_usage()
245 NL_SET_ERR_MSG_MOD(st->fco->common.extack, "vlan parse error"); in vcap_tc_flower_handler_vlan_usage()
321 NL_SET_ERR_MSG_MOD(st->fco->common.extack, "tcp_flags parse error"); in vcap_tc_flower_handler_tcp_usage()
384 NL_SET_ERR_MSG_MOD(st->fco->common.extack, "arp parse error"); in vcap_tc_flower_handler_arp_usage()
409 NL_SET_ERR_MSG_MOD(st->fco->common.extack, "ip_tos parse error"); in vcap_tc_flower_handler_ip_usage()
/kernel/linux/linux-6.6/tools/testing/kunit/
Dkunit_parser.py275 Returns False if fails to parse KTAP/TAP header line.
282 lines - LineStream of KTAP output to parse
306 Returns False if fails to parse test header line.
312 lines - LineStream of KTAP output to parse
338 lines - LineStream of KTAP output to parse
368 lines - LineStream of KTAP output to parse
388 Returns False if fails to parse test result line.
398 lines - LineStream of KTAP output to parse
437 Parse lines that do not match the format of a test result line or
447 lines - LineStream of KTAP output to parse
[all …]

12345678910>>...149