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

/linux-4.1.27/include/linux/
H A Dstart_kernel.h7 /* Define the prototype for start_kernel here, rather than cluttering
H A Dbpf.h49 /* the following constraints used to prototype
56 /* the following constraints used to prototype bpf_memcmp() and other
73 /* eBPF function prototype used by verifier to allow BPF_CALLs from eBPF programs
100 /* return eBPF function prototype for verification */
H A Dtracepoint.h123 * The reason for this is to handle the "void" prototype. If a tracepoint
124 * has a "void" prototype, then it is invalid to declare a function
318 * The need for the DECLARE_TRACE_NOARGS() is to handle the prototype
319 * (void). "void" is a special value in a function prototype and can
321 * macro adds a data element at the beginning of the prototype,
323 * "(void *data, void)". The second prototype is invalid.
325 * DECLARE_TRACE_NOARGS() passes "void" as the tracepoint prototype
326 * and "void *__data" as the callback prototype.
329 * "void *__data, proto" as the callback prototype.
372 * * prototype, declare it via TP_PROTO():
H A Dof_irq.h72 * 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.h576 * prototype for that function and accessor functions.
/linux-4.1.27/include/acpi/platform/
H A Daclinux.h105 #define ACPI_EXTERNAL_RETURN_STATUS(prototype) \
106 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);}
107 #define ACPI_EXTERNAL_RETURN_OK(prototype) \
108 static ACPI_INLINE prototype {return(AE_OK);}
109 #define ACPI_EXTERNAL_RETURN_VOID(prototype) \
110 static ACPI_INLINE prototype {return;}
111 #define ACPI_EXTERNAL_RETURN_UINT32(prototype) \
112 static ACPI_INLINE prototype {return(0);}
113 #define ACPI_EXTERNAL_RETURN_PTR(prototype) \
114 static ACPI_INLINE prototype {return(NULL);}
/linux-4.1.27/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;
290 #define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
291 ACPI_EXTERNAL_RETURN_STATUS(prototype)
293 #define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
294 ACPI_EXTERNAL_RETURN_OK(prototype)
296 #define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
297 ACPI_EXTERNAL_RETURN_VOID(prototype)
300 #define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
301 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);}
303 #define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
304 static ACPI_INLINE prototype {return(AE_OK);}
306 #define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
307 static ACPI_INLINE prototype {return;}
319 #define ACPI_MSG_DEPENDENT_RETURN_VOID(prototype) \
320 prototype;
323 #define ACPI_MSG_DEPENDENT_RETURN_VOID(prototype) \
324 static ACPI_INLINE prototype {return;}
336 #define ACPI_DBG_DEPENDENT_RETURN_VOID(prototype) \
337 prototype;
340 #define ACPI_DBG_DEPENDENT_RETURN_VOID(prototype) \
341 static ACPI_INLINE prototype {return;}
353 #define ACPI_APP_DEPENDENT_RETURN_VOID(prototype) \
354 prototype;
357 #define ACPI_APP_DEPENDENT_RETURN_VOID(prototype) \
358 static ACPI_INLINE prototype {return;}
/linux-4.1.27/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.1.27/arch/sh/kernel/cpu/sh4a/
H A Dpinmux-shx3.c2 * SH-X3 prototype CPU pinmux
/linux-4.1.27/scripts/
H A Dkernel-doc268 my ($newsection, $newcontents, $prototype, $brcount, %source_map);
288 # 3 - scanning prototype.
1724 my ($prototype, $file) = @_;
2070 # takes a function prototype and the name of the current file being
2074 my $prototype = shift;
2078 $prototype =~ s/^static +//;
2079 $prototype =~ s/^extern +//;
2080 $prototype =~ s/^asmlinkage +//;
2081 $prototype =~ s/^inline +//;
2082 $prototype =~ s/^__inline__ +//;
2083 $prototype =~ s/^__inline +//;
2084 $prototype =~ s/^__always_inline +//;
2085 $prototype =~ s/^noinline +//;
2086 $prototype =~ s/__init +//;
2087 $prototype =~ s/__init_or_module +//;
2088 $prototype =~ s/__meminit +//;
2089 $prototype =~ s/__must_check +//;
2090 $prototype =~ s/__weak +//;
2091 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
2092 $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//;
2110 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
2118 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2119 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2120 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2121 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2122 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2123 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2124 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2125 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2126 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2127 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2128 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2129 $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2130 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2131 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2132 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2133 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2134 $prototype =~ m/^(\w+\s+\w+\s*\*\s*\w+\s*\*\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
2141 print STDERR "Warning(${file}:$.): cannot understand function prototype: '$prototype'\n";
2181 $prototype = "";
2191 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
2194 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
2197 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
2201 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
2206 "$prototype\n";
2208 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
2215 $prototype =~ s@[\r\n\t]+@ @gos; # strip newlines/CR's/tabs
2216 ## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
2217 if ($prototype =~ m/SYSCALL_DEFINE0/) {
2219 ## $prototype = "long sys_$1(void)";
2222 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
2223 if ($prototype =~ m/long (sys_.*?),/) {
2224 $prototype =~ s/,/\(/;
2226 $prototype =~ s/\)/\(void\)/;
2229 # now delete all of the odd-number commas in $prototype
2232 my $len = length($prototype);
2237 if (substr($prototype, $ix, 1) eq ',') {
2240 substr($prototype, $ix, 1) = ' ';
2256 $prototype .= $1;
2260 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
2261 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
2262 $prototype =~ s@^\s+@@gos; # strip leading spaces
2263 if ($prototype =~ /SYSCALL_DEFINE/) {
2266 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
2267 $prototype =~ /DEFINE_SINGLE_EVENT/)
2271 dump_function($prototype, $file);
2292 $prototype .= $1 . $2;
2296 dump_declaration($prototype, $file);
2302 $prototype .= $x;
2468 $prototype = "";
2471 # print STDERR "end of doc comment, looking for prototype\n";
2497 } elsif ($state == 3) { # scanning for function '{' (end of prototype)
2515 $prototype = "";
2533 $prototype = "";
/linux-4.1.27/arch/x86/kernel/
H A Di386_ksyms_32.c14 * Note, this is a prototype to get at the symbol for
/linux-4.1.27/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.1.27/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.1.27/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.1.27/drivers/net/ethernet/intel/i40e/
H A Di40e_alloc.h45 /* prototype for functions used for dynamic memory allocation */
H A Di40e_prototype.h264 /* prototype for functions used for NVM access */
288 /* prototype for functions used for SW locks */
/linux-4.1.27/drivers/net/ethernet/intel/i40evf/
H A Di40e_alloc.h45 /* prototype for functions used for dynamic memory allocation */
H A Di40e_prototype.h73 /* prototype for functions used for SW locks */
/linux-4.1.27/drivers/staging/sm750fb/
H A Dddk750_dvi.h47 /* dvi functions prototype */
H A Dddk750_sii164.h16 /* Silicon Image SiI164 chip prototype */
/linux-4.1.27/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.1.27/drivers/staging/rtl8192e/rtl8192e/
H A Drtl_dm.h258 /*--------------------------Exported Function prototype---------------------*/
259 /*--------------------------Exported Function prototype---------------------*/
H A Drtl_dm.c81 /*---------------------Define local function prototype-----------------------*/
127 /*---------------------Define local function prototype-----------------------*/
135 /*---------------------------Define function prototype------------------------*/
2909 /*---------------------------Define function prototype------------------------*/ dm_init_dynamic_txpower()
H A Dr8192E_phy.c47 /*************************Define local function prototype**********************/
/linux-4.1.27/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------------------------*/
3006 /*---------------------------Define function prototype------------------------*/
3125 /*---------------------------Define function prototype------------------------*/
H A Dr8192U_core.c872 /* The prototype of rx_isr has changed since one version of Linux Kernel */ rtl8192_rx_isr()
/linux-4.1.27/drivers/staging/rtl8188eu/include/
H A DHal8188EPhyCfg.h197 /*--------------------------Exported Function prototype---------------------*/
222 /*--------------------------Exported Function prototype---------------------*/
/linux-4.1.27/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.1.27/arch/um/os-Linux/
H A Duser_syms.c35 /* Here, instead, I can provide a fake prototype. Yes, someone cares: genksyms.
/linux-4.1.27/include/linux/soc/ti/
H A Dknav_qmss.h55 /* Queue notifier callback prototype */
/linux-4.1.27/arch/m32r/mm/
H A Dinit.c45 * function prototype
/linux-4.1.27/drivers/s390/cio/
H A Ddevice.h109 /* Function prototype for internal request handling. */
/linux-4.1.27/arch/x86/include/asm/
H A Dolpc.h55 * C2. During the prototype phase, the following models (in chronological
/linux-4.1.27/arch/sparc/kernel/
H A Dapc.c41 * disable APC CPU standby support. Certain prototype
/linux-4.1.27/arch/metag/kernel/
H A Duser_gateway.S56 * Reference prototype:
/linux-4.1.27/include/xen/interface/
H A Dsched.h15 * The prototype for this hypercall is:
/linux-4.1.27/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.1.27/drivers/misc/mei/
H A Dclient.h91 * MEI input output function prototype
H A Dmei_dev.h646 * MEI interrupt functions prototype
/linux-4.1.27/drivers/staging/lustre/include/linux/libcfs/
H A Dlibcfs_kernelcomm.h79 /* prototype for callback function on kuc groups */
/linux-4.1.27/drivers/ata/
H A Dpata_opti.c16 * Also consulted the FreeBSD prototype driver by Kevin Day to try
/linux-4.1.27/fs/nilfs2/
H A Dmdt.h2 * mdt.h - NILFS meta data file prototype and definitions
H A Dnilfs.h198 * function prototype
/linux-4.1.27/arch/sh/drivers/dma/
H A Ddmabrg.c54 * handler prototype: void brgirqhandler(void *data)
/linux-4.1.27/arch/frv/include/asm/
H A Delf.h48 #define EF_FRV_CPU_TOMCAT 0x04000000 /* Tomcat, FR500 prototype */
/linux-4.1.27/arch/hexagon/include/asm/
H A Dcacheflush.h68 * in the cache to confuse things. The prototype Hexagon Virtual Machine
/linux-4.1.27/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.1.27/drivers/staging/comedi/drivers/
H A D8255.c204 * If the optional I/O call-back function is provided, its prototype is of
240 * If the optional I/O call-back function is provided, its prototype is of
/linux-4.1.27/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.1.27/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.1.27/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.1.27/drivers/scsi/dpt/
H A Dosd_util.h224 #include "novpass.h" /* For DPT_Bswapl() prototype */
/linux-4.1.27/drivers/scsi/sym53c8xx_2/
H A Dsym_fw.h123 * We need this for function prototype declarations just below.
/linux-4.1.27/drivers/net/ethernet/brocade/bna/
H A Dbfa_defs.h62 u8 prototype; member in struct:bfa_adapter_attr
H A Dbfi.h330 BFI_ADAPTER_PROTO = 0x100000, /*!< prototype adapaters */
H A Dbfa_ioc.c2794 ad_attr->prototype = 1; bfa_ioc_get_adapter_attr()
2796 ad_attr->prototype = 0; bfa_ioc_get_adapter_attr()
/linux-4.1.27/arch/mips/include/asm/
H A Dmips-cm.h30 * different way by defining a function with the same prototype except for the
H A Dpgtable.h619 * different prototype.
/linux-4.1.27/drivers/tty/serial/
H A Dicom.h276 /* prototype */
/linux-4.1.27/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.1.27/arch/m68k/kernel/
H A Dprocess.c123 * are finished with do_fork() prototype conversion.
/linux-4.1.27/arch/arm/include/asm/
H A Dkvm_host.h200 * Note that we slightly misuse the prototype by casing the __cpu_init_hyp_mode()
/linux-4.1.27/drivers/staging/rtl8723au/hal/
H A Drtl8723a_phycfg.c37 /*--------------------Define export function prototype-----------------------*/
39 /*--------------------Define export function prototype-----------------------*/
/linux-4.1.27/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.1.27/drivers/staging/skein/
H A Dskein_base.h32 /* below two prototype assume we are handed aligned data */
/linux-4.1.27/arch/arm/mach-omap2/
H A Dboard-omap3beagle.c321 * P7/P8 revisions(prototype): Camera EN beagle_twl_gpio_setup()
/linux-4.1.27/net/ipv4/
H A Dtcp_dctcp.c29 * Initial prototype from Abdul Kabbani, Masato Yasuda and Mohammad Alizadeh.
/linux-4.1.27/net/atm/
H A Dproc.c32 #include "common.h" /* atm_proc_init prototype */
/linux-4.1.27/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.1.27/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.1.27/drivers/scsi/mvsas/
H A Dmv_sas.h442 /******************** function prototype *********************/
/linux-4.1.27/drivers/net/ethernet/atheros/atlx/
H A Datl2.h79 /* function prototype */
/linux-4.1.27/drivers/char/tpm/
H A Dtpm2-cmd.c537 /* At least some prototype chips seem to give RC_TESTING error tpm2_start_selftest()
/linux-4.1.27/drivers/pinctrl/sh-pfc/
H A Dpfc-shx3.c2 * SH-X3 prototype CPU pinmux
/linux-4.1.27/kernel/bpf/
H A Dsyscall.c396 /* 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:
845 /* find function prototype */ check_call()
/linux-4.1.27/arch/mips/kernel/
H A Dgenex.S231 * This prototype is copied to ebase + n*IntCtl.VS and patched
/linux-4.1.27/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.1.27/arch/arm/mach-s3c64xx/
H A Dmach-crag6410.c753 /* force card-detected for prototype 0 */ crag6410_cfg_sdhci0()
/linux-4.1.27/arch/alpha/include/asm/
H A Dio.h273 /* These two have to be extern inline because of the extern prototype from
/linux-4.1.27/lib/
H A Ddecompress_unxz.c203 /* Not static to avoid a conflict with the prototype in the Linux headers. */ memmove()
/linux-4.1.27/fs/affs/
H A Dsuper.c313 int tmp_flags; /* fix remount prototype... */ affs_fill_super()
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4vf/
H A Dadapter.h531 * SGE function prototype declarations.
/linux-4.1.27/drivers/scsi/pm8001/
H A Dpm8001_sas.h616 /******************** function prototype *********************/
/linux-4.1.27/drivers/net/ethernet/atheros/atl1e/
H A Datl1e_hw.h31 /* function prototype */
/linux-4.1.27/drivers/usb/wusbcore/
H A Dsecurity.c214 /* FIXME: prototype for adding security */ wusb_dev_sec_add()
/linux-4.1.27/fs/ocfs2/
H A Docfs2.h93 * Need this prototype here instead of in uptodate.h because journal.h
/linux-4.1.27/include/linux/sunrpc/
H A Dsvc.h23 * This is the RPC server thread function prototype
/linux-4.1.27/include/uapi/linux/genwqe/
H A Dgenwqe_card.h264 * This interface is a first prototype resulting from discussions we
/linux-4.1.27/arch/s390/pci/
H A Dpci.c7 * The System z PCI code is a rewrite from a prototype by
/linux-4.1.27/fs/cifs/
H A Dcifsglob.h1230 * This is the prototype for the mid receive function. This function is for
1245 * This is the prototype for the mid callback function. This is called once the
/linux-4.1.27/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.1.27/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.1.27/drivers/scsi/aacraid/
H A Dcommctrl.c41 #include <linux/delay.h> /* ssleep prototype */
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/
H A Dcl_object.c964 * Temporary prototype thing: mirror obd-devices into cl devices.
/linux-4.1.27/drivers/net/ethernet/atheros/atl1c/
H A Datl1c_hw.h37 /* function prototype */
/linux-4.1.27/drivers/media/dvb-frontends/
H A Ddib7000m.c1348 /* used with some prototype boards */
/linux-4.1.27/net/batman-adv/
H A Dsoft-interface.c629 * Returns 0 on success, -EINVAL if the specified prototype is not ETH_P_8021Q
H A Dtranslation-table.c2271 * @data_ptr: not used but definition required to satisfy the callback prototype
/linux-4.1.27/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.1.27/drivers/md/
H A Ddm-ioctl.c464 * prototype.
/linux-4.1.27/fs/xfs/
H A Dxfs_file.c1058 * point we can change the ->readdir prototype to include the xfs_file_readdir()
/linux-4.1.27/arch/powerpc/mm/
H A Dhash_utils_64.c1286 /* WARNING: This is called from hash_low_64.S, if you change this prototype,
/linux-4.1.27/drivers/usb/gadget/function/
H A Duvc_configfs.c1979 * @n: unused, this function's prototype must match @fun in __uvcg_iter_strm_cls
/linux-4.1.27/drivers/media/dvb-frontends/drx39xyj/
H A Ddrx_driver.h1113 * \brief Inner scan function prototype.
/linux-4.1.27/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.1.27/drivers/isdn/i4l/
H A Disdn_ppp.c2192 the (de)compressor. The API is a prototype version from PPP where only
/linux-4.1.27/fs/reiserfs/
H A Dinode.c1528 * evolved as the prototype did
/linux-4.1.27/net/core/
H A Dskbuff.c1704 * If its prototype is ever changed,

Completed in 3750 milliseconds