Home
last modified time | relevance | path

Searched refs:foo (Results 1 – 179 of 179) sorted by relevance

/linux-4.1.27/samples/trace_events/
Dtrace-events-sample.h230 TP_PROTO(const char *foo, int bar, const int *lst,
233 TP_ARGS(foo, bar, lst, string, mask),
236 __array( char, foo, 10 )
244 strlcpy(__entry->foo, foo, 10);
252 TP_printk("foo %s %d %s %s %s %s (%s)", __entry->foo, __entry->bar,
338 TP_PROTO(const char *foo, int bar),
340 TP_ARGS(foo, bar),
345 __string( foo, foo )
350 __assign_str(foo, foo);
354 TP_printk("foo %s %d", __get_str(foo), __entry->bar)
[all …]
/linux-4.1.27/samples/kobject/
Dkset-example.c33 int foo; member
42 ssize_t (*show)(struct foo_obj *foo, struct foo_attribute *attr, char *buf);
43 ssize_t (*store)(struct foo_obj *foo, struct foo_attribute *attr, const char *buf, size_t count);
59 struct foo_obj *foo; in foo_attr_show() local
62 foo = to_foo_obj(kobj); in foo_attr_show()
67 return attribute->show(foo, attribute, buf); in foo_attr_show()
79 struct foo_obj *foo; in foo_attr_store() local
82 foo = to_foo_obj(kobj); in foo_attr_store()
87 return attribute->store(foo, attribute, buf, len); in foo_attr_store()
105 struct foo_obj *foo; in foo_release() local
[all …]
Dkobject-example.c23 static int foo; variable
33 return sprintf(buf, "%d\n", foo); in foo_show()
41 ret = kstrtoint(buf, 10, &foo); in foo_store()
50 __ATTR(foo, 0664, foo_show, foo_store);
/linux-4.1.27/Documentation/driver-model/
Ddesign-patterns.txt24 struct foo {
31 struct foo *foo;
33 foo = devm_kzalloc(dev, sizeof(*foo), GFP_KERNEL);
34 if (!foo)
36 spin_lock_init(&foo->lock);
40 This will create an instance of struct foo in memory every time probe() is
46 pass around a pointer to struct foo like this:
50 struct foo *foo = arg;
56 struct foo *foo;
59 ret = request_irq(irq, foo_handler, 0, "foo", foo);
[all …]
/linux-4.1.27/sound/oss/
Dpas2_pcm.c49 int foo, tmp; in pcm_set_speed() local
62 foo = ((PIT_TICK_RATE / 2) + (arg / 2)) / arg; in pcm_set_speed()
63 arg = ((PIT_TICK_RATE / 2) + (foo / 2)) / foo; in pcm_set_speed()
67 foo = (PIT_TICK_RATE + (arg / 2)) / arg; in pcm_set_speed()
68 arg = (PIT_TICK_RATE + (foo / 2)) / foo; in pcm_set_speed()
108 pas_write(foo & 0xff, 0x1388); in pcm_set_speed()
109 pas_write((foo >> 8) & 0xff, 0x1388); in pcm_set_speed()
Dpas2_mixer.c202 int foo; in pas_mixer_reset() local
204 for (foo = 0; foo < SOUND_MIXER_NRDEVICES; foo++) in pas_mixer_reset()
205 pas_mixer_set(foo, levels[foo]); in pas_mixer_reset()
Dpas2_card.c284 unsigned char board_id, foo; in detect_pas_hw() local
309 foo = board_id ^ 0xe0; in detect_pas_hw()
311 pas_write(foo, 0x0B8B); in detect_pas_hw()
312 foo = pas_read(0x0B8B); in detect_pas_hw()
315 if (board_id != foo) in detect_pas_hw()
/linux-4.1.27/arch/ia64/scripts/
Dcheck-text-align.S1 .proc foo label
3 foo: .save rp, r2 label
6 .endp foo
/linux-4.1.27/fs/gfs2/
Dmain.c37 static void gfs2_init_inode_once(void *foo) in gfs2_init_inode_once() argument
39 struct gfs2_inode *ip = foo; in gfs2_init_inode_once()
48 static void gfs2_init_glock_once(void *foo) in gfs2_init_glock_once() argument
50 struct gfs2_glock *gl = foo; in gfs2_init_glock_once()
61 static void gfs2_init_gl_aspace_once(void *foo) in gfs2_init_gl_aspace_once() argument
63 struct gfs2_glock *gl = foo; in gfs2_init_gl_aspace_once()
/linux-4.1.27/drivers/scsi/
Dt128.c333 void __iomem *foo = base + T_CONTROL_REG_OFFSET; local
334 tmp = readb(foo);
335 writeb(tmp | T_CR_CT, foo);
336 writeb(tmp, foo);
379 void __iomem *foo = base + T_CONTROL_REG_OFFSET; local
380 tmp = readb(foo);
381 writeb(tmp | T_CR_CT, foo);
382 writeb(tmp, foo);
DNCR5380.c1727 int foo; in NCR5380_transfer_dma() local
1890 foo = NCR5380_pread(instance, d, c); in NCR5380_transfer_dma()
1896 if (!(foo = NCR5380_pread(instance, d, c - diff))) { in NCR5380_transfer_dma()
1929 foo = NCR5380_pwrite(instance, d, c); in NCR5380_transfer_dma()
1933 if (!(foo = NCR5380_pwrite(instance, d, c))) { in NCR5380_transfer_dma()
1978 return foo; in NCR5380_transfer_dma()
Dqla1280.c403 #define ia64_platform_is(foo) (!strcmp(x, platform_name)) argument
/linux-4.1.27/drivers/net/wireless/ath/
Dath.h297 #define ATH_DBG_WARN(foo, arg...) WARN(foo, arg) argument
298 #define ATH_DBG_WARN_ON_ONCE(foo) WARN_ON_ONCE(foo) argument
310 #define ATH_DBG_WARN(foo, arg...) do {} while (0) argument
311 #define ATH_DBG_WARN_ON_ONCE(foo) ({ \ argument
312 int __ret_warn_once = !!(foo); \
/linux-4.1.27/Documentation/devicetree/
Doverlay-notes.txt19 Lets take an example where we have a foo board with the following base tree
22 ---- foo.dts -----------------------------------------------------------------
25 compatible = "corp,foo";
37 ---- foo.dts -----------------------------------------------------------------
58 result in foo+bar.dts
60 ---- foo+bar.dts -------------------------------------------------------------
63 compatible = "corp,foo";
81 ---- foo+bar.dts -------------------------------------------------------------
/linux-4.1.27/arch/x86/um/
Dbugs_32.c35 unsigned long foo = 0; in arch_check_bugs() local
36 __asm__ __volatile__("cmovz %0, %1" : "=r" (foo) : "0" (foo)); in arch_check_bugs()
Duser-offsets.c31 void foo(void) in foo() function
Dsignal.c95 env[5] = fxsave->foo; in convert_fxsr_to_user()
132 fxsave->foo = env[5]; in convert_fxsr_from_user()
/linux-4.1.27/net/netfilter/ipset/
Dip_set_hash_mac.c38 __be32 foo[2]; member
80 struct hash_mac4_elem e = { { .foo[0] = 0, .foo[1] = 0 } }; in hash_mac4_kadt()
102 struct hash_mac4_elem e = { { .foo[0] = 0, .foo[1] = 0 } }; in hash_mac4_uadt()
/linux-4.1.27/drivers/staging/wlan-ng/
Dp80211conv.c115 int foo; in skb_ether_to_p80211() local
210 foo = wep_encrypt(wlandev, skb->data, p80211_wep->data, in skb_ether_to_p80211()
214 if (foo) { in skb_ether_to_p80211()
217 foo); in skb_ether_to_p80211()
289 int foo; in skb_p80211_to_ether() local
328 foo = wep_decrypt(wlandev, skb->data + payload_offset + 4, in skb_p80211_to_ether()
333 if (foo) { in skb_p80211_to_ether()
336 foo); in skb_p80211_to_ether()
/linux-4.1.27/Documentation/
Dpinctrl.txt72 .name = "foo",
84 pr_err("could not register foo pin driver\n");
363 group "foo":
365 pinctrl_get_group_pins(pctl, "foo", &gpio_range.pins, &gpio_range.npins);
932 PIN_MAP_MUX_GROUP("uart", PINCTRL_STATE_DEFAULT, "pinctrl-foo",
934 PIN_MAP_CONFIGS_PIN("uart", PINCTRL_STATE_DEFAULT, "pinctrl-foo",
936 PIN_MAP_MUX_GROUP("uart", PINCTRL_STATE_SLEEP, "pinctrl-foo",
938 PIN_MAP_CONFIGS_PIN("uart", PINCTRL_STATE_SLEEP, "pinctrl-foo",
988 .dev_name = "foo-spi.0",
991 .ctrl_dev_name = "pinctrl-foo",
[all …]
Ddynamic-debug-howto.txt251 If foo module is not built-in, foo.dyndbg will still be processed at
260 When "modprobe foo" is called, modprobe scans /proc/cmdline for
261 foo.params, strips "foo.", and passes them to the kernel along with
266 options foo dyndbg=+pt
267 options foo dyndbg # defaults to +p
269 2. # foo.dyndbg as given in boot args, "foo." is stripped and passed
270 foo.dyndbg=" func bar +p; func buz +mp"
273 modprobe foo dyndbg==pmf # override previous settings
280 In the foo.dyndbg="QUERY" form, the query must exclude "module foo".
281 "foo" is extracted from the param-name, and applied to each query in
DBUG-HUNTING172 > Put the bytes into a "foo.s" file like this:
175 > .globl foo
176 > foo:
179 > Compile it with "gcc -c -o foo.o foo.s" then look at the output of
180 > "objdump --disassemble foo.o".
Dclk.txt31 hardware-specific bits for the hypothetical "foo" hardware.
184 struct clk_foo *foo;
186 foo = to_clk_foo(hw);
188 ... perform magic on foo ...
Dbinfmt_misc.txt50 e.g. If your interp is set to /bin/foo and you run `blah` (which is
51 in /usr/local/bin), then the kernel will execute /bin/foo with
52 argv[] set to ["/bin/foo", "/usr/local/bin/blah", "blah"]. The
Djava.txt77 # FQCLASS=foo.bar.Test
79 # FQCLASSP=foo/bar
Dunaligned-memory-access.txt78 struct foo {
111 struct foo {
DCodingStyle249 global variables are a must. To call a global function "foo" is a
436 kfree(foo->bar);
437 kfree(foo);
440 The bug in this code is that on some exit paths "foo" is NULL. Normally the
838 compile-command: "gcc -DMAGIC_DEBUG_FLAG foo.c"
Datomic_ops.txt46 struct foo { atomic_t counter; };
49 struct foo *k;
Dkernel-doc-nano-HOWTO.txt323 * foo bar splat
DSubmittingPatches470 [lucky@maintainer.example.org: struct foo moved from foo.c to foo.h]
DDMA-API.txt434 int foo = dma_get_attr(DMA_ATTR_FOO, attrs);
436 if (foo)
Dkmemcheck.txt672 struct foo {
683 struct foo *x = kmalloc(sizeof *x);
Dmemory-barriers.txt1589 struct __attribute__((__packed__)) foo {
1594 struct foo foo1, foo2;
2332 call foo()
2333 foo() clobbers *waiter
Dkernel-parameters.txt586 The effects of cgroup_disable=foo are:
587 - foo isn't auto-mounted if you mount all cgroups in
589 - foo isn't visible as an individually mountable
/linux-4.1.27/Documentation/RCU/
Drcu_dereference.txt215 struct foo {
220 struct foo *gp1;
221 struct foo *gp2;
225 struct foo *p;
241 struct foo *p;
242 struct foo *q;
267 struct foo {
273 struct foo *gp1;
274 struct foo *gp2;
278 struct foo *p;
[all …]
DwhatisRCU.txt358 struct foo {
365 struct foo *gbl_foo;
368 * Create a new struct foo that is the same as the one currently
382 struct foo *new_fp;
383 struct foo *old_fp;
456 so the function is not permitted to block. The foo struct needs to
459 struct foo {
469 * Create a new struct foo that is the same as the one currently
483 struct foo *new_fp;
484 struct foo *old_fp;
[all …]
/linux-4.1.27/arch/x86/include/asm/
Duser_32.h50 long foo; member
62 long foo; member
Duser32.h13 u32 foo; member
26 int foo; member
Dprocessor.h324 u32 foo; /* FPU Operand Pointer Offset */ member
347 u32 foo; /* FPU Operand Offset */ member
375 u32 foo; member
/linux-4.1.27/Documentation/devicetree/bindings/power/
Dpower_domain.txt35 compatible = "foo,power-controller";
46 compatible = "foo,power-controller";
52 compatible = "foo,power-controller";
71 compatible = "foo,i-leak-current";
/linux-4.1.27/Documentation/video4linux/
Dv4l2-controls.txt54 struct foo_dev *foo;
58 v4l2_ctrl_handler_init(&foo->ctrl_handler, nr_of_controls);
76 foo->v4l2_dev.ctrl_handler = &foo->ctrl_handler;
78 Where foo->v4l2_dev is of type struct v4l2_device.
95 foo->sd.ctrl_handler = &foo->ctrl_handler;
97 Where foo->sd is of type struct v4l2_subdev.
116 v4l2_ctrl_handler_free(&foo->ctrl_handler);
160 v4l2_ctrl_handler_init(&foo->ctrl_handler, nr_of_controls);
161 v4l2_ctrl_new_std(&foo->ctrl_handler, &foo_ctrl_ops,
163 v4l2_ctrl_new_std(&foo->ctrl_handler, &foo_ctrl_ops,
[all …]
/linux-4.1.27/net/rds/
Drdma_transport.c41 #define RDS_CM_EVENT_STRING(foo) \ argument
42 [RDMA_CM_EVENT_##foo] = __stringify(RDMA_CM_EVENT_##foo)
Dib_cm.c43 #define RDS_IB_EVENT_STRING(foo) \ argument
44 [IB_EVENT_##foo] = __stringify(IB_EVENT_##foo)
Dib_send.c43 #define RDS_IB_WC_STATUS_STR(foo) \ argument
44 [IB_WC_##foo] = __stringify(IB_WC_##foo)
/linux-4.1.27/arch/x86/kernel/
Di387.c500 env->foo = fxsave->rdp; in convert_from_fxsr()
515 env->foo = fxsave->foo; in convert_from_fxsr()
538 fxsave->rdp = env->foo; in convert_to_fxsr()
543 fxsave->foo = env->foo; in convert_to_fxsr()
Dasm-offsets_32.c16 void foo(void);
18 void foo(void) in foo() function
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Dmaxim,max77686.txt41 foo@0 {
42 compatible = "bar,foo";
Dmaxim,max77802.txt39 foo@0 {
40 compatible = "bar,foo";
/linux-4.1.27/Documentation/target/
Dtcm_mod_builder.txt97 target:/mnt/sdb/lio-core-2.6.git# mkdir -p /sys/kernel/config/target/nab5000/iqn.foo/tpgt_1/lun/lun…
98 target:/mnt/sdb/lio-core-2.6.git# cd /sys/kernel/config/target/nab5000/iqn.foo/tpgt_1/lun/lun_0/
99 target:/sys/kernel/config/target/nab5000/iqn.foo/tpgt_1/lun/lun_0# ln -s /sys/kernel/config/target/…
101 target:/sys/kernel/config/target/nab5000/iqn.foo/tpgt_1/lun/lun_0# cd -
105 |-- iqn.foo
/linux-4.1.27/drivers/nubus/
Dnubus.c149 static inline long nubus_expand32(long foo) in nubus_expand32() argument
151 if(foo & 0x00800000) /* 24bit negative */ in nubus_expand32()
152 foo |= 0xFF000000; in nubus_expand32()
153 return foo; in nubus_expand32()
825 unsigned short foo, bar; in nubus_add_board() local
826 foo = nubus_get_rom(&rp, 2, bytelanes); in nubus_add_board()
828 printk("%04x %04x ", foo, bar); in nubus_add_board()
/linux-4.1.27/arch/ia64/kernel/
Dnr-irqs.c14 void foo(void) in foo() function
Dasm-offsets.c22 void foo(void) in foo() function
/linux-4.1.27/tools/perf/tests/
Dmmap-basic.c99 int foo = syscalls[i](); in test__basic_mmap() local
100 ++foo; in test__basic_mmap()
/linux-4.1.27/drivers/mtd/nand/
Dcs553x_nand.c157 unsigned char foo = readb(mmio_base + MM_NAND_STS); in cs553x_device_ready() local
159 return (foo & CS_NAND_STS_FLASH_RDY) && !(foo & CS_NAND_CTLR_BUSY); in cs553x_device_ready()
/linux-4.1.27/kernel/
Dbounds.c15 void foo(void) in foo() function
DKconfig.locks2 # The ARCH_INLINE foo is necessary because select ignores "depends on"
/linux-4.1.27/arch/x86/um/shared/sysdep/
Dkernel-offsets.h15 void foo(void) in foo() function
/linux-4.1.27/include/uapi/linux/
Diso_fs.h105 char foo [ISODCL ( 1, 8)]; /* 733 */ member
114 char foo [ISODCL ( 1, 8)]; /* 733 */ member
/linux-4.1.27/arch/m32r/kernel/
Dasm-offsets.c4 int foo(void) in foo() function
/linux-4.1.27/arch/avr32/kernel/
Dasm-offsets.c12 void foo(void) in foo() function
/linux-4.1.27/Documentation/power/
Druntime_pm.txt847 foo_read_or_write(struct foo_priv *foo, void *data)
849 lock(&foo->private_lock);
850 add_request_to_io_queue(foo, data);
851 if (foo->num_pending_requests++ == 0)
852 pm_runtime_get(&foo->dev);
853 if (!foo->is_suspended)
854 foo_process_next_request(foo);
855 unlock(&foo->private_lock);
858 foo_io_completion(struct foo_priv *foo, void *req)
860 lock(&foo->private_lock);
[all …]
/linux-4.1.27/security/integrity/
Diint.c150 static void init_once(void *foo) in init_once() argument
152 struct integrity_iint_cache *iint = foo; in init_once()
/linux-4.1.27/tools/testing/ktest/examples/
Dtest.conf6 MACHINE = foo
/linux-4.1.27/Documentation/filesystems/
Dbefs.txt50 Assuming that your kernel source is in /foo/bar/linux and the patchfile
53 cd /foo/bar/linux
68 cd /foo/bar/linux
Dceph.txt56 .snap/foo' and 'rmdir .snap/foo'.
59 files and bytes. That is, a 'getfattr -d foo' on any directory in the
Dinotify.txt41 - There would be no way to get event ordering. Events on file foo and
Dsysfs.txt106 static DEVICE_ATTR(foo, S_IWUSR | S_IRUGO, show_foo, store_foo);
112 .name = "foo",
Dext4.txt314 fd = open("foo.new")/write(fd,..)/close(fd)/
315 rename("foo.new", "foo"), or worse yet,
316 fd = open("foo", O_TRUNC)/write(fd,..)/close(fd).
Dseq_file.txt265 p->foo = bar; /* initialize my stuff */
Dhpfs.txt56 'cat FOO', 'cat Foo', 'cat foo' or 'cat F*' but not 'cat f*'. Note, that you
/linux-4.1.27/Documentation/kbuild/
Dmodules.txt139 Example (The module foo.ko, consist of bar.o and baz.o):
142 make -C $KDIR M=$PWD foo.ko
291 file. For example, if you wanted to build two modules, foo.ko
294 obj-m := foo.o bar.o
295 foo-y := <foo_srcs>
480 If you have two modules, foo.ko and bar.ko, where
481 foo.ko needs symbols from bar.ko, you can use a
486 ./foo/ <= contains foo.ko
492 obj-y := foo/ bar/
506 compilation of bar.ko to the directory where foo.ko is
Dmakefiles.txt133 obj-y += foo.o
136 foo.o. foo.o will be built from foo.c or foo.S.
138 If foo.o shall be built as a module, the variable obj-m is used.
142 obj-$(CONFIG_FOO) += foo.o
Dkconfig-language.txt91 bool "foo" if BAR
95 bool "foo"
/linux-4.1.27/arch/sparc/kernel/
Dasm-offsets.c46 int foo(void) in foo() function
/linux-4.1.27/arch/cris/boot/rescue/
Drescue_v32.lds37 /* Get rid of stuff from EXPORT_SYMBOL(foo). */
/linux-4.1.27/tools/build/
DBuild.include17 # Name of target with a '.' as filename prefix. foo/bar.o => foo/.bar.o
/linux-4.1.27/arch/alpha/kernel/
Dasm-offsets.c14 void foo(void) in foo() function
/linux-4.1.27/Documentation/gpio/
Dboard.txt28 compatible = "acme,foo";
127 .dev_id = "foo.0",
141 The driver controlling "foo.0" will then be able to obtain its GPIOs as follows:
/linux-4.1.27/Documentation/networking/
Ddns_resolver.txt58 To direct a query for query type 'foo', a line of the following should be added
61 create dns_resolver foo:* * /usr/sbin/dns.foo %k
Dfilter.txt343 The above example code can be placed into a file (here called "foo"), and
348 $ ./bpf_asm foo
353 $ ./bpf_asm -c foo
389 > load pcap foo.pcap
738 bpf_call foo
739 bpf_mov R7, R0 /* save foo() return value */
761 callq foo
779 return foo(ctx, 2, 3, 4, 5) + bar(ctx, 6, 7, 8, 9);
782 In-kernel functions foo() and bar() with prototype: u64 (*)(u64 arg1, u64
792 bpf_call foo
[all …]
Dpacket_mmap.txt426 setsockopt(fd, SOL_PACKET, PACKET_RX_RING, &foo, sizeof(foo));
Dcan.txt872 foo@bar:~$ cat /proc/net/can/rcvlist_all
Dbonding.txt1382 To add a new bond foo:
1383 # echo +foo > /sys/class/net/bonding_masters
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-usb60 # echo "8086 10f5" > /sys/bus/usb/drivers/foo/new_id
64 # echo "0458 7045 0 0458 704c" > /sys/bus/usb/drivers/foo/new_id
69 # cat /sys/bus/usb/drivers/foo/new_id
97 # echo "046d c315" > /sys/bus/usb/drivers/foo/remove_id
Dsysfs-bus-pci11 # echo 0000:00:19.0 > /sys/bus/pci/drivers/foo/bind
24 # echo 0000:00:19.0 > /sys/bus/pci/drivers/foo/unbind
42 # echo "8086 10f5" > /sys/bus/pci/drivers/foo/new_id
58 # echo "8086 10f5" > /sys/bus/pci/drivers/foo/remove_id
Dsysfs-bus-rbd11 $ echo "192.168.0.1 name=admin rbd foo" > /sys/bus/rbd/add
/linux-4.1.27/fs/coda/
Dinode.c67 static void init_once(void *foo) in init_once() argument
69 struct coda_inode_info *ei = (struct coda_inode_info *) foo; in init_once()
/linux-4.1.27/arch/tile/kernel/
Dasm-offsets.c38 void foo(void) in foo() function
/linux-4.1.27/Documentation/ja_JP/
DSubmittingPatches359 [lucky@maintainer.example.org: struct foo moved from foo.c to foo.h]
/linux-4.1.27/Documentation/arm/
Dtcm.txt81 int __tcmfunc foo(int bar);
89 int __tcmdata foo;
92 int __tcmconst foo;
Dkernel_user_helpers.txt105 void foo()
/linux-4.1.27/tools/perf/Documentation/
Dperf-probe.txt185 With --filter "foo* | bar*", perf probe -V shows variables which start with "foo" or "bar".
186 …With --filter "!foo* & *bar", perf probe -V shows variables which don't start with "foo" and end w…
Dperf-stat.txt105 an empty cgroup (monitor all the time) using, e.g., -G foo,,bar. Cgroups must have
Dperf-record.txt187 an empty cgroup (monitor all the time) using, e.g., -G foo,,bar. Cgroups must have
/linux-4.1.27/fs/efs/
Dsuper.c87 static void init_once(void *foo) in init_once() argument
89 struct efs_inode_info *ei = (struct efs_inode_info *) foo; in init_once()
/linux-4.1.27/fs/fat/
Dcache.c38 static void init_once(void *foo) in init_once() argument
40 struct fat_cache *cache = (struct fat_cache *)foo; in init_once()
Dinode.c661 static void init_once(void *foo) in init_once() argument
663 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo; in init_once()
/linux-4.1.27/fs/jffs2/
Dsuper.c58 static void jffs2_i_init_once(void *foo) in jffs2_i_init_once() argument
60 struct jffs2_inode_info *f = foo; in jffs2_i_init_once()
/linux-4.1.27/scripts/
DKbuild.include12 # Name of target with a '.' as filename prefix. foo/bar.o => foo/.bar.o
99 # Usage: cflags-y += $(call as-option,-Wa$(comma)-isa=foo,)
260 # Usage: $(call if_changed_rule,foo)
/linux-4.1.27/Documentation/devicetree/bindings/mfd/
Dmfd.txt30 foo@1000 {
/linux-4.1.27/arch/x86/math-emu/
Dfpu_system.h78 #define operand_address (*(struct address *)&I387->soft.foo)
Dfpu_aux.c43 oaddr = (struct address *)&soft->foo; in finit_soft_fpu()
/linux-4.1.27/Documentation/zh_CN/filesystems/
Dsysfs.txt121 static DEVICE_ATTR(foo, S_IWUSR | S_IRUGO, show_foo, store_foo);
127 .name = "foo",
/linux-4.1.27/arch/frv/kernel/
Dasm-offsets.c33 void foo(void) in foo() function
/linux-4.1.27/fs/qnx4/
Dinode.c355 static void init_once(void *foo) in init_once() argument
357 struct qnx4_inode_info *ei = (struct qnx4_inode_info *) foo; in init_once()
/linux-4.1.27/drivers/usb/phy/
Dphy-fsl-usb.c227 void b_data_pulse_end(unsigned long foo) in b_data_pulse_end() argument
246 void b_vbus_pulse_end(unsigned long foo) in b_vbus_pulse_end() argument
259 void b_srp_end(unsigned long foo) in b_srp_end() argument
274 void a_wait_enum(unsigned long foo) in a_wait_enum() argument
/linux-4.1.27/arch/mips/cavium-octeon/
Dsetup.c1057 u32 *foo; in prom_free_prom_memory() local
1059 foo = &insn; in prom_free_prom_memory()
1062 prefetch(foo); in prom_free_prom_memory()
/linux-4.1.27/fs/squashfs/
Dsuper.c411 static void init_once(void *foo) in init_once() argument
413 struct squashfs_inode_info *ei = foo; in init_once()
/linux-4.1.27/fs/9p/
Dv9fs.c565 static void v9fs_inode_init_once(void *foo) in v9fs_inode_init_once() argument
567 struct v9fs_inode *v9inode = (struct v9fs_inode *)foo; in v9fs_inode_init_once()
/linux-4.1.27/arch/mn10300/kernel/
Dasm-offsets.c18 void foo(void) in foo() function
/linux-4.1.27/fs/proc/
Dinode.c87 static void init_once(void *foo) in init_once() argument
89 struct proc_inode *ei = (struct proc_inode *) foo; in init_once()
/linux-4.1.27/Documentation/device-mapper/
Dstatistics.txt171 Set the auxillary data string to "foo bar baz" (the escape for each
174 dmsetup message vol 0 @stats_set_aux 0 foo\\ bar\\ baz
Dlog-writes.txt110 md5sum /mnt/btrfs-test/foo
116 md5sum /mnt/btrfs-test/foo
/linux-4.1.27/Documentation/devicetree/bindings/gpio/
Dgpio.txt154 line-name = "foo-bar-gpio";
235 "foo",
242 are named "foo" and "bar".
/linux-4.1.27/Documentation/zh_CN/
DCodingStyle233 。称一个全局函数为“foo”是一个难以饶恕的错误。
662 compile-command: "gcc -DMAGIC_DEBUG_FLAG foo.c"
/linux-4.1.27/fs/ocfs2/dlmfs/
Ddlmfs.c331 static void dlmfs_init_once(void *foo) in dlmfs_init_once() argument
334 (struct dlmfs_inode_private *) foo; in dlmfs_init_once()
/linux-4.1.27/Documentation/zh_CN/arm/
Dkernel_user_helpers.txt118 void foo()
/linux-4.1.27/arch/c6x/kernel/
Dasm-offsets.c13 void foo(void) in foo() function
/linux-4.1.27/fs/bfs/
Dinode.c261 static void init_once(void *foo) in init_once() argument
263 struct bfs_inode_info *bi = foo; in init_once()
/linux-4.1.27/fs/adfs/
Dsuper.c262 static void init_once(void *foo) in init_once() argument
264 struct adfs_inode_info *ei = (struct adfs_inode_info *) foo; in init_once()
/linux-4.1.27/Documentation/i2c/
Dwriting-clients29 { "foo", my_id_for_foo },
38 .name = "foo",
56 although you can use MODULE_ALIAS (passing "foo" in this example) to add
239 When the kernel is booted, or when your foo driver module is inserted,
/linux-4.1.27/fs/affs/
Dsuper.c120 static void init_once(void *foo) in init_once() argument
122 struct affs_inode_info *ei = (struct affs_inode_info *) foo; in init_once()
/linux-4.1.27/drivers/net/ethernet/intel/i40e/
Di40e.h113 #define STRINGIFY(foo) #foo argument
/linux-4.1.27/drivers/hwmon/
Dadt7470.c183 u16 foo; in adt7470_read_word_data() local
184 foo = i2c_smbus_read_byte_data(client, reg); in adt7470_read_word_data()
185 foo |= ((u16)i2c_smbus_read_byte_data(client, reg + 1) << 8); in adt7470_read_word_data()
186 return foo; in adt7470_read_word_data()
Dadt7462.c240 u16 foo; in adt7462_read_word_data() local
241 foo = i2c_smbus_read_byte_data(client, reg); in adt7462_read_word_data()
242 foo |= ((u16)i2c_smbus_read_byte_data(client, reg + 1) << 8); in adt7462_read_word_data()
243 return foo; in adt7462_read_word_data()
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/
Dcfg80211.h223 struct pmkid foo[MAXPMKID - 1]; member
/linux-4.1.27/Documentation/sound/oss/
DREADME.ymfsb64 % mpg123 -r 21739 foo.mp3
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dpinctrl-bindings.txt214 foo {
215 group = "foo-group";
/linux-4.1.27/fs/qnx6/
Dinode.c615 static void init_once(void *foo) in init_once() argument
617 struct qnx6_inode_info *ei = (struct qnx6_inode_info *) foo; in init_once()
/linux-4.1.27/fs/hpfs/
Dsuper.c226 static void init_once(void *foo) in init_once() argument
228 struct hpfs_inode_info *ei = (struct hpfs_inode_info *) foo; in init_once()
/linux-4.1.27/drivers/of/unittest-data/
Dtests-overlay.dtsi216 property-foo = "bar";
/linux-4.1.27/drivers/media/usb/pvrusb2/
Dpvrusb2-context.c162 static int pvr2_context_thread_func(void *foo) in pvr2_context_thread_func() argument
/linux-4.1.27/fs/minix/
Dinode.c82 static void init_once(void *foo) in init_once() argument
84 struct minix_inode_info *ei = (struct minix_inode_info *) foo; in init_once()
/linux-4.1.27/fs/befs/
Dlinuxvfs.c296 static void init_once(void *foo) in init_once() argument
298 struct befs_inode_info *bi = (struct befs_inode_info *) foo; in init_once()
/linux-4.1.27/fs/ceph/
Dsuper.c615 static void ceph_inode_init_once(void *foo) in ceph_inode_init_once() argument
617 struct ceph_inode_info *ci = foo; in ceph_inode_init_once()
/linux-4.1.27/Documentation/sound/alsa/
DCMIPCI.txt115 % aplay -Dhw:0,2 foo.wav
119 % aplay -Dspdif foo.wav
DALSA-Configuration.txt152 aplaymidi -p 64:0 foo.mid
/linux-4.1.27/fs/jfs/
Dsuper.c883 static void init_once(void *foo) in init_once() argument
885 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo; in init_once()
/linux-4.1.27/scripts/basic/
D.fixdep.cmd9 $(wildcard include/config/foo.h) \
/linux-4.1.27/fs/exofs/
Dsuper.c183 static void exofs_init_once(void *foo) in exofs_init_once() argument
185 struct exofs_i_info *oi = foo; in exofs_init_once()
/linux-4.1.27/fs/afs/
Dsuper.c33 static void afs_i_init_once(void *foo);
/linux-4.1.27/arch/powerpc/
DMakefile159 asinstr := $(call as-instr,lis 9$(comma)foo@high,-DHAVE_AS_ATHIGH=1)
/linux-4.1.27/fs/hugetlbfs/
Dinode.c693 static void init_once(void *foo) in init_once() argument
695 struct hugetlbfs_inode_info *ei = (struct hugetlbfs_inode_info *)foo; in init_once()
/linux-4.1.27/Documentation/s390/
D3270.txt264 echo -n pf24="mkdir foo; cd foo" > /proc/tty/driver/tty3270
/linux-4.1.27/fs/ncpfs/
Dinode.c72 static void init_once(void *foo) in init_once() argument
74 struct ncp_inode_info *ei = (struct ncp_inode_info *) foo; in init_once()
/linux-4.1.27/drivers/thermal/
Dintel_powerclamp.c265 static void noop_timer(unsigned long foo) in noop_timer() argument
/linux-4.1.27/Documentation/trace/
Dftrace-design.txt57 For example, if the function foo() calls bar(), when the bar() function calls
59 "frompc" - the address bar() will use to return to foo()
Dftrace.txt2671 # mkdir instances/foo
2672 # ls instances/foo
2694 # mkdir instances/foo
2698 # echo 1000 > instances/foo/buffer_size_kb
2701 # echo 1 > instances/foo/events/sched/sched_wakeup/enable
2702 # echo 1 > instances/foo/events/sched/sched_wakeup_new/enable
2703 # echo 1 > instances/foo/events/sched/sched_switch/enable
2721 # cat instances/foo/trace_pipe
2774 the function tracing. The foo instance displays wakeups and task
2779 # rmdir instances/foo
/linux-4.1.27/fs/f2fs/
Dsuper.c251 static void init_once(void *foo) in init_once() argument
253 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo; in init_once()
/linux-4.1.27/fs/fuse/
Dinode.c1190 static void fuse_inode_init_once(void *foo) in fuse_inode_init_once() argument
1192 struct inode *inode = foo; in fuse_inode_init_once()
/linux-4.1.27/fs/isofs/
Dinode.c85 static void init_once(void *foo) in init_once() argument
87 struct iso_inode_info *ei = foo; in init_once()
/linux-4.1.27/drivers/staging/olpc_dcon/
Dolpc_dcon.c556 unsigned long foo, void *bar) in dcon_reboot_notify() argument
/linux-4.1.27/fs/
Dblock_dev.c490 static void init_once(void *foo) in init_once() argument
492 struct bdev_inode *ei = (struct bdev_inode *) foo; in init_once()
Dinode.c370 static void init_once(void *foo) in init_once() argument
372 struct inode *inode = (struct inode *) foo; in init_once()
/linux-4.1.27/net/sunrpc/
Drpc_pipe.c1486 init_once(void *foo) in init_once() argument
1488 struct rpc_inode *rpci = (struct rpc_inode *) foo; in init_once()
/linux-4.1.27/ipc/
Dmqueue.c343 static void init_once(void *foo) in init_once() argument
345 struct mqueue_inode_info *p = (struct mqueue_inode_info *) foo; in init_once()
/linux-4.1.27/drivers/media/usb/usbvision/
Dusbvision-core.c1266 static int foo; in usbvision_compress_isochronous() local
1268 if (foo < 1) { in usbvision_compress_isochronous()
1271 ++foo; in usbvision_compress_isochronous()
/linux-4.1.27/fs/ext2/
Dsuper.c186 static void init_once(void *foo) in init_once() argument
188 struct ext2_inode_info *ei = (struct ext2_inode_info *) foo; in init_once()
/linux-4.1.27/fs/ufs/
Dsuper.c1445 static void init_once(void *foo) in init_once() argument
1447 struct ufs_inode_info *ei = (struct ufs_inode_info *) foo; in init_once()
/linux-4.1.27/drivers/net/ethernet/nvidia/
Dforcedeth.c3592 static irqreturn_t nv_nic_irq(int foo, void *data) in nv_nic_irq() argument
3625 static irqreturn_t nv_nic_irq_optimized(int foo, void *data) in nv_nic_irq_optimized() argument
3654 static irqreturn_t nv_nic_irq_tx(int foo, void *data) in nv_nic_irq_tx() argument
3766 static irqreturn_t nv_nic_irq_rx(int foo, void *data) in nv_nic_irq_rx() argument
3811 static irqreturn_t nv_nic_irq_other(int foo, void *data) in nv_nic_irq_other() argument
3878 static irqreturn_t nv_nic_irq_test(int foo, void *data) in nv_nic_irq_test() argument
3935 irqreturn_t (*handler)(int foo, void *data); in nv_request_irq()
/linux-4.1.27/fs/nfs/
Dinode.c1901 static void init_once(void *foo) in init_once() argument
1903 struct nfs_inode *nfsi = (struct nfs_inode *) foo; in init_once()
/linux-4.1.27/Documentation/arm/Marvell/
DREADME270 Business Unit) in a single mach-<foo> directory. The plat-orion/
/linux-4.1.27/drivers/input/serio/
Dhp_sdc.c304 static void hp_sdc_tasklet(unsigned long foo) in hp_sdc_tasklet() argument
/linux-4.1.27/fs/reiserfs/
Dsuper.c615 static void init_once(void *foo) in init_once() argument
617 struct reiserfs_inode_info *ei = (struct reiserfs_inode_info *)foo; in init_once()
/linux-4.1.27/fs/udf/
Dsuper.c169 static void init_once(void *foo) in init_once() argument
171 struct udf_inode_info *ei = (struct udf_inode_info *)foo; in init_once()
/linux-4.1.27/fs/ntfs/
Dsuper.c3055 static void ntfs_big_inode_init_once(void *foo) in ntfs_big_inode_init_once() argument
3057 ntfs_inode *ni = (ntfs_inode *)foo; in ntfs_big_inode_init_once()
/linux-4.1.27/drivers/atm/
Deni.c1459 static void foo(void)
1515 foo(); in eni_int()
/linux-4.1.27/Documentation/ioctl/
Dioctl-number.txt33 out of the kernel (e.g. 'int' or 'struct foo'). NOTE! Do NOT use
/linux-4.1.27/Documentation/security/
DSmack.txt645 rc = setxattr("/foo", "security.SMACK64", "Rubble", len, 0);
647 will set the Smack label of /foo to "Rubble" if the program has appropriate
Dcredentials.txt398 void foo(struct task_struct *t, struct foo_data *f)
/linux-4.1.27/fs/ext3/
Dsuper.c524 static void init_once(void *foo) in init_once() argument
526 struct ext3_inode_info *ei = (struct ext3_inode_info *) foo; in init_once()
/linux-4.1.27/mm/
Dshmem.c3085 static void shmem_init_inode(void *foo) in shmem_init_inode() argument
3087 struct shmem_inode_info *info = foo; in shmem_init_inode()
/linux-4.1.27/net/
Dsocket.c282 static void init_once(void *foo) in init_once() argument
284 struct socket_alloc *ei = (struct socket_alloc *)foo; in init_once()
/linux-4.1.27/Documentation/cgroups/
Dmemory.txt829 # mkdir foo
830 # cd foo
/linux-4.1.27/drivers/net/ethernet/natsemi/
Dns83820.c1401 static irqreturn_t ns83820_irq(int foo, void *data) argument
/linux-4.1.27/lib/
DKconfig.debug186 Disable this to suppress the "warning: 'foo' is deprecated
194 suppress the "warning: ignoring return value of 'foo', declared with
/linux-4.1.27/fs/ext4/
Dsuper.c941 static void init_once(void *foo) in init_once() argument
943 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo; in init_once()
/linux-4.1.27/Documentation/filesystems/cifs/
DREADME178 ln -s /mnt/foo bar
/linux-4.1.27/fs/btrfs/
Dinode.c9015 static void init_once(void *foo) in init_once() argument
9017 struct btrfs_inode *ei = (struct btrfs_inode *) foo; in init_once()