Home
last modified time | relevance | path

Searched full:details (Results 1 – 25 of 3601) sorted by relevance

12345678910>>...145

/linux/tools/perf/
H A Dbuiltin-evlist.c30 static int __cmd_evlist(const char *file_name, struct perf_attr_details *details) in __cmd_evlist() argument
37 .force = details->force, in __cmd_evlist()
54 evsel__fprintf(pos, details, stdout); in __cmd_evlist()
63 if (has_tracepoint && !details->trace_fields) in __cmd_evlist()
66 if (has_group && !details->event_group) in __cmd_evlist()
75 struct perf_attr_details details = { .verbose = false, }; in cmd_evlist() local
78 OPT_BOOLEAN('F', "freq", &details.freq, "Show the sample frequency"), in cmd_evlist()
79 OPT_BOOLEAN('v', "verbose", &details.verbose, in cmd_evlist()
80 "Show all event attr details"), in cmd_evlist()
81 OPT_BOOLEAN('g', "group", &details.event_group, in cmd_evlist()
[all …]
/linux/security/landlock/
H A Ddomain.c86 struct landlock_details *details; in get_current_details() local
93 * Create the new details according to the path's length. Do not in get_current_details()
97 details = kzalloc_flex(*details, exe_path, path_size); in get_current_details()
98 if (!details) in get_current_details()
101 memcpy(details->exe_path, path_str, path_size); in get_current_details()
102 details->pid = get_pid(task_tgid(current)); in get_current_details()
103 details->uid = from_kuid(&init_user_ns, current_uid()); in get_current_details()
104 get_task_comm(details->comm, current); in get_current_details()
105 return details; in get_current_details()
120 struct landlock_details *details; in landlock_init_hierarchy_log() local
[all …]
H A Ddomain.h104 * @details: Information about the related domain.
106 const struct landlock_details *details; member
132 if (!hierarchy || !hierarchy->details) in landlock_free_hierarchy_details()
135 put_pid(hierarchy->details->pid); in landlock_free_hierarchy_details()
136 kfree(hierarchy->details); in landlock_free_hierarchy_details()
/linux/drivers/cpufreq/
H A DKconfig.x8629 For details, take a look at:
49 For details, take a look at:
68 For details, take a look at:
99 For details, take a look at <file:Documentation/cpu-freq/>.
126 For details, take a look at <file:Documentation/cpu-freq/>.
136 For details, take a look at <file:Documentation/cpu-freq/>.
148 For details, take a look at <file:Documentation/cpu-freq/>.
158 For details, take a look at <file:Documentation/cpu-freq/>.
179 For details, take a look at <file:Documentation/cpu-freq/>.
205 For details, take a look at <file:Documentation/cpu-freq/>.
[all …]
/linux/Documentation/trace/coresight/
H A Dcoresight.rst133 See ``Documentation/devicetree/bindings/arm/arm,coresight-*.yaml`` for details.
258 <file details> cti_cpu0 -> ../../../23020000.cti/cti_cpu0
259 <file details> nr_links
260 <file details> out:0 -> ../../../230c0000.funnel/funnel2
265 <file details> in:0 -> ../../../23040000.etm/etm0
266 <file details> in:1 -> ../../../23140000.etm/etm3
267 <file details> in:2 -> ../../../23240000.etm/etm4
268 <file details> in:3 -> ../../../23340000.etm/etm5
269 <file details> nr_links
270 <file details> out:0 -> ../../../20040000.funnel/funnel0
[all …]
/linux/include/drm/
H A Ddrm_simple_kms_helper.h117 * more details.
133 * more details.
143 * more details.
153 * more details.
163 * more details.
172 * more details.
180 * documentation for the &drm_crtc_funcs.reset hook for more details.
189 * hook for more details.
198 * hook for more details.
207 * documentation for the &drm_plane_funcs.reset hook for more details.
[all …]
/linux/drivers/gpu/drm/xe/
H A Dxe_vm_madvise.c91 struct xe_madvise_details *details) in madvise_preferred_mem_loc() argument
115 if (details->dpagemap) in madvise_preferred_mem_loc()
116 loc->dpagemap = drm_pagemap_get(details->dpagemap); in madvise_preferred_mem_loc()
124 struct xe_madvise_details *details) in madvise_atomic() argument
166 struct xe_madvise_details *details) in madvise_pat_index() argument
185 struct xe_madvise_details *details);
326 struct xe_madvise_details *details) in xe_madvise_details_init() argument
330 memset(details, 0, sizeof(*details)); in xe_madvise_details_init()
349 details->dpagemap = dpagemap; in xe_madvise_details_init()
355 static void xe_madvise_details_fini(struct xe_madvise_details *details) in xe_madvise_details_fini() argument
[all …]
/linux/drivers/staging/media/atomisp/pci/isp/kernels/xnr/xnr_3.0/
H A Dia_css_xnr3_types.h16 * \details The define specifies which fixed-point value represents 1.0.
22 * \details The define specifies which fixed-point value represents 1.0.
28 * \details The define specifies which fixed-point value represents 1.0.
34 * \details Sigma parameters define the strength of the XNR filter.
51 * \details Coring parameters define the "coring" strength, which is a soft
66 * \details Blending parameters define the blending strength of filtered
80 * \details Struct with all parameters for the XNR3 kernel that can be set
/linux/drivers/net/ethernet/intel/iavf/
H A Diavf_adminq.c559 struct iavf_asq_cmd_details *details; in iavf_clean_asq() local
565 details = IAVF_ADMINQ_DETAILS(*asq, ntc); in iavf_clean_asq()
570 if (details->callback) { in iavf_clean_asq()
572 (IAVF_ADMINQ_CALLBACK)details->callback; in iavf_clean_asq()
577 memset((void *)details, 0, in iavf_clean_asq()
583 details = IAVF_ADMINQ_DETAILS(*asq, ntc); in iavf_clean_asq()
612 * @cmd_details: pointer to command details structure
624 struct iavf_asq_cmd_details *details; in iavf_asq_send_command() local
650 details = IAVF_ADMINQ_DETAILS(hw->aq.asq, hw->aq.asq.next_to_use); in iavf_asq_send_command()
652 *details = *cmd_details; in iavf_asq_send_command()
[all …]
/linux/drivers/net/ethernet/intel/i40e/
H A Di40e_adminq.c692 struct i40e_asq_cmd_details *details; in i40e_clean_asq() local
698 details = I40E_ADMINQ_DETAILS(*asq, ntc); in i40e_clean_asq()
703 if (details->callback) { in i40e_clean_asq()
705 (I40E_ADMINQ_CALLBACK)details->callback; in i40e_clean_asq()
710 memset(details, 0, sizeof(*details)); in i40e_clean_asq()
715 details = I40E_ADMINQ_DETAILS(*asq, ntc); in i40e_clean_asq()
745 * @cmd_details: pointer to command details structure
760 struct i40e_asq_cmd_details *details; in i40e_asq_send_command_atomic_exec() local
784 details = I40E_ADMINQ_DETAILS(hw->aq.asq, hw->aq.asq.next_to_use); in i40e_asq_send_command_atomic_exec()
786 *details = *cmd_details; in i40e_asq_send_command_atomic_exec()
[all …]
H A Di40e_common.c374 * @cmd_details: pointer to command details structure or NULL
402 * @cmd_details: pointer to command details structure or NULL
932 * @mode: 0=off, 0xf=on (else see manual for mode details)
992 * @cmd_details: pointer to command details structure or NULL
1068 * @cmd_details: pointer to command details structure or NULL
1196 * @cmd_details: pointer to command details structure or NULL
1229 * @cmd_details: pointer to command details structure or NULL
1257 * @cmd_details: pointer to command details structure or NULL
1289 * @cmd_details: pointer to command details structure or NULL
1384 * @cmd_details: pointer to command details structure or NULL
[all …]
/linux/Documentation/sphinx/
H A Dmaintainers_include.py13 :license: GPL Version 2, June 1991 see linux/COPYING for details.
124 field, details = line.split(':', 1)
125 details = details.strip()
131 if not ':doc:' in details:
132 details = '``%s``' % (details)
143 field_content = field_content + "\n\t%s" % (details)
/linux/drivers/staging/media/atomisp/pci/base/circbuf/src/
H A Dcircbuf.c60 * Refer to "ia_css_circbuf.h" for details.
85 * Refer to "ia_css_circbuf.h" for details.
96 * Refer to "ia_css_circbuf.h" for details.
113 * Refer to "ia_css_circbuf.h" for details.
163 * Refer to "ia_css_circbuf.h" for details.
177 * Refer to "ia_css_circbuf.h" for details.
192 * Please refer to "ia_css_circbuf.h" for details.
250 * Refer to "Forward declarations" for details.
260 * Refer to "Forward declarations" for details.
280 * Refer to "Forward declarations" for details.
/linux/Documentation/ABI/testing/
H A Dsysfs-bus-i3c52 length, etc. See the I3C specification for more details.
62 specification for more details.
74 See the I3C specification for more details.
85 See the I3C specification for more details about these HDR
127 length, etc. See the I3C specification for more details.
135 specification for more details.
145 See the I3C specification for more details.
155 See the I3C specification for more details about these HDR
H A Ddebugfs-alienware-wmi12 details.
27 details.
42 details.
62 See Documentation/wmi/devices/alienware-wmi.rst for details.
/linux/samples/bpf/
H A Ddo_hbm_test.sh88 details=0
141 details=1
311 if [ $details -ne 0 ] ; then
313 echo "Details for HBM in cgroup $id"
328 if [ $details -ne 0 ] ; then
330 echo "Details for cgroup $id, flow $flow_cnt"
335 if [ $details -ne 0 ] ; then
350 if [ $details -ne 0 ] ; then
352 echo "Details for HBM in cgroup $id"
376 if [ $details -ne 0 ] ; then
[all …]
/linux/Documentation/devicetree/bindings/pci/
H A Dsnps,dw-pcie-common.yaml123 - description: See native 'dbi' clock for details
125 - description: See native 'mstr/slv' clock for details
127 - description: See native 'pipe' clock for details
129 - description: See native 'aux' clock for details
131 - description: See native 'ref' clock for details.
133 - description: See nativs 'phy_reg' clock for details
180 - description: See native 'app' reset for details
182 - description: See native 'phy' reset for details
184 - description: See native 'pwr' reset for details
/linux/Documentation/trace/postprocess/
H A Dtrace-vmscan-postprocess.pl132 # (process_pid) (cpus ) ( time ) (tpoint ) (details)
271 my $details;
308 $details = $6;
309 if ($details !~ /$regex_direct_begin/o) {
311 print " $details\n";
331 $details = $6;
332 if ($details !~ /$regex_kswapd_wake/o) {
334 print " $details\n";
365 $details = $6;
366 if ($details !~ /$regex_wakeup_kswapd/o) {
[all …]
/linux/drivers/staging/media/atomisp/pci/css_2401_system/host/
H A Dcsi_rx_private.h26 * Refer to "csi_rx_public.h" for details.
40 * Refer to "ibuf_ctrl_public.h" for details.
56 * Refer to "csi_rx_public.h" for details.
70 * Refer to "ibuf_ctrl_public.h" for details.
93 * Refer to "csi_rx_public.h" for details.
108 * Refer to "csi_rx_public.h" for details.
147 * Refer to "csi_rx_public.h" for details.
185 * Refer to "csi_rx_public.h" for details.
248 * Refer to "csi_rx_public.h" for details.
H A Disys_stream2mmio_private.h32 * Refer to "stream2mmio_public.h" for details.
51 * Refer to "stream2mmio_public.h" for details.
82 * Refer to "stream2mmio_public.h" for details.
98 * Refer to "stream2mmio_public.h" for details.
125 * Refer to "stream2mmio_public.h" for details.
143 * Refer to "stream2mmio_public.h" for details.
/linux/include/uapi/misc/
H A Damd-apml.h95 * "-EPROTOTYPE" error is returned to provide additional error details
111 * - CPUID protocol to get CPU details for Function/Ext Function
114 * "-EPROTOTYPE" error is returned to provide additional error details
130 * - MCAMSR protocol to get MCA bank details for Function at thread level
132 * "-EPROTOTYPE" error is returned to provide additional error details
/linux/Documentation/devicetree/bindings/display/
H A Dst,stih4xx.txt17 See ../clocks/clock-bindings.txt for details.
35 See ../clocks/clock-bindings.txt for details.
39 See ../reset/reset.txt for details.
52 See ../reset/reset.txt for details.
81 See ../clocks/clock-bindings.txt for details.
94 See ../clocks/clock-bindings.txt for details.
108 See ../clocks/clock-bindings.txt for details.
112 See ../reset/reset.txt for details.
/linux/fs/smb/client/
H A Dcompress.h8 * See compress/ for implementation details of each algorithm.
11 * MS-SMB2 "3.1.4.4 Compressing the Message" - for compression details
12 * MS-SMB2 "3.1.5.3 Decompressing the Chained Message" - for decompression details
13 * MS-XCA - for details of the supported algorithms
/linux/Documentation/virt/coco/
H A Dtdx-guest.rst11 device to allow userspace to get certain TDX guest-specific details.
19 :Input parameters: Parameters passed to the IOCTL and related details.
20 :Output: Details about output data and return value (with details about
/linux/drivers/irqchip/
H A Dirq-riscv-imsic-state.h19 /* Fixed details of the vector */
22 /* Details saved by driver in the vector */
24 /* Details accessed using local lock held */
47 /* Device details */

12345678910>>...145