/linux-4.1.27/include/linux/ |
H A D | start_kernel.h | 7 /* Define the prototype for start_kernel here, rather than cluttering
|
H A D | bpf.h | 49 /* 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 D | tracepoint.h | 123 * 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 D | of_irq.h | 72 * implements it differently. However, the prototype is the same for all,
|
H A D | init.h | 23 * If the function has a prototype somewhere, you can also add 24 * __init between closing brace of the prototype and semicolon:
|
H A D | kprobes.h | 158 * execution at a specified entry with a matching prototype corresponding
|
H A D | mm.h | 576 * prototype for that function and accessor functions.
|
/linux-4.1.27/include/acpi/platform/ |
H A D | aclinux.h | 105 #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 D | acpixf.h | 94 #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 D | rtl8723a_rf.h | 42 /*--------------------------Exported Function prototype---------------------*/ 54 /*--------------------------Exported Function prototype---------------------*/
|
H A D | HalDMOutSrc8723A.h | 44 /* function prototype */
|
H A D | Hal8723APhyCfg.h | 106 /*--------------------------Exported Function prototype---------------------*/ 154 /*--------------------------Exported Function prototype---------------------*/
|
H A D | rtl8723a_dm.h | 129 /* function prototype */
|
/linux-4.1.27/arch/sh/kernel/cpu/sh4a/ |
H A D | pinmux-shx3.c | 2 * SH-X3 prototype CPU pinmux
|
/linux-4.1.27/scripts/ |
H A D | kernel-doc | 268 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 D | i386_ksyms_32.c | 14 * Note, this is a prototype to get at the symbol for
|
/linux-4.1.27/tools/perf/scripts/perl/Perf-Trace-Util/ |
H A D | Context.c | 46 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 D | brcms_trace_brcmsmac.h | 30 /* TPPROTO is the prototype of the function called by this tracepoint */ 34 * prototype.
|
/linux-4.1.27/arch/powerpc/xmon/ |
H A D | ansidecl.h | 41 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 D | i40e_alloc.h | 45 /* prototype for functions used for dynamic memory allocation */
|
H A D | i40e_prototype.h | 264 /* 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 D | i40e_alloc.h | 45 /* prototype for functions used for dynamic memory allocation */
|
H A D | i40e_prototype.h | 73 /* prototype for functions used for SW locks */
|
/linux-4.1.27/drivers/staging/sm750fb/ |
H A D | ddk750_dvi.h | 47 /* dvi functions prototype */
|
H A D | ddk750_sii164.h | 16 /* Silicon Image SiI164 chip prototype */
|
/linux-4.1.27/arch/powerpc/kernel/vdso32/ |
H A D | gettimeofday.S | 30 * 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 D | rtl_dm.h | 258 /*--------------------------Exported Function prototype---------------------*/ 259 /*--------------------------Exported Function prototype---------------------*/
|
H A D | rtl_dm.c | 81 /*---------------------Define local function prototype-----------------------*/ 127 /*---------------------Define local function prototype-----------------------*/ 135 /*---------------------------Define function prototype------------------------*/ 2909 /*---------------------------Define function prototype------------------------*/ dm_init_dynamic_txpower()
|
H A D | r8192E_phy.c | 47 /*************************Define local function prototype**********************/
|
/linux-4.1.27/drivers/staging/rtl8192u/ |
H A D | r8192U_dm.h | 214 /*--------------------------Exported Function prototype---------------------*/ 233 /*--------------------------Exported Function prototype---------------------*/
|
H A D | r8192U_dm.c | 52 /*--------------------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 D | r8192U_core.c | 872 /* 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 D | Hal8188EPhyCfg.h | 197 /*--------------------------Exported Function prototype---------------------*/ 222 /*--------------------------Exported Function prototype---------------------*/
|
/linux-4.1.27/arch/um/include/shared/ |
H A D | init.h | 20 * 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 D | user_syms.c | 35 /* Here, instead, I can provide a fake prototype. Yes, someone cares: genksyms.
|
/linux-4.1.27/include/linux/soc/ti/ |
H A D | knav_qmss.h | 55 /* Queue notifier callback prototype */
|
/linux-4.1.27/arch/m32r/mm/ |
H A D | init.c | 45 * function prototype
|
/linux-4.1.27/drivers/s390/cio/ |
H A D | device.h | 109 /* Function prototype for internal request handling. */
|
/linux-4.1.27/arch/x86/include/asm/ |
H A D | olpc.h | 55 * C2. During the prototype phase, the following models (in chronological
|
/linux-4.1.27/arch/sparc/kernel/ |
H A D | apc.c | 41 * disable APC CPU standby support. Certain prototype
|
/linux-4.1.27/arch/metag/kernel/ |
H A D | user_gateway.S | 56 * Reference prototype:
|
/linux-4.1.27/include/xen/interface/ |
H A D | sched.h | 15 * The prototype for this hypercall is:
|
/linux-4.1.27/drivers/media/pci/ngene/ |
H A D | ngene-i2c.c | 9 * support for new dual DVB-S2 card prototype
|
H A D | ngene-dvb.c | 9 * support for new dual DVB-S2 card prototype
|
H A D | ngene-cards.c | 9 * support for new dual DVB-S2 card prototype
|
H A D | ngene-core.c | 9 * support for new dual DVB-S2 card prototype
|
/linux-4.1.27/drivers/misc/mei/ |
H A D | client.h | 91 * MEI input output function prototype
|
H A D | mei_dev.h | 646 * MEI interrupt functions prototype
|
/linux-4.1.27/drivers/staging/lustre/include/linux/libcfs/ |
H A D | libcfs_kernelcomm.h | 79 /* prototype for callback function on kuc groups */
|
/linux-4.1.27/drivers/ata/ |
H A D | pata_opti.c | 16 * Also consulted the FreeBSD prototype driver by Kevin Day to try
|
/linux-4.1.27/fs/nilfs2/ |
H A D | mdt.h | 2 * mdt.h - NILFS meta data file prototype and definitions
|
H A D | nilfs.h | 198 * function prototype
|
/linux-4.1.27/arch/sh/drivers/dma/ |
H A D | dmabrg.c | 54 * handler prototype: void brgirqhandler(void *data)
|
/linux-4.1.27/arch/frv/include/asm/ |
H A D | elf.h | 48 #define EF_FRV_CPU_TOMCAT 0x04000000 /* Tomcat, FR500 prototype */
|
/linux-4.1.27/arch/hexagon/include/asm/ |
H A D | cacheflush.h | 68 * in the cache to confuse things. The prototype Hexagon Virtual Machine
|
/linux-4.1.27/arch/arm/mach-pxa/ |
H A D | am300epd.c | 14 * on the AM300 EPD prototype kit/development kit with an E-Ink 800x600
|
H A D | am200epd.c | 16 * on the AM200 EPD prototype kit/development kit with an E-Ink 800x600
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
H A D | 8255.c | 204 * 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 D | p80211types.h | 257 /* prototype template */ 264 /* prototype template w/ data item */
|
H A D | p80211mgmt.h | 220 /* 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 D | trace-events-sample.h | 68 * 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 D | pvrusb2-encoder.c | 136 /* 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 D | osd_util.h | 224 #include "novpass.h" /* For DPT_Bswapl() prototype */
|
/linux-4.1.27/drivers/scsi/sym53c8xx_2/ |
H A D | sym_fw.h | 123 * We need this for function prototype declarations just below.
|
/linux-4.1.27/drivers/net/ethernet/brocade/bna/ |
H A D | bfa_defs.h | 62 u8 prototype; member in struct:bfa_adapter_attr
|
H A D | bfi.h | 330 BFI_ADAPTER_PROTO = 0x100000, /*!< prototype adapaters */
|
H A D | bfa_ioc.c | 2794 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 D | mips-cm.h | 30 * different way by defining a function with the same prototype except for the
|
H A D | pgtable.h | 619 * different prototype.
|
/linux-4.1.27/drivers/tty/serial/ |
H A D | icom.h | 276 /* prototype */
|
/linux-4.1.27/include/net/ |
H A D | iw_handler.h | 130 * 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 D | process.c | 123 * are finished with do_fork() prototype conversion.
|
/linux-4.1.27/arch/arm/include/asm/ |
H A D | kvm_host.h | 200 * Note that we slightly misuse the prototype by casing the __cpu_init_hyp_mode()
|
/linux-4.1.27/drivers/staging/rtl8723au/hal/ |
H A D | rtl8723a_phycfg.c | 37 /*--------------------Define export function prototype-----------------------*/ 39 /*--------------------Define export function prototype-----------------------*/
|
/linux-4.1.27/drivers/net/ethernet/packetengines/ |
H A D | yellowfin.c | 39 #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 D | hamachi.c | 1442 } /* else Omit for prototype errata??? */ hamachi_rx()
|
/linux-4.1.27/drivers/staging/skein/ |
H A D | skein_base.h | 32 /* below two prototype assume we are handed aligned data */
|
/linux-4.1.27/arch/arm/mach-omap2/ |
H A D | board-omap3beagle.c | 321 * P7/P8 revisions(prototype): Camera EN beagle_twl_gpio_setup()
|
/linux-4.1.27/net/ipv4/ |
H A D | tcp_dctcp.c | 29 * Initial prototype from Abdul Kabbani, Masato Yasuda and Mohammad Alizadeh.
|
/linux-4.1.27/net/atm/ |
H A D | proc.c | 32 #include "common.h" /* atm_proc_init prototype */
|
/linux-4.1.27/net/sunrpc/auth_gss/ |
H A D | gss_mech_switch.c | 462 * Note this differs from the RFC 2744-specified prototype in that we don't
|
/linux-4.1.27/drivers/media/usb/b2c2/ |
H A D | flexcop-usb.c | 272 make sure prototype are/will be equal to pci */ flexcop_usb_read_ibi_reg()
|
/linux-4.1.27/drivers/scsi/mvsas/ |
H A D | mv_sas.h | 442 /******************** function prototype *********************/
|
/linux-4.1.27/drivers/net/ethernet/atheros/atlx/ |
H A D | atl2.h | 79 /* function prototype */
|
/linux-4.1.27/drivers/char/tpm/ |
H A D | tpm2-cmd.c | 537 /* At least some prototype chips seem to give RC_TESTING error tpm2_start_selftest()
|
/linux-4.1.27/drivers/pinctrl/sh-pfc/ |
H A D | pfc-shx3.c | 2 * SH-X3 prototype CPU pinmux
|
/linux-4.1.27/kernel/bpf/ |
H A D | syscall.c | 396 /* all functions that have prototype and verifier allowed fixup_bpf_calls()
|
H A D | verifier.c | 107 * 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 D | genex.S | 231 * This prototype is copied to ebase + n*IntCtl.VS and patched
|
/linux-4.1.27/arch/powerpc/include/asm/ |
H A D | pmac_feature.h | 26 * the prototype parameters (struct device_node* node, int value).
|
H A D | io.h | 98 * Those operate directly on a kernel virtual address. Note that the prototype
|
/linux-4.1.27/arch/arm/mach-s3c64xx/ |
H A D | mach-crag6410.c | 753 /* force card-detected for prototype 0 */ crag6410_cfg_sdhci0()
|
/linux-4.1.27/arch/alpha/include/asm/ |
H A D | io.h | 273 /* These two have to be extern inline because of the extern prototype from
|
/linux-4.1.27/lib/ |
H A D | decompress_unxz.c | 203 /* Not static to avoid a conflict with the prototype in the Linux headers. */ memmove()
|
/linux-4.1.27/fs/affs/ |
H A D | super.c | 313 int tmp_flags; /* fix remount prototype... */ affs_fill_super()
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4vf/ |
H A D | adapter.h | 531 * SGE function prototype declarations.
|
/linux-4.1.27/drivers/scsi/pm8001/ |
H A D | pm8001_sas.h | 616 /******************** function prototype *********************/
|
/linux-4.1.27/drivers/net/ethernet/atheros/atl1e/ |
H A D | atl1e_hw.h | 31 /* function prototype */
|
/linux-4.1.27/drivers/usb/wusbcore/ |
H A D | security.c | 214 /* FIXME: prototype for adding security */ wusb_dev_sec_add()
|
/linux-4.1.27/fs/ocfs2/ |
H A D | ocfs2.h | 93 * Need this prototype here instead of in uptodate.h because journal.h
|
/linux-4.1.27/include/linux/sunrpc/ |
H A D | svc.h | 23 * This is the RPC server thread function prototype
|
/linux-4.1.27/include/uapi/linux/genwqe/ |
H A D | genwqe_card.h | 264 * This interface is a first prototype resulting from discussions we
|
/linux-4.1.27/arch/s390/pci/ |
H A D | pci.c | 7 * The System z PCI code is a rewrite from a prototype by
|
/linux-4.1.27/fs/cifs/ |
H A D | cifsglob.h | 1230 * 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 D | ov534.c | 8 * Based on a prototype written by Mark Ferrell <majortrips@gmail.com>
|
H A D | ov534_9.c | 8 * Based on a prototype written by Mark Ferrell <majortrips@gmail.com>
|
/linux-4.1.27/drivers/scsi/bfa/ |
H A D | bfa_defs.h | 289 u8 prototype; member in struct:bfa_adapter_attr_s
|
H A D | bfa_svc.h | 342 * Callback prototype for unsolicited frame receive handler.
|
H A D | bfi.h | 430 BFI_ADAPTER_PROTO = 0x100000, /* prototype adapaters */
|
H A D | bfa_ioc.c | 2727 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 D | commctrl.c | 41 #include <linux/delay.h> /* ssleep prototype */
|
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/ |
H A D | cl_object.c | 964 * Temporary prototype thing: mirror obd-devices into cl devices.
|
/linux-4.1.27/drivers/net/ethernet/atheros/atl1c/ |
H A D | atl1c_hw.h | 37 /* function prototype */
|
/linux-4.1.27/drivers/media/dvb-frontends/ |
H A D | dib7000m.c | 1348 /* used with some prototype boards */
|
/linux-4.1.27/net/batman-adv/ |
H A D | soft-interface.c | 629 * Returns 0 on success, -EINVAL if the specified prototype is not ETH_P_8021Q
|
H A D | translation-table.c | 2271 * @data_ptr: not used but definition required to satisfy the callback prototype
|
/linux-4.1.27/Documentation/cdrom/ |
H A D | cdrom-standard.tex | 980 prototype and return values. 982 change the prototype a little. Remove entries listed in the first
|
/linux-4.1.27/drivers/md/ |
H A D | dm-ioctl.c | 464 * prototype.
|
/linux-4.1.27/fs/xfs/ |
H A D | xfs_file.c | 1058 * point we can change the ->readdir prototype to include the xfs_file_readdir()
|
/linux-4.1.27/arch/powerpc/mm/ |
H A D | hash_utils_64.c | 1286 /* WARNING: This is called from hash_low_64.S, if you change this prototype,
|
/linux-4.1.27/drivers/usb/gadget/function/ |
H A D | uvc_configfs.c | 1979 * @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 D | drx_driver.h | 1113 * \brief Inner scan function prototype.
|
/linux-4.1.27/drivers/usb/host/ |
H A D | xhci-ring.c | 1135 * 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 D | isdn_ppp.c | 2192 the (de)compressor. The API is a prototype version from PPP where only
|
/linux-4.1.27/fs/reiserfs/ |
H A D | inode.c | 1528 * evolved as the prototype did
|
/linux-4.1.27/net/core/ |
H A D | skbuff.c | 1704 * If its prototype is ever changed,
|