/linux-4.4.14/include/linux/ |
H A D | start_kernel.h | 7 /* Define the prototype for start_kernel here, rather than cluttering
|
H A D | bpf.h | 56 /* 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 D | tracepoint.h | 140 * 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 D | of_irq.h | 104 * 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 | 524 * prototype for that function and accessor functions.
|
/linux-4.4.14/include/acpi/platform/ |
H A D | aclinux.h | 109 #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 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; 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 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.4.14/arch/sh/kernel/cpu/sh4a/ |
H A D | pinmux-shx3.c | 2 * SH-X3 prototype CPU pinmux
|
/linux-4.4.14/scripts/ |
H A D | kernel-doc | 315 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 D | kernel-doc-xml-ref | 111 # We shouldn't add links to <funcdef> prototype
|
/linux-4.4.14/arch/x86/kernel/ |
H A D | i386_ksyms_32.c | 14 * Note, this is a prototype to get at the symbol for
|
/linux-4.4.14/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.4.14/arch/arm64/lib/ |
H A D | Makefile | 11 # the function prototype.
|
/linux-4.4.14/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.4.14/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.4.14/drivers/staging/rtl8192e/rtl8192e/ |
H A D | rtl_dm.h | 184 /*--------------------------Exported Function prototype---------------------*/ 185 /*--------------------------Exported Function prototype---------------------*/
|
H A D | rtl_dm.c | 164 /*---------------------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 D | r8192E_phy.c | 44 /*************************Define local function prototype**********************/
|
/linux-4.4.14/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------------------------*/ 3011 /*---------------------------Define function prototype------------------------*/ 3130 /*---------------------------Define function prototype------------------------*/
|
H A D | r8192U_core.c | 958 /* 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 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.4.14/drivers/staging/sm750fb/ |
H A D | ddk750_dvi.h | 44 /* dvi functions prototype */
|
H A D | ddk750_sii164.h | 15 /* Silicon Image SiI164 chip prototype */
|
/linux-4.4.14/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 | 278 /* 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 D | i40e_alloc.h | 45 /* prototype for functions used for dynamic memory allocation */
|
H A D | i40e_prototype.h | 86 /* prototype for functions used for SW locks */
|
/linux-4.4.14/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.4.14/drivers/staging/rtl8188eu/include/ |
H A D | Hal8188EPhyCfg.h | 197 /*--------------------------Exported Function prototype---------------------*/ 222 /*--------------------------Exported Function prototype---------------------*/
|
/linux-4.4.14/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.4.14/include/linux/soc/ti/ |
H A D | knav_qmss.h | 55 /* Queue notifier callback prototype */
|
/linux-4.4.14/arch/m32r/mm/ |
H A D | init.c | 45 * function prototype
|
/linux-4.4.14/drivers/s390/cio/ |
H A D | device.h | 109 /* Function prototype for internal request handling. */
|
/linux-4.4.14/arch/x86/include/asm/ |
H A D | olpc.h | 55 * C2. During the prototype phase, the following models (in chronological
|
/linux-4.4.14/include/xen/interface/ |
H A D | sched.h | 15 * The prototype for this hypercall is:
|
/linux-4.4.14/arch/sparc/kernel/ |
H A D | apc.c | 41 * disable APC CPU standby support. Certain prototype
|
/linux-4.4.14/arch/metag/kernel/ |
H A D | user_gateway.S | 56 * Reference prototype:
|
/linux-4.4.14/drivers/staging/comedi/drivers/ |
H A D | comedi_8255.c | 195 * 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 D | bpf_jit_asm.S | 125 * (prototype in linux/skbuff.h) 235 * (prototype in linux/filter.h)
|
/linux-4.4.14/drivers/staging/lustre/include/linux/libcfs/ |
H A D | libcfs_kernelcomm.h | 79 /* prototype for callback function on kuc groups */
|
/linux-4.4.14/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.4.14/drivers/ata/ |
H A D | pata_opti.c | 16 * Also consulted the FreeBSD prototype driver by Kevin Day to try
|
/linux-4.4.14/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.4.14/arch/sh/drivers/dma/ |
H A D | dmabrg.c | 54 * handler prototype: void brgirqhandler(void *data)
|
/linux-4.4.14/arch/frv/include/asm/ |
H A D | elf.h | 48 #define EF_FRV_CPU_TOMCAT 0x04000000 /* Tomcat, FR500 prototype */
|
/linux-4.4.14/arch/hexagon/include/asm/ |
H A D | cacheflush.h | 68 * in the cache to confuse things. The prototype Hexagon Virtual Machine
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/drivers/tty/serial/ |
H A D | icom.h | 276 /* prototype */
|
/linux-4.4.14/drivers/scsi/sym53c8xx_2/ |
H A D | sym_fw.h | 123 * We need this for function prototype declarations just below.
|
/linux-4.4.14/drivers/scsi/dpt/ |
H A D | osd_util.h | 224 #include "novpass.h" /* For DPT_Bswapl() prototype */
|
/linux-4.4.14/drivers/misc/mei/ |
H A D | client.h | 127 * MEI input output function prototype
|
H A D | mei_dev.h | 613 * MEI interrupt functions prototype
|
/linux-4.4.14/drivers/media/dvb-core/ |
H A D | demux.h | 195 * 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 D | bfa_defs.h | 61 u8 prototype; member in struct:bfa_adapter_attr
|
H A D | bfi.h | 326 BFI_ADAPTER_PROTO = 0x100000, /*!< prototype adapaters */
|
H A D | bfa_ioc.c | 2778 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 D | report.c | 7 * Some code borrowed from https://github.com/xairy/kasan-prototype by
|
H A D | kasan.c | 7 * Some code borrowed from https://github.com/xairy/kasan-prototype by
|
/linux-4.4.14/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.4.14/arch/m68k/kernel/ |
H A D | process.c | 123 * are finished with do_fork() prototype conversion.
|
/linux-4.4.14/arch/arm/include/asm/ |
H A D | kvm_host.h | 201 * Note that we slightly misuse the prototype by casing the __cpu_init_hyp_mode()
|
/linux-4.4.14/drivers/staging/rtl8723au/hal/ |
H A D | rtl8723a_phycfg.c | 37 /*--------------------Define export function prototype-----------------------*/ 39 /*--------------------Define export function prototype-----------------------*/
|
/linux-4.4.14/drivers/staging/skein/ |
H A D | skein_base.h | 32 /* below two prototype assume we are handed aligned data */
|
/linux-4.4.14/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.4.14/net/atm/ |
H A D | proc.c | 32 #include "common.h" /* atm_proc_init prototype */
|
/linux-4.4.14/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.4.14/net/ipv4/ |
H A D | tcp_dctcp.c | 29 * Initial prototype from Abdul Kabbani, Masato Yasuda and Mohammad Alizadeh.
|
/linux-4.4.14/drivers/scsi/mvsas/ |
H A D | mv_sas.h | 442 /******************** function prototype *********************/
|
/linux-4.4.14/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.4.14/drivers/net/ethernet/atheros/atlx/ |
H A D | atl2.h | 79 /* function prototype */
|
/linux-4.4.14/drivers/pinctrl/sh-pfc/ |
H A D | pfc-shx3.c | 2 * SH-X3 prototype CPU pinmux
|
/linux-4.4.14/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.4.14/lib/ |
H A D | decompress_unxz.c | 203 /* Not static to avoid a conflict with the prototype in the Linux headers. */ memmove()
|
/linux-4.4.14/fs/affs/ |
H A D | super.c | 314 int tmp_flags; /* fix remount prototype... */ affs_fill_super()
|
/linux-4.4.14/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.4.14/arch/mips/include/asm/ |
H A D | mips-cm.h | 32 * different way by defining a function with the same prototype except for the
|
H A D | pgtable.h | 621 * different prototype.
|
/linux-4.4.14/arch/mips/kernel/ |
H A D | genex.S | 231 * This prototype is copied to ebase + n*IntCtl.VS and patched
|
/linux-4.4.14/arch/arm/mach-s3c64xx/ |
H A D | mach-crag6410.c | 757 /* force card-detected for prototype 0 */ crag6410_cfg_sdhci0()
|
/linux-4.4.14/drivers/usb/wusbcore/ |
H A D | security.c | 214 /* FIXME: prototype for adding security */ wusb_dev_sec_add()
|
/linux-4.4.14/drivers/scsi/pm8001/ |
H A D | pm8001_sas.h | 626 /******************** function prototype *********************/
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4vf/ |
H A D | adapter.h | 531 * SGE function prototype declarations.
|
/linux-4.4.14/drivers/net/ethernet/atheros/atl1e/ |
H A D | atl1e_hw.h | 31 /* function prototype */
|
/linux-4.4.14/drivers/char/tpm/ |
H A D | tpm2-cmd.c | 790 /* At least some prototype chips seem to give RC_TESTING error tpm2_start_selftest()
|
/linux-4.4.14/kernel/bpf/ |
H A D | syscall.c | 492 /* 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: 941 /* find function prototype */ check_call()
|
/linux-4.4.14/fs/ocfs2/ |
H A D | ocfs2.h | 93 * Need this prototype here instead of in uptodate.h because journal.h
|
/linux-4.4.14/include/uapi/linux/genwqe/ |
H A D | genwqe_card.h | 264 * This interface is a first prototype resulting from discussions we
|
/linux-4.4.14/arch/s390/pci/ |
H A D | pci.c | 7 * The System z PCI code is a rewrite from a prototype by
|
/linux-4.4.14/fs/cifs/ |
H A D | cifsglob.h | 1245 * 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 D | cl_object.c | 922 * Temporary prototype thing: mirror obd-devices into cl devices.
|
/linux-4.4.14/drivers/scsi/aacraid/ |
H A D | commctrl.c | 41 #include <linux/delay.h> /* ssleep prototype */
|
/linux-4.4.14/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.4.14/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.4.14/drivers/media/dvb-frontends/ |
H A D | dib7000m.c | 1348 /* used with some prototype boards */
|
/linux-4.4.14/drivers/net/ethernet/atheros/atl1c/ |
H A D | atl1c_hw.h | 37 /* function prototype */
|
/linux-4.4.14/net/batman-adv/ |
H A D | soft-interface.c | 663 * Returns 0 on success, -EINVAL if the specified prototype is not ETH_P_8021Q
|
H A D | translation-table.c | 2323 * @data_ptr: not used but definition required to satisfy the callback prototype
|
/linux-4.4.14/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.4.14/drivers/usb/gadget/function/ |
H A D | uvc_configfs.c | 1885 * @n: unused, this function's prototype must match @fun in __uvcg_iter_strm_cls
|
/linux-4.4.14/drivers/md/ |
H A D | dm-ioctl.c | 464 * prototype.
|
/linux-4.4.14/arch/powerpc/mm/ |
H A D | hash_utils_64.c | 1289 /* 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 D | drx_driver.h | 1113 * \brief Inner scan function prototype.
|
/linux-4.4.14/fs/xfs/ |
H A D | xfs_file.c | 1107 * point we can change the ->readdir prototype to include the xfs_file_readdir()
|
/linux-4.4.14/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.4.14/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.4.14/tools/perf/ |
H A D | builtin-trace.c | 12 * Initially based on the 'trace' prototype by Thomas Gleixner:
|
/linux-4.4.14/drivers/net/ethernet/sfc/ |
H A D | mcdi_pcol.h | 7188 /* 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 D | skbuff.c | 1656 * If its prototype is ever changed,
|
/linux-4.4.14/fs/reiserfs/ |
H A D | inode.c | 1528 * evolved as the prototype did
|