Searched refs:prototype (Results 1 - 132 of 132) sorted by relevance

/linux-4.4.14/include/linux/
H A Dstart_kernel.h7 /* Define the prototype for start_kernel here, rather than cluttering
H A Dbpf.h56 /* the following constraints used to prototype
63 /* the following constraints used to prototype bpf_memcmp() and other
80 /* eBPF function prototype used by verifier to allow BPF_CALLs from eBPF programs
109 /* return eBPF function prototype for verification */
H A Dtracepoint.h140 * The reason for this is to handle the "void" prototype. If a tracepoint
141 * has a "void" prototype, then it is invalid to declare a function
343 * The need for the DECLARE_TRACE_NOARGS() is to handle the prototype
344 * (void). "void" is a special value in a function prototype and can
346 * macro adds a data element at the beginning of the prototype,
348 * "(void *data, void)". The second prototype is invalid.
350 * DECLARE_TRACE_NOARGS() passes "void" as the tracepoint prototype
351 * and "void *__data" as the callback prototype.
354 * "void *__data, proto" as the callback prototype.
397 * * prototype, declare it via TP_PROTO():
H A Dof_irq.h104 * implements it differently. However, the prototype is the same for all,
H A Dinit.h23 * If the function has a prototype somewhere, you can also add
24 * __init between closing brace of the prototype and semicolon:
H A Dkprobes.h158 * execution at a specified entry with a matching prototype corresponding
H A Dmm.h524 * prototype for that function and accessor functions.
/linux-4.4.14/include/acpi/platform/
H A Daclinux.h109 #define ACPI_EXTERNAL_RETURN_STATUS(prototype) \
110 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);}
111 #define ACPI_EXTERNAL_RETURN_OK(prototype) \
112 static ACPI_INLINE prototype {return(AE_OK);}
113 #define ACPI_EXTERNAL_RETURN_VOID(prototype) \
114 static ACPI_INLINE prototype {return;}
115 #define ACPI_EXTERNAL_RETURN_UINT32(prototype) \
116 static ACPI_INLINE prototype {return(0);}
117 #define ACPI_EXTERNAL_RETURN_PTR(prototype) \
118 static ACPI_INLINE prototype {return(NULL);}
/linux-4.4.14/include/acpi/
H A Dacpixf.h94 #define ACPI_EXTERNAL_RETURN_STATUS(prototype) \
95 prototype;
99 #define ACPI_EXTERNAL_RETURN_OK(prototype) \
100 prototype;
104 #define ACPI_EXTERNAL_RETURN_VOID(prototype) \
105 prototype;
109 #define ACPI_EXTERNAL_RETURN_UINT32(prototype) \
110 prototype;
114 #define ACPI_EXTERNAL_RETURN_PTR(prototype) \
115 prototype;
297 #define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
298 ACPI_EXTERNAL_RETURN_STATUS(prototype)
300 #define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
301 ACPI_EXTERNAL_RETURN_OK(prototype)
303 #define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
304 ACPI_EXTERNAL_RETURN_VOID(prototype)
307 #define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
308 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);}
310 #define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
311 static ACPI_INLINE prototype {return(AE_OK);}
313 #define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
314 static ACPI_INLINE prototype {return;}
326 #define ACPI_MSG_DEPENDENT_RETURN_VOID(prototype) \
327 prototype;
330 #define ACPI_MSG_DEPENDENT_RETURN_VOID(prototype) \
331 static ACPI_INLINE prototype {return;}
343 #define ACPI_DBG_DEPENDENT_RETURN_VOID(prototype) \
344 prototype;
347 #define ACPI_DBG_DEPENDENT_RETURN_VOID(prototype) \
348 static ACPI_INLINE prototype {return;}
360 #define ACPI_APP_DEPENDENT_RETURN_VOID(prototype) \
361 prototype;
364 #define ACPI_APP_DEPENDENT_RETURN_VOID(prototype) \
365 static ACPI_INLINE prototype {return;}
/linux-4.4.14/drivers/staging/rtl8723au/include/
H A Drtl8723a_rf.h42 /*--------------------------Exported Function prototype---------------------*/
54 /*--------------------------Exported Function prototype---------------------*/
H A DHalDMOutSrc8723A.h44 /* function prototype */
H A DHal8723APhyCfg.h106 /*--------------------------Exported Function prototype---------------------*/
154 /*--------------------------Exported Function prototype---------------------*/
H A Drtl8723a_dm.h129 /* function prototype */
/linux-4.4.14/arch/sh/kernel/cpu/sh4a/
H A Dpinmux-shx3.c2 * SH-X3 prototype CPU pinmux
/linux-4.4.14/scripts/
H A Dkernel-doc315 my ($newsection, $newcontents, $prototype, $brcount, %source_map);
335 # 3 - scanning prototype.
1784 my ($prototype, $file) = @_;
2157 # takes a function prototype and the name of the current file being
2161 my $prototype = shift;
2165 $prototype =~ s/^static +//;
2166 $prototype =~ s/^extern +//;
2167 $prototype =~ s/^asmlinkage +//;
2168 $prototype =~ s/^inline +//;
2169 $prototype =~ s/^__inline__ +//;
2170 $prototype =~ s/^__inline +//;
2171 $prototype =~ s/^__always_inline +//;
2172 $prototype =~ s/^noinline +//;
2173 $prototype =~ s/__init +//;
2174 $prototype =~ s/__init_or_module +//;
2175 $prototype =~ s/__meminit +//;
2176 $prototype =~ s/__must_check +//;
2177 $prototype =~ s/__weak +//;
2178 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
2179 $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//;
2197 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
2205 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2206 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2207 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2208 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2209 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2210 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2211 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2212 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2213 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2214 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2215 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2216 $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2217 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2218 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2219 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2220 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2221 $prototype =~ m/^(\w+\s+\w+\s*\*\s*\w+\s*\*\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
2228 print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
2268 $prototype = "";
2279 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
2282 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
2285 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
2289 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
2294 "$prototype\n";
2296 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
2303 $prototype =~ s@[\r\n\t]+@ @gos; # strip newlines/CR's/tabs
2304 ## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
2305 if ($prototype =~ m/SYSCALL_DEFINE0/) {
2307 ## $prototype = "long sys_$1(void)";
2310 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
2311 if ($prototype =~ m/long (sys_.*?),/) {
2312 $prototype =~ s/,/\(/;
2314 $prototype =~ s/\)/\(void\)/;
2317 # now delete all of the odd-number commas in $prototype
2320 my $len = length($prototype);
2325 if (substr($prototype, $ix, 1) eq ',') {
2328 substr($prototype, $ix, 1) = ' ';
2344 $prototype .= $1;
2348 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
2349 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2350 $prototype =~ s@^\s+@@gos; # strip leading spaces
2351 if ($prototype =~ /SYSCALL_DEFINE/) {
2354 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
2355 $prototype =~ /DEFINE_SINGLE_EVENT/)
2359 dump_function($prototype, $file);
2380 $prototype .= $1 . $2;
2384 dump_declaration($prototype, $file);
2390 $prototype .= $x;
2556 $prototype = "";
2559 # print STDERR "end of doc comment, looking for prototype\n";
2618 } elsif ($state == 3) { # scanning for function '{' (end of prototype)
2639 $prototype = "";
2657 $prototype = "";
H A Dkernel-doc-xml-ref111 # We shouldn't add links to <funcdef> prototype
/linux-4.4.14/arch/x86/kernel/
H A Di386_ksyms_32.c14 * Note, this is a prototype to get at the symbol for
/linux-4.4.14/tools/perf/scripts/perl/Perf-Trace-Util/
H A DContext.c46 XS(XS_Perf__Trace__Context_common_pc); /* prototype to pass -Wmissing-prototypes */ XS()
69 XS(XS_Perf__Trace__Context_common_flags); /* prototype to pass -Wmissing-prototypes */ XS()
92 XS(XS_Perf__Trace__Context_common_lock_depth); /* prototype to pass -Wmissing-prototypes */ XS()
117 XS(boot_Perf__Trace__Context); /* prototype to pass -Wmissing-prototypes */ XS()
/linux-4.4.14/arch/arm64/lib/
H A DMakefile11 # the function prototype.
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/
H A Dbrcms_trace_brcmsmac.h30 /* TPPROTO is the prototype of the function called by this tracepoint */
34 * prototype.
/linux-4.4.14/arch/powerpc/xmon/
H A Dansidecl.h41 ARGS list the arguments with their types. It becomes a prototype in
50 obsolete -- EXFUN (name, (prototype)) -- obsolete.
60 We could use the EXFUN macro to handle prototype declarations, but
/linux-4.4.14/drivers/staging/rtl8192e/rtl8192e/
H A Drtl_dm.h184 /*--------------------------Exported Function prototype---------------------*/
185 /*--------------------------Exported Function prototype---------------------*/
H A Drtl_dm.c164 /*---------------------Define local function prototype-----------------------*/
201 /*---------------------Define local function prototype-----------------------*/
208 /*---------------------------Define function prototype------------------------*/
2461 /*---------------------------Define function prototype------------------------*/ _rtl92e_dm_init_dynamic_tx_power()
H A Dr8192E_phy.c44 /*************************Define local function prototype**********************/
/linux-4.4.14/drivers/staging/rtl8192u/
H A Dr8192U_dm.h214 /*--------------------------Exported Function prototype---------------------*/
233 /*--------------------------Exported Function prototype---------------------*/
H A Dr8192U_dm.c52 /*--------------------Define export function prototype-----------------------*/
55 /*--------------------Define export function prototype-----------------------*/
58 /*---------------------Define local function prototype-----------------------*/
103 /*---------------------Define local function prototype-----------------------*/
112 /*---------------------------Define function prototype------------------------*/
3011 /*---------------------------Define function prototype------------------------*/
3130 /*---------------------------Define function prototype------------------------*/
H A Dr8192U_core.c958 /* The prototype of rx_isr has changed since one version of Linux Kernel */ rtl8192_rx_isr()
/linux-4.4.14/arch/um/include/shared/
H A Dinit.h20 * If the function has a prototype somewhere, you can also add
21 * __init between closing brace of the prototype and semicolon:
/linux-4.4.14/drivers/staging/sm750fb/
H A Dddk750_dvi.h44 /* dvi functions prototype */
H A Dddk750_sii164.h15 /* Silicon Image SiI164 chip prototype */
/linux-4.4.14/drivers/net/ethernet/intel/i40e/
H A Di40e_alloc.h45 /* prototype for functions used for dynamic memory allocation */
H A Di40e_prototype.h278 /* prototype for functions used for NVM access */
302 /* prototype for functions used for SW locks */
/linux-4.4.14/drivers/net/ethernet/intel/i40evf/
H A Di40e_alloc.h45 /* prototype for functions used for dynamic memory allocation */
H A Di40e_prototype.h86 /* prototype for functions used for SW locks */
/linux-4.4.14/arch/powerpc/kernel/vdso32/
H A Dgettimeofday.S30 * Exact prototype of gettimeofday
67 * Exact prototype of clock_gettime()
149 * Exact prototype of clock_getres()
184 * Exact prototype of time()
/linux-4.4.14/drivers/staging/rtl8188eu/include/
H A DHal8188EPhyCfg.h197 /*--------------------------Exported Function prototype---------------------*/
222 /*--------------------------Exported Function prototype---------------------*/
/linux-4.4.14/arch/um/os-Linux/
H A Duser_syms.c35 /* Here, instead, I can provide a fake prototype. Yes, someone cares: genksyms.
/linux-4.4.14/include/linux/soc/ti/
H A Dknav_qmss.h55 /* Queue notifier callback prototype */
/linux-4.4.14/arch/m32r/mm/
H A Dinit.c45 * function prototype
/linux-4.4.14/drivers/s390/cio/
H A Ddevice.h109 /* Function prototype for internal request handling. */
/linux-4.4.14/arch/x86/include/asm/
H A Dolpc.h55 * C2. During the prototype phase, the following models (in chronological
/linux-4.4.14/include/xen/interface/
H A Dsched.h15 * The prototype for this hypercall is:
/linux-4.4.14/arch/sparc/kernel/
H A Dapc.c41 * disable APC CPU standby support. Certain prototype
/linux-4.4.14/arch/metag/kernel/
H A Duser_gateway.S56 * Reference prototype:
/linux-4.4.14/drivers/staging/comedi/drivers/
H A Dcomedi_8255.c195 * If the optional I/O call-back function is provided, its prototype is of
230 * If the optional I/O call-back function is provided, its prototype is of
/linux-4.4.14/arch/mips/net/
H A Dbpf_jit_asm.S125 * (prototype in linux/skbuff.h)
235 * (prototype in linux/filter.h)
/linux-4.4.14/drivers/staging/lustre/include/linux/libcfs/
H A Dlibcfs_kernelcomm.h79 /* prototype for callback function on kuc groups */
/linux-4.4.14/drivers/media/pci/ngene/
H A Dngene-i2c.c9 * support for new dual DVB-S2 card prototype
H A Dngene-dvb.c9 * support for new dual DVB-S2 card prototype
H A Dngene-cards.c9 * support for new dual DVB-S2 card prototype
H A Dngene-core.c9 * support for new dual DVB-S2 card prototype
/linux-4.4.14/drivers/ata/
H A Dpata_opti.c16 * Also consulted the FreeBSD prototype driver by Kevin Day to try
/linux-4.4.14/fs/nilfs2/
H A Dmdt.h2 * mdt.h - NILFS meta data file prototype and definitions
H A Dnilfs.h198 * function prototype
/linux-4.4.14/arch/sh/drivers/dma/
H A Ddmabrg.c54 * handler prototype: void brgirqhandler(void *data)
/linux-4.4.14/arch/frv/include/asm/
H A Delf.h48 #define EF_FRV_CPU_TOMCAT 0x04000000 /* Tomcat, FR500 prototype */
/linux-4.4.14/arch/hexagon/include/asm/
H A Dcacheflush.h68 * in the cache to confuse things. The prototype Hexagon Virtual Machine
/linux-4.4.14/arch/arm/mach-pxa/
H A Dam300epd.c14 * on the AM300 EPD prototype kit/development kit with an E-Ink 800x600
H A Dam200epd.c16 * on the AM200 EPD prototype kit/development kit with an E-Ink 800x600
/linux-4.4.14/drivers/staging/wlan-ng/
H A Dp80211types.h257 /* prototype template */
264 /* prototype template w/ data item */
H A Dp80211mgmt.h220 /* prototype structure, all IEs start with these members */
296 /* prototype structure, all mgmt frame types will start with these members */
/linux-4.4.14/samples/trace_events/
H A Dtrace-events-sample.h68 * proto: the prototype of the function trace_foo_bar()
71 * args: must match the arguments in the prototype.
368 * reg and unreg are functions with the prototype of:
/linux-4.4.14/drivers/media/usb/pvrusb2/
H A Dpvrusb2-encoder.c136 /* This prototype is set up to be compatible with the
137 cx2341x_mbox_func prototype in cx2341x.h, which should be in
/linux-4.4.14/drivers/tty/serial/
H A Dicom.h276 /* prototype */
/linux-4.4.14/drivers/scsi/sym53c8xx_2/
H A Dsym_fw.h123 * We need this for function prototype declarations just below.
/linux-4.4.14/drivers/scsi/dpt/
H A Dosd_util.h224 #include "novpass.h" /* For DPT_Bswapl() prototype */
/linux-4.4.14/drivers/misc/mei/
H A Dclient.h127 * MEI input output function prototype
H A Dmei_dev.h613 * MEI interrupt functions prototype
/linux-4.4.14/drivers/media/dvb-core/
H A Ddemux.h195 * typedef dmx_ts_cb - DVB demux TS filter callback function prototype
203 * This function callback prototype, provided by the client of the demux API,
256 * typedef dmx_section_cb - DVB demux TS filter callback function prototype
270 * This function callback prototype, provided by the client of the demux API,
/linux-4.4.14/drivers/net/ethernet/brocade/bna/
H A Dbfa_defs.h61 u8 prototype; member in struct:bfa_adapter_attr
H A Dbfi.h326 BFI_ADAPTER_PROTO = 0x100000, /*!< prototype adapaters */
H A Dbfa_ioc.c2778 ad_attr->prototype = 1; bfa_ioc_get_adapter_attr()
2780 ad_attr->prototype = 0; bfa_ioc_get_adapter_attr()
/linux-4.4.14/mm/kasan/
H A Dreport.c7 * Some code borrowed from https://github.com/xairy/kasan-prototype by
H A Dkasan.c7 * Some code borrowed from https://github.com/xairy/kasan-prototype by
/linux-4.4.14/include/net/
H A Diw_handler.h130 * Functions prototype uses union iwreq_data
140 * break the prototype. Using iwreq_data is more flexible.
219 * o wireless_send_event() prototype
301 * without breaking the prototype of iw_handler...
/linux-4.4.14/arch/m68k/kernel/
H A Dprocess.c123 * are finished with do_fork() prototype conversion.
/linux-4.4.14/arch/arm/include/asm/
H A Dkvm_host.h201 * Note that we slightly misuse the prototype by casing the __cpu_init_hyp_mode()
/linux-4.4.14/drivers/staging/rtl8723au/hal/
H A Drtl8723a_phycfg.c37 /*--------------------Define export function prototype-----------------------*/
39 /*--------------------Define export function prototype-----------------------*/
/linux-4.4.14/drivers/staging/skein/
H A Dskein_base.h32 /* below two prototype assume we are handed aligned data */
/linux-4.4.14/drivers/net/ethernet/packetengines/
H A Dyellowfin.c39 #ifdef YF_PROTOTYPE /* Support for prototype hardware errata. */
206 See Packet Engines confidential appendix (prototype chips only).
1100 #ifdef YF_PROTOTYPE /* Support for prototype hardware errata. */ yellowfin_rx()
1269 #ifdef YF_PROTOTYPE /* Support for prototype hardware errata. */ yellowfin_close()
H A Dhamachi.c1442 } /* else Omit for prototype errata??? */ hamachi_rx()
/linux-4.4.14/net/atm/
H A Dproc.c32 #include "common.h" /* atm_proc_init prototype */
/linux-4.4.14/net/sunrpc/auth_gss/
H A Dgss_mech_switch.c462 * Note this differs from the RFC 2744-specified prototype in that we don't
/linux-4.4.14/net/ipv4/
H A Dtcp_dctcp.c29 * Initial prototype from Abdul Kabbani, Masato Yasuda and Mohammad Alizadeh.
/linux-4.4.14/drivers/scsi/mvsas/
H A Dmv_sas.h442 /******************** function prototype *********************/
/linux-4.4.14/drivers/media/usb/b2c2/
H A Dflexcop-usb.c272 make sure prototype are/will be equal to pci */ flexcop_usb_read_ibi_reg()
/linux-4.4.14/drivers/net/ethernet/atheros/atlx/
H A Datl2.h79 /* function prototype */
/linux-4.4.14/drivers/pinctrl/sh-pfc/
H A Dpfc-shx3.c2 * SH-X3 prototype CPU pinmux
/linux-4.4.14/arch/alpha/include/asm/
H A Dio.h273 /* These two have to be extern inline because of the extern prototype from
/linux-4.4.14/lib/
H A Ddecompress_unxz.c203 /* Not static to avoid a conflict with the prototype in the Linux headers. */ memmove()
/linux-4.4.14/fs/affs/
H A Dsuper.c314 int tmp_flags; /* fix remount prototype... */ affs_fill_super()
/linux-4.4.14/arch/powerpc/include/asm/
H A Dpmac_feature.h26 * the prototype parameters (struct device_node* node, int value).
H A Dio.h98 * Those operate directly on a kernel virtual address. Note that the prototype
/linux-4.4.14/arch/mips/include/asm/
H A Dmips-cm.h32 * different way by defining a function with the same prototype except for the
H A Dpgtable.h621 * different prototype.
/linux-4.4.14/arch/mips/kernel/
H A Dgenex.S231 * This prototype is copied to ebase + n*IntCtl.VS and patched
/linux-4.4.14/arch/arm/mach-s3c64xx/
H A Dmach-crag6410.c757 /* force card-detected for prototype 0 */ crag6410_cfg_sdhci0()
/linux-4.4.14/drivers/usb/wusbcore/
H A Dsecurity.c214 /* FIXME: prototype for adding security */ wusb_dev_sec_add()
/linux-4.4.14/drivers/scsi/pm8001/
H A Dpm8001_sas.h626 /******************** function prototype *********************/
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4vf/
H A Dadapter.h531 * SGE function prototype declarations.
/linux-4.4.14/drivers/net/ethernet/atheros/atl1e/
H A Datl1e_hw.h31 /* function prototype */
/linux-4.4.14/drivers/char/tpm/
H A Dtpm2-cmd.c790 /* At least some prototype chips seem to give RC_TESTING error tpm2_start_selftest()
/linux-4.4.14/kernel/bpf/
H A Dsyscall.c492 /* all functions that have prototype and verifier allowed fixup_bpf_calls()
H A Dverifier.c107 * here verifier looks at prototype of map_lookup_elem() and sees:
941 /* find function prototype */ check_call()
/linux-4.4.14/fs/ocfs2/
H A Docfs2.h93 * Need this prototype here instead of in uptodate.h because journal.h
/linux-4.4.14/include/uapi/linux/genwqe/
H A Dgenwqe_card.h264 * This interface is a first prototype resulting from discussions we
/linux-4.4.14/arch/s390/pci/
H A Dpci.c7 * The System z PCI code is a rewrite from a prototype by
/linux-4.4.14/fs/cifs/
H A Dcifsglob.h1245 * This is the prototype for the mid receive function. This function is for
1260 * This is the prototype for the mid callback function. This is called once the
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/
H A Dcl_object.c922 * Temporary prototype thing: mirror obd-devices into cl devices.
/linux-4.4.14/drivers/scsi/aacraid/
H A Dcommctrl.c41 #include <linux/delay.h> /* ssleep prototype */
/linux-4.4.14/drivers/scsi/bfa/
H A Dbfa_defs.h289 u8 prototype; member in struct:bfa_adapter_attr_s
H A Dbfa_svc.h342 * Callback prototype for unsolicited frame receive handler.
H A Dbfi.h430 BFI_ADAPTER_PROTO = 0x100000, /* prototype adapaters */
H A Dbfa_ioc.c2727 ad_attr->prototype = 1; bfa_ioc_get_adapter_attr()
2729 ad_attr->prototype = 0; bfa_ioc_get_adapter_attr()
/linux-4.4.14/drivers/media/usb/gspca/
H A Dov534.c8 * Based on a prototype written by Mark Ferrell <majortrips@gmail.com>
H A Dov534_9.c8 * Based on a prototype written by Mark Ferrell <majortrips@gmail.com>
/linux-4.4.14/drivers/media/dvb-frontends/
H A Ddib7000m.c1348 /* used with some prototype boards */
/linux-4.4.14/drivers/net/ethernet/atheros/atl1c/
H A Datl1c_hw.h37 /* function prototype */
/linux-4.4.14/net/batman-adv/
H A Dsoft-interface.c663 * Returns 0 on success, -EINVAL if the specified prototype is not ETH_P_8021Q
H A Dtranslation-table.c2323 * @data_ptr: not used but definition required to satisfy the callback prototype
/linux-4.4.14/Documentation/cdrom/
H A Dcdrom-standard.tex980 prototype and return values.
982 change the prototype a little. Remove entries listed in the first
/linux-4.4.14/drivers/usb/gadget/function/
H A Duvc_configfs.c1885 * @n: unused, this function's prototype must match @fun in __uvcg_iter_strm_cls
/linux-4.4.14/drivers/md/
H A Ddm-ioctl.c464 * prototype.
/linux-4.4.14/arch/powerpc/mm/
H A Dhash_utils_64.c1289 /* WARNING: This is called from hash_low_64.S, if you change this prototype,
/linux-4.4.14/drivers/media/dvb-frontends/drx39xyj/
H A Ddrx_driver.h1113 * \brief Inner scan function prototype.
/linux-4.4.14/fs/xfs/
H A Dxfs_file.c1107 * point we can change the ->readdir prototype to include the xfs_file_readdir()
/linux-4.4.14/drivers/usb/host/
H A Dxhci-ring.c1135 * worrying about, since this is prototype hardware. Not sure xhci_handle_cmd_config_ep()
1137 * untested on this prototype. xhci_handle_cmd_config_ep()
/linux-4.4.14/drivers/isdn/i4l/
H A Disdn_ppp.c2192 the (de)compressor. The API is a prototype version from PPP where only
/linux-4.4.14/tools/perf/
H A Dbuiltin-trace.c12 * Initially based on the 'trace' prototype by Thomas Gleixner:
/linux-4.4.14/drivers/net/ethernet/sfc/
H A Dmcdi_pcol.h7188 /* enum: RX PD firmware for GUE parsing prototype (Medford development only) */
7223 /* enum: RX PD firmware for GUE parsing prototype (Medford development only) */
/linux-4.4.14/net/core/
H A Dskbuff.c1656 * If its prototype is ever changed,
/linux-4.4.14/fs/reiserfs/
H A Dinode.c1528 * evolved as the prototype did

Completed in 4740 milliseconds