/Linux-v5.15/lib/ |
D | decompress_unlzo.c | 44 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 …]
|
D | cmdline.c | 36 * 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.
|
D | parser.c | 123 * Description: Given a &substring_t and a base, attempts to parse the substring 158 * Description: Given a &substring_t and a base, attempts to parse the substring 186 * Description: Attempts to parse the &substring_t @s as a decimal integer. 202 * Description: Attempts to parse the &substring_t @s as a decimal integer. 226 * Description: Attempts to parse the &substring_t @s as a long decimal 243 * Description: Attempts to parse the &substring_t @s as an octal integer. 259 * Description: Attempts to parse the &substring_t @s as a hexadecimal integer. 271 * match_wildcard - parse if a string matches given wildcard pattern 275 * Description: Parse the string @str to check if matches wildcard
|
D | buildid.c | 12 * Parse build id from the note segment. This logic can be shared between 68 /* Parse build ID from 32-bit ELF */ 93 /* Parse build ID from 64-bit ELF */ 119 * Parse build ID of ELF file mapped to vma 166 * @buf: Elf note section(s) to parse
|
/Linux-v5.15/tools/testing/selftests/bpf/ |
D | test_bpftool_synctypes.py | 18 @reader: a pointer to the open file to parse 26 @start_marker: regex marking the beginning of a structure to parse 34 def parse(self, pattern, end_marker): member in BlockParser 36 Parse a block and return a set of values. Values to extract must be 39 @end_marker: regex marking the end of the block to parse 54 @reader: a pointer to the open file to parse 55 @array_name: name of the array to parse 70 def parse(self): member in ArrayParser 72 Parse a block and return data as a dictionary. Items to extract must be 90 def parse(self, pattern, end_marker): member in InlineListParser [all …]
|
/Linux-v5.15/tools/perf/util/ |
D | Build | 26 perf-y += parse-events.o 27 perf-y += parse-events-hybrid.o 69 perf-y += trace-event-parse.o 70 perf-y += parse-events-flex.o 71 perf-y += parse-events-bison.o 124 perf-y += parse-branch-options.o 126 perf-y += parse-regs-options.o 127 perf-y += parse-sublevel-options.o 215 $(OUTPUT)util/parse-events-flex.c $(OUTPUT)util/parse-events-flex.h: util/parse-events.l $(OUTPUT)u… 217 $(Q)$(call echo-cmd,flex)$(FLEX) -o $(OUTPUT)util/parse-events-flex.c \ [all …]
|
/Linux-v5.15/tools/lib/traceevent/ |
D | Build | 1 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
|
/Linux-v5.15/drivers/pcmcia/ |
D | pcmcia_cis.c | 30 * @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 …]
|
/Linux-v5.15/tools/lib/traceevent/Documentation/ |
D | libtraceevent-parse_event.txt | 6 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*
|
D | libtraceevent-reg_event_handler.txt | 7 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*
|
D | libtraceevent-parse_head.txt | 12 *#include <event-parse.h>* 38 #include <event-parse.h> 46 /* Failed to parse the header page */ 55 *event-parse.h*
|
/Linux-v5.15/scripts/ |
D | objdiff | 28 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`"
|
/Linux-v5.15/Documentation/driver-api/mmc/ |
D | mmc-tools.rst | 15 - Print and parse extcsd data. 35 - Print and parse CID data. 36 - Print and parse CSD data. 37 - Print and parse SCR data.
|
/Linux-v5.15/drivers/media/usb/as102/ |
D | as10x_cmd_cfg.c | 57 /* 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.
|
D | as10x_cmd.c | 46 /* parse response */ in as10x_cmd_turn_on() 86 /* parse response */ in as10x_cmd_turn_off() 141 /* parse response */ in as10x_cmd_set_tune() 185 /* parse response */ in as10x_cmd_get_tune_status() 238 /* parse response */ in as10x_cmd_get_tps() 297 /* parse response */ in as10x_cmd_get_demod_stats() 357 /* parse response */ in as10x_cmd_get_impulse_resp() 385 * as10x_rsp_parse - Parse command response
|
/Linux-v5.15/drivers/acpi/acpica/ |
D | nsparse.c | 25 * 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()
|
D | psloop.c | 4 * 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 …]
|
D | acparser.h | 50 * psargs - Parse AML opcode arguments 85 * psobject - support for parse object processing 133 * psloop - main parse loop 161 * pstree - parse tree manipulation routines 175 * pswalk - parse tree walk routines
|
/Linux-v5.15/net/batman-adv/ |
D | gateway_common.c | 27 * batadv_parse_throughput() - parse supplied string buffer to extract 30 * @buff: string buffer to parse 34 * Return: false on parse error and true otherwise. 94 * batadv_parse_gw_bandwidth() - parse supplied string buffer to extract 97 * @buff: string buffer to parse 101 * Return: false on parse error and true otherwise. 159 * batadv_gw_bandwidth_set() - Parse and set download/upload gateway bandwidth
|
/Linux-v5.15/drivers/gpu/drm/msm/dp/ |
D | dp_parser.h | 109 * @parse: function to be called by client to parse device tree. 120 int (*parse)(struct dp_parser *parser); member 129 * This function provides client capability to parse the
|
/Linux-v5.15/scripts/genksyms/ |
D | Makefile | 5 genksyms-objs := genksyms.o parse.tab.o lex.lex.o 7 # FIXME: fix the ambiguous grammar in parse.y and delete this hack 30 $(obj)/lex.lex.o: $(obj)/parse.tab.h
|
/Linux-v5.15/drivers/md/ |
D | dm-init.c | 98 * dm_parse_table_entry - parse a table entry 152 * dm_parse_table - parse "dm-mod.create=" table field 170 DMERR("couldn't parse table"); in dm_parse_table() 179 * dm_parse_device_entry - parse a device entry 227 * dm_parse_devices - parse "dm-mod.create=" argument 253 DMERR("couldn't parse device"); in dm_parse_devices() 262 * dm_init_init - parse "dm-mod.create=" argument and configure drivers
|
/Linux-v5.15/security/integrity/platform_certs/ |
D | efi_parser.c | 15 * parse_efi_signature_list - Parse an EFI signature list for certificates 17 * @data: The data blob to parse 21 * Parse an EFI signature list looking for elements of interest. A list is 32 * Error EBADMSG is returned if the list doesn't parse correctly and 0 is
|
D | load_uefi.c | 102 pr_err("Couldn't parse MokListRT signatures from EFI MOKvar config table: %d\n", in load_moklist_certs() 115 pr_err("Couldn't parse MokListRT signatures: %d\n", rc); in load_moklist_certs() 158 pr_err("Couldn't parse db signatures: %d\n", in load_uefi_certs() 175 pr_err("Couldn't parse dbx signatures: %d\n", rc); in load_uefi_certs() 190 pr_err("Couldn't parse mokx signatures %d\n", rc); in load_uefi_certs()
|
/Linux-v5.15/drivers/net/ethernet/marvell/octeontx2/nic/ |
D | otx2_txrx.c | 136 u64 iova, int len, struct nix_rx_parse_s *parse) in otx2_skb_add_frag() argument 150 if (parse->laptr) { in otx2_skb_add_frag() 195 end = start + ((cqe->parse.desc_sizem1 + 1) * 16); in otx2_free_rcv_seg() 210 struct nix_rx_parse_s *parse = &cqe->parse; in otx2_check_rcv_errors() local 215 qidx, parse->errlev, parse->errcode); in otx2_check_rcv_errors() 217 if (parse->errlev == NPC_ERRLVL_RE) { in otx2_check_rcv_errors() 218 switch (parse->errcode) { in otx2_check_rcv_errors() 236 } else if (parse->errlev == NPC_ERRLVL_NIX) { in otx2_check_rcv_errors() 237 switch (parse->errcode) { in otx2_check_rcv_errors() 275 struct nix_rx_parse_s *parse = &cqe->parse; in otx2_rcv_pkt_handler() local [all …]
|