Home
last modified time | relevance | path

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

12345678910>>...24

/Linux-v6.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-v6.1/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.
/Linux-v6.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.c648 struct arglist *parsed in uml_vector_user_open() argument
653 if (parsed == NULL) { in uml_vector_user_open()
654 printk(UM_KERN_ERR "no parsed config for unit %d\n", unit); in uml_vector_user_open()
657 transport = uml_vector_fetch_arg(parsed, "transport"); in uml_vector_user_open()
663 return user_init_raw_fds(parsed); in uml_vector_user_open()
665 return user_init_hybrid_fds(parsed); in uml_vector_user_open()
667 return user_init_tap_fds(parsed); in uml_vector_user_open()
669 return user_init_socket_fds(parsed, ID_GRE); in uml_vector_user_open()
671 return user_init_socket_fds(parsed, ID_L2TPV3); in uml_vector_user_open()
673 return user_init_unix_fds(parsed, ID_BESS); in uml_vector_user_open()
[all …]
Dvector_kern.c196 long parsed; in get_transport_options() local
203 if (kstrtoul(vector, 10, &parsed) == 0) { in get_transport_options()
204 if (parsed == 0) { in get_transport_options()
749 struct arglist *parsed; in vector_config() local
766 parsed = uml_parse_vector_ifspec(params); in vector_config()
768 if (parsed == NULL) { in vector_config()
773 vector_eth_configure(n, parsed); in vector_config()
1219 vp->bpf = uml_vector_user_bpf(get_bpf_file(vp->parsed)); in vector_net_open()
1221 vp->fds = uml_vector_user_open(vp->unit, vp->parsed); in vector_net_open()
1232 get_depth(vp->parsed), in vector_net_open()
[all …]
/Linux-v6.1/lib/kunit/
Dexecutor.c36 static void kunit_parse_filter_glob(struct kunit_test_filter *parsed, in kunit_parse_filter_glob() argument
43 parsed->suite_glob = kzalloc(len + 1, GFP_KERNEL); in kunit_parse_filter_glob()
44 parsed->test_glob = NULL; in kunit_parse_filter_glob()
45 strcpy(parsed->suite_glob, filter_glob); in kunit_parse_filter_glob()
49 parsed->suite_glob = kzalloc(period - filter_glob + 1, GFP_KERNEL); in kunit_parse_filter_glob()
50 parsed->test_glob = kzalloc(len - (period - filter_glob) + 1, GFP_KERNEL); in kunit_parse_filter_glob()
52 strncpy(parsed->suite_glob, filter_glob, period - filter_glob); in kunit_parse_filter_glob()
53 strncpy(parsed->test_glob, period + 1, len - (period - filter_glob)); in kunit_parse_filter_glob()
/Linux-v6.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-v6.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-v6.1/init/
Dinitramfs.c194 unsigned long parsed[13]; in parse_header() local
201 parsed[i] = simple_strtoul(buf, NULL, 16); in parse_header()
203 ino = parsed[0]; in parse_header()
204 mode = parsed[1]; in parse_header()
205 uid = parsed[2]; in parse_header()
206 gid = parsed[3]; in parse_header()
207 nlink = parsed[4]; in parse_header()
208 mtime = parsed[5]; /* breaks in y2106 */ in parse_header()
209 body_len = parsed[6]; in parse_header()
210 major = parsed[7]; in parse_header()
[all …]
/Linux-v6.1/drivers/xen/xen-pciback/
Dpci_stub.c1009 int parsed = 0; in str_to_slot() local
1012 &parsed)) { in str_to_slot()
1015 sscanf(buf, " %x:%x:%x.* %n", domain, bus, slot, &parsed); in str_to_slot()
1019 sscanf(buf, " %x:%x:*.* %n", domain, bus, &parsed); in str_to_slot()
1022 if (parsed && !buf[parsed]) in str_to_slot()
1027 switch (sscanf(buf, " %x:%x.%x %n", bus, slot, func, &parsed)) { in str_to_slot()
1030 sscanf(buf, " %x:%x.* %n", bus, slot, &parsed); in str_to_slot()
1034 sscanf(buf, " %x:*.* %n", bus, &parsed); in str_to_slot()
1037 if (parsed && !buf[parsed]) in str_to_slot()
1046 int parsed = 0; in str_to_quirk() local
[all …]
/Linux-v6.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-v6.1/tools/testing/kunit/
Dkunit_parser.py23 A class to represent a test parsed from KTAP results. All KTAP
265 version_num - The inputted version number from the parsed KTAP or TAP
270 test - Test object for current test being parsed
288 test - Test object for current test being parsed
291 True if successfully parsed KTAP/TAP header line
318 test - Test object for current test being parsed
321 True if successfully parsed test header line
344 test - Test object for current test being parsed
347 True if successfully parsed test plan line
374 test - Test object for current test being parsed
[all …]
/Linux-v6.1/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()
/Linux-v6.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-v6.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-v6.1/Documentation/userspace-api/media/v4l/
Dpixfmt-compressed.rst63 - H264 parsed slice data, including slice headers, either with or
113 - MPEG-2 parsed slice data, as extracted from the MPEG-2 bitstream.
157 - VP8 parsed frame, including the frame header, as extracted from the container.
179 - VP9 parsed frame, including the frame header, as extracted from the container.
204 - HEVC parsed slice data, as extracted from the HEVC bitstream.
/Linux-v6.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
Dv4l2-jpeg.h109 * struct v4l2_jpeg_header - parsed JPEG header
116 * @frame: parsed frame header
117 * @scan: pointer to parsed scan header, optional
/Linux-v6.1/arch/x86/events/intel/
Duncore_discovery.c137 int die, bool parsed) in uncore_insert_box_info() argument
146 if (parsed) { in uncore_insert_box_info()
206 u32 bar_offset, bool *parsed) in parse_discovery_table() argument
261 uncore_insert_box_info(&unit, die, *parsed); in parse_discovery_table()
264 *parsed = true; in parse_discovery_table()
274 bool parsed = false; in intel_uncore_has_discovery_tables() local
305 parse_discovery_table(dev, die, bar_offset, &parsed); in intel_uncore_has_discovery_tables()
310 if (!parsed) in intel_uncore_has_discovery_tables()
/Linux-v6.1/sound/core/seq/
Dseq_midi_emul.c499 int parsed = SNDRV_MIDI_SYSEX_NOT_PARSED; in sysex() local
514 parsed = SNDRV_MIDI_SYSEX_GM_ON; in sysex()
527 parsed = SNDRV_MIDI_SYSEX_GS_RESET; in sysex()
535 parsed = SNDRV_MIDI_SYSEX_GS_DRUM_CHANNEL; in sysex()
547 parsed = SNDRV_MIDI_SYSEX_GS_DRUM_CHANNEL; in sysex()
553 parsed = SNDRV_MIDI_SYSEX_GS_REVERB_MODE; in sysex()
558 parsed = SNDRV_MIDI_SYSEX_GS_CHORUS_MODE; in sysex()
563 parsed = SNDRV_MIDI_SYSEX_GS_MASTER_VOLUME; in sysex()
574 parsed = SNDRV_MIDI_SYSEX_XG_ON; in sysex()
585 ops->sysex(private, buf - 1, len + 1, parsed, chset); in sysex()
/Linux-v6.1/Documentation/networking/
Dmac80211-injection.rst19 to appear on received packets. The following information is parsed from the
45 Also some flags are parsed
60 without own rate control). Also other fields are parsed
/Linux-v6.1/drivers/platform/surface/aggregator/
Dssh_parser.c96 * @frame: The parsed frame (output).
97 * @payload: The parsed payload (output).
186 * @command: The parsed command (output).
187 * @command_data: The parsed command data/payload (output).
/Linux-v6.1/drivers/ssb/
Dsprom.c41 unsigned long parsed; in hex2sprom() local
57 err = kstrtoul(tmp, 16, &parsed); in hex2sprom()
60 sprom[cnt++] = swab16((u16)parsed); in hex2sprom()
/Linux-v6.1/drivers/md/
Ddm-init.c99 * @dev: device to store the parsed information.
153 * @dev: device to store the parsed information.
180 * @dev: device to store the parsed information.
228 * @devices: list of struct dm_device to store the parsed information.

12345678910>>...24