Home
last modified time | relevance | path

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

12345678910>>...20

/OK3568_Linux_fs/external/xserver/test/
H A Dlist.c43 int foo; member
215 struct foo { struct
217 struct foo *next; argument
224 struct foo foo; in test_nt_list_init() argument
226 foo.a = 10; in test_nt_list_init()
227 foo.b = 20; in test_nt_list_init()
228 nt_list_init(&foo, next); in test_nt_list_init()
230 assert(foo.a == 10); in test_nt_list_init()
231 assert(foo.b == 20); in test_nt_list_init()
232 assert(foo.next == NULL); in test_nt_list_init()
[all …]
/OK3568_Linux_fs/kernel/samples/trace_events/
H A Dtrace-events-sample.h231 TP_PROTO(const char *foo, int bar, const int *lst,
234 TP_ARGS(foo, bar, lst, string, mask),
237 __array( char, foo, 10 )
245 strlcpy(__entry->foo, foo, 10);
253 TP_printk("foo %s %d %s %s %s %s (%s)", __entry->foo, __entry->bar,
339 TP_PROTO(const char *foo, int bar),
341 TP_ARGS(foo, bar),
346 __string( foo, foo )
351 __assign_str(foo, foo);
355 TP_printk("foo %s %d", __get_str(foo), __entry->bar)
[all …]
/OK3568_Linux_fs/kernel/samples/kobject/
H A Dkset-example.c31 int foo; member
40 ssize_t (*show)(struct foo_obj *foo, struct foo_attribute *attr, char *buf);
41 ssize_t (*store)(struct foo_obj *foo, struct foo_attribute *attr, const char *buf, size_t count);
57 struct foo_obj *foo; in foo_attr_show() local
60 foo = to_foo_obj(kobj); in foo_attr_show()
65 return attribute->show(foo, attribute, buf); in foo_attr_show()
77 struct foo_obj *foo; in foo_attr_store() local
80 foo = to_foo_obj(kobj); in foo_attr_store()
85 return attribute->store(foo, attribute, buf, len); in foo_attr_store()
103 struct foo_obj *foo; in foo_release() local
[all …]
/OK3568_Linux_fs/kernel/Documentation/driver-api/driver-model/
H A Ddesign-patterns.rst24 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 …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-webserver/recipes-support/fcgiwrap/fcgiwrap/
H A D0001-Fix-implicit-fallthrough-warning.patch158 + int foo( void ) { return 0; }
159 + int bar( void ) __attribute__(($1("foo")));
162 + int foo( void ) __attribute__(($1(32)));
165 + void *foo(int a) __attribute__(($1(1)));
168 + inline __attribute__(($1)) int foo( void ) { return 0; }
171 + inline __attribute__(($1)) int foo( void ) { return 0; }
174 + int foo( void ) __attribute__(($1));
177 + int foo( void ) __attribute__(($1));
180 + int foo( void ) __attribute__((__constructor__(65535/2)));
183 + int foo( void ) __attribute__(($1));
[all …]
/OK3568_Linux_fs/u-boot/doc/uImage.FIT/
H A Doverlay-fdt-boot.txt18 Take a hypothetical board named 'foo' where there are different supported
36 data = /incbin/("./foo-reva.dtb");
41 data = /incbin/("./foo-revb.dtb");
46 data = /incbin/("./foo-reva-bar.dtb");
51 data = /incbin/("./foo-revb-bar.dtb");
56 data = /incbin/("./foo-revb-baz.dtb");
61 data = /incbin/("./foo-revb-bar-baz.dtb");
68 default = "foo-reva.dtb;
69 foo-reva.dtb {
73 foo-revb.dtb {
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/ftrace/test.d/instances/
H A Dinstance-event.tc7 rmdir foo 2>/dev/null
29 mkdir foo 2> /dev/null
30 rmdir foo 2> /dev/null
36 cat foo/trace 1> /dev/null 2>&1
42 echo 1 > foo/events/sched/sched_switch
69 mkdir foo
70 ls foo > /dev/null
71 rmdir foo
72 if [ -d foo ]; then
76 mkdir foo
[all …]
/OK3568_Linux_fs/kernel/lib/
H A Dtest_debug_virtual.c16 struct foo { struct
20 static struct foo *foo; variable
32 foo = kzalloc(sizeof(*foo), GFP_KERNEL); in test_debug_virtual_init()
33 if (!foo) in test_debug_virtual_init()
36 pa = virt_to_phys(foo); in test_debug_virtual_init()
37 va = foo; in test_debug_virtual_init()
46 kfree(foo); in test_debug_virtual_exit()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iterator/detail/
H A Dconfig_def.hpp62 no foo(T const&, ...);
65 char foo(T&, int);
77 enum { value = (sizeof(foo(*x,0)) == 1) };
97 struct foo
99 foo(T);
102 foo(foo<U> const& other) : p(other.p) { }
107 bool x = boost::is_convertible<foo<int const*>, foo<int*> >::value;
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/
H A Dcgroup_attach_override.c28 int drop_prog = -1, allow_prog = -1, foo = -1, bar = -1; in test_cgroup_attach_override() local
41 foo = test__join_cgroup(FOO); in test_cgroup_attach_override()
42 if (CHECK(foo < 0, "cgroup_join_foo", "cgroup setup failed\n")) in test_cgroup_attach_override()
45 if (CHECK(bpf_prog_attach(drop_prog, foo, BPF_CGROUP_INET_EGRESS, in test_cgroup_attach_override()
87 if (CHECK(bpf_prog_detach(foo, BPF_CGROUP_INET_EGRESS), in test_cgroup_attach_override()
111 if (CHECK(!bpf_prog_detach(foo, BPF_CGROUP_INET_EGRESS), in test_cgroup_attach_override()
116 if (CHECK(bpf_prog_attach(allow_prog, foo, BPF_CGROUP_INET_EGRESS, 0), in test_cgroup_attach_override()
132 if (CHECK(!bpf_prog_attach(allow_prog, foo, BPF_CGROUP_INET_EGRESS, in test_cgroup_attach_override()
138 if (CHECK(bpf_prog_attach(drop_prog, foo, BPF_CGROUP_INET_EGRESS, 0), in test_cgroup_attach_override()
144 close(foo); in test_cgroup_attach_override()
/OK3568_Linux_fs/buildroot/docs/manual/
H A Dadding-packages-linux-kernel-spec-infra.txt20 +foo+, create a new menu entry in the existing
27 02: bool "foo"
30 05: This is a comment that explains what foo kernel tool is.
32 07: http://foosoftware.org/foo/
44 +package/linux-tools/linux-tool-foo.mk.in+. It would basically look like:
49 03: # foo
53 07: LINUX_TOOLS += foo
58 12: $(TARGET_MAKE_ENV) $(MAKE) -C $(LINUX_DIR)/tools foo
74 On line 7, we register the Linux tool +foo+ to the list of available
79 +foo+ tool is selected.
[all …]
H A Dadding-packages-cargo.txt15 The +Config.in+ file of Cargo-based package 'foo' should contain:
19 02: bool "foo"
23 06: This is a comment that explains what foo is.
25 08: http://foosoftware.org/foo/
37 03: # foo
42 08: FOO_SOURCE = foo-$(FOO_VERSION).tar.gz
64 30: $(INSTALL) -D -m 0755 $(@D)/$(FOO_BIN_DIR)/foo \
65 31: $(TARGET_DIR)/usr/bin/foo
/OK3568_Linux_fs/kernel/tools/perf/Documentation/
H A Dcallchain-overhead-calculation.txt24 void foo(void) {
30 foo();
39 In this case 'foo' is a child of 'bar', and 'bar' is an immediate
40 child of 'main' so 'foo' also is a child of 'main'. In other words,
41 'main' is a parent of 'foo' and 'bar', and 'bar' is a parent of 'foo'.
43 Suppose all samples are recorded in 'foo' and 'bar' only. When it's
50 60.00% foo
52 --- foo
65 child functions (i.e. 'foo' and 'bar') are added to the parents to
87 60.00% 60.00% foo
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/busybox/busybox/
H A D0001-testsuite-use-www.example.org-for-wget-test-cases.patch26 mkdir foo
27 -busybox wget -q -O index.html -P foo http://www.google.com/
28 +busybox wget -q -O index.html -P foo http://www.example.org/
46 -busybox wget -q -O foo http://www.google.com/
47 +busybox wget -q -O foo http://www.example.org/
48 test -s foo
56 mkdir foo
57 -busybox wget -q -P foo http://www.google.com/
58 +busybox wget -q -P foo http://www.example.org/
59 test -s foo/index.html
/OK3568_Linux_fs/kernel/Documentation/admin-guide/
H A Dbootconfig.rst48 foo.bar.baz = value1
49 foo.bar.qux.quux = value2
53 foo.bar {
60 foo.bar { baz = value1; qux.quux = value2 }
71 foo = bar, baz
72 foo = qux # !ERROR! we can not re-define same key
77 foo = bar, baz
78 foo := qux
80 then, the ``qux`` is assigned to ``foo`` key. This is useful for
87 foo = bar, baz
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/
H A Dtest_global_data.c24 struct foo { struct
34 __type(value, struct foo); argument
52 static const struct foo struct0 = {
57 static struct foo struct1;
58 static const struct foo struct2;
59 static struct foo struct3 = {
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/libtinyxml/libtinyxml/
H A Dentity-encoding.patch53 + xml.Parse("<foo>foo&amp;#xa+bar</foo>");
56 + XmlTest( "Entity escaping", "<foo>foo&amp;#xa+bar</foo>", str.c_str() );
/OK3568_Linux_fs/kernel/net/netfilter/ipset/
H A Dip_set_hash_ipmac.c44 __be32 foo[2]; member
89 struct hash_ipmac4_elem e = { .ip = 0, { .foo[0] = 0, .foo[1] = 0 } }; in hash_ipmac4_kadt()
114 struct hash_ipmac4_elem e = { .ip = 0, { .foo[0] = 0, .foo[1] = 0 } }; in hash_ipmac4_uadt()
151 __be32 foo[2]; member
204 { .foo[0] = 0, .foo[1] = 0 } in hash_ipmac6_kadt()
232 { .foo[0] = 0, .foo[1] = 0 } in hash_ipmac6_uadt()
/OK3568_Linux_fs/yocto/meta-clang/
H A DREADME.md139 NOTE: Adding support following TARGET_VENDOR values: foo in
147 … TOPDIR/tmp-glibc/work/core2-64-foo-linux/compiler-rt/12.0.0-r0/recipe-sysroot-native/usr/bin/x86_…
150 … TOPDIR/tmp-glibc/work/core2-64-foo-linux/compiler-rt/12.0.0-r0/recipe-sysroot-native/usr/bin/x86_…
151 … TOPDIR/tmp-glibc/work/core2-64-foo-linux/compiler-rt/12.0.0-r0/recipe-sysroot-native/usr/bin/x86_…
152 CMake Error at TOPDIR/tmp-glibc/work/core2-64-foo-linux/compiler-rt/12.0.0-r0/recipe-sysroot-native…
155 …"TOPDIR/tmp-glibc/work/core2-64-foo-linux/compiler-rt/12.0.0-r0/recipe-sysroot-native/usr/bin/x86_…
161 …Change Dir: TOPDIR/tmp-glibc/work/core2-64-foo-linux/compiler-rt/12.0.0-r0/build/CMakeFiles/CMakeT…
/OK3568_Linux_fs/kernel/samples/bpf/
H A Dtest_cgrp2_sock2.sh20 mkdir -p /tmp/cgroupv2/foo
21 echo $$ >> /tmp/cgroupv2/foo/cgroup.procs
26 test_cgrp2_sock2 /tmp/cgroupv2/foo sock_flags_kern.o $1
31 if [ -d /tmp/cgroupv2/foo ]; then
32 test_cgrp2_sock -d /tmp/cgroupv2/foo
H A Dtcp_bpf.readme7 mkdir -p /tmp/cgroupv2/foo
9 echo $$ >> /tmp/cgroupv2/foo/cgroup.procs
11 Anything that runs under this shell belongs to the foo cgroupv2. To load
15 bpftool cgroup attach /tmp/cgroupv2/foo sock_ops pinned /sys/fs/bpf/tcp_prog
28 bpftool cgroup detach /tmp/cgroupv2/foo sock_ops pinned /sys/fs/bpf/tcp_prog
/OK3568_Linux_fs/kernel/
H A DREADME.md43 Signed-off-by: Fred Jones <fred.jones@foo.org>
51 Signed-off-by: Fred Jones <fred.jones@foo.org>
56 Signed-off-by: Joe Smith <joe.smith@foo.org>
69 Signed-off-by: Fred Jones <fred.jones@foo.org>
74 [joe: Resolved minor conflict in drivers/foo/bar.c ]
75 Signed-off-by: Joe Smith <joe.smith@foo.org>
93 Signed-off-by: Fred Jones <fred.jones@foo.org>
101 Signed-off-by: Fred Jones <fred.jones@foo.org>
105 https://git.kernel.org/pub/scm/linux/kernel/git/foo/bar.git test-branch)
107 Signed-off-by: Joe Smith <joe.smith@foo.org>
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/verifier/
H A Dhelper_value_access.c108 BPF_ALU64_IMM(BPF_ADD, BPF_REG_1, offsetof(struct test_val, foo)),
110 sizeof(struct test_val) - offsetof(struct test_val, foo)),
129 BPF_ALU64_IMM(BPF_ADD, BPF_REG_1, offsetof(struct test_val, foo)),
149 BPF_ALU64_IMM(BPF_ADD, BPF_REG_1, offsetof(struct test_val, foo)),
169 BPF_ALU64_IMM(BPF_ADD, BPF_REG_1, offsetof(struct test_val, foo)),
171 sizeof(struct test_val) - offsetof(struct test_val, foo) + 8),
191 BPF_ALU64_IMM(BPF_ADD, BPF_REG_1, offsetof(struct test_val, foo)),
212 BPF_ALU64_IMM(BPF_ADD, BPF_REG_1, offsetof(struct test_val, foo)),
233 BPF_MOV64_IMM(BPF_REG_3, offsetof(struct test_val, foo)),
236 sizeof(struct test_val) - offsetof(struct test_val, foo)),
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/ath/
H A Dath.h298 #define ATH_DBG_WARN(foo, arg...) WARN(foo, arg) argument
299 #define ATH_DBG_WARN_ON_ONCE(foo) WARN_ON_ONCE(foo) argument
311 #define ATH_DBG_WARN(foo, arg...) do {} while (0) argument
312 #define ATH_DBG_WARN_ON_ONCE(foo) ({ \ argument
313 int __ret_warn_once = !!(foo); \
/OK3568_Linux_fs/kernel/fs/gfs2/
H A Dmain.c34 static void gfs2_init_inode_once(void *foo) in gfs2_init_inode_once() argument
36 struct gfs2_inode *ip = foo; in gfs2_init_inode_once()
51 static void gfs2_init_glock_once(void *foo) in gfs2_init_glock_once() argument
53 struct gfs2_glock *gl = foo; in gfs2_init_glock_once()
63 static void gfs2_init_gl_aspace_once(void *foo) in gfs2_init_gl_aspace_once() argument
65 struct gfs2_glock *gl = foo; in gfs2_init_gl_aspace_once()

12345678910>>...20