/linux-6.12.1/samples/kobject/ |
D | kobject-example.c | 17 * "foo", "baz", and "bar". If an integer is written to these files, it can be 22 static int baz; variable 52 * looking at the attribute for the "baz" and "bar" files. 59 if (strcmp(attr->attr.name, "baz") == 0) in b_show() 60 var = baz; in b_show() 75 if (strcmp(attr->attr.name, "baz") == 0) in b_store() 76 baz = var; in b_store() 83 __ATTR(baz, 0664, b_show, b_store);
|
D | kset-example.c | 18 * Then tree kobjects are created and assigned to this kset, "foo", "baz", 32 int baz; member 136 * looking at the attribute for the "baz" and "bar" files. 143 if (strcmp(attr->attr.name, "baz") == 0) in b_show() 144 var = foo_obj->baz; in b_show() 159 if (strcmp(attr->attr.name, "baz") == 0) in b_store() 160 foo_obj->baz = var; in b_store() 167 __ATTR(baz, 0664, b_show, b_store); 262 baz_obj = create_foo_obj("baz"); in example_init()
|
/linux-6.12.1/Documentation/translations/zh_TW/admin-guide/ |
D | bootconfig.rst | 46 foo.bar.baz = value1 52 baz = value1 58 foo.bar { baz = value1; qux.quux = value2 } 68 foo = bar, baz 73 foo = bar, baz 81 foo = bar, baz 84 這樣, ``foo`` 關鍵字就同時擁有了 ``bar`` , ``baz`` 和 ``qux`` 。 98 baz = value2
|
/linux-6.12.1/Documentation/translations/zh_CN/admin-guide/ |
D | bootconfig.rst | 46 foo.bar.baz = value1 52 baz = value1 58 foo.bar { baz = value1; qux.quux = value2 } 68 foo = bar, baz 73 foo = bar, baz 81 foo = bar, baz 84 这样, ``foo`` 关键字就同时拥有了 ``bar`` , ``baz`` 和 ``qux`` 。 98 baz = value2
|
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/ |
D | linked_list.c | 366 id = btf__add_decl_tag(btf, "contains:baz:a", 5, 0); in test_btf() 367 if (!ASSERT_EQ(id, 6, "btf__add_decl_tag contains:baz:a")) in test_btf() 369 id = btf__add_struct(btf, "baz", 16); in test_btf() 370 if (!ASSERT_EQ(id, 7, "btf__add_struct baz")) in test_btf() 373 if (!ASSERT_OK(err, "btf__add_field baz::a")) in test_btf() 656 id = btf__add_decl_tag(btf, "contains:baz:a", 7, 0); in test_btf() 657 if (!ASSERT_EQ(id, 8, "btf__add_decl_tag contains:baz:a")) in test_btf() 659 id = btf__add_struct(btf, "baz", 24); in test_btf() 660 if (!ASSERT_EQ(id, 9, "btf__add_struct baz")) in test_btf() 663 if (!ASSERT_OK(err, "btf__add_field baz:a")) in test_btf() [all …]
|
/linux-6.12.1/Documentation/admin-guide/ |
D | bootconfig.rst | 48 foo.bar.baz = value1 54 baz = value1 60 foo.bar { baz = value1; qux.quux = value2 } 71 foo = bar, baz 77 foo = bar, baz 87 foo = bar, baz 90 In this case, the key ``foo`` has ``bar``, ``baz`` and ``qux``. 105 baz = value2
|
/linux-6.12.1/tools/bootconfig/ |
D | test-bootconfig.sh | 117 key = bar, baz 125 xpass grep -q "baz" $OUTFILE 130 key = bar, baz 138 xfail grep -q "baz" $OUTFILE
|
/linux-6.12.1/tools/testing/selftests/bpf/progs/ |
D | test_global_func_args.c | 49 __noinline int baz(struct S **s) in baz() function 84 baz(&p); in test_cls()
|
D | test_global_func9.c | 45 __noinline int baz(volatile int *x) in baz() function 112 result |= baz(&global_data_y); in global_func9()
|
/linux-6.12.1/Documentation/kbuild/ |
D | kconfig-language.rst | 173 imply BAZ 175 config BAZ 176 tristate "baz" 182 FOO BAR BAZ's default choice for BAZ 197 Note: If the combination of FOO=y and BAZ=m causes a link error, 207 Note: If the feature provided by BAZ is highly desirable for FOO, 208 FOO should imply not only BAZ, but also its dependency BAR:: 213 imply BAZ
|
D | modules.rst | 122 Example (The module foo.ko, consist of bar.o and baz.o):: 125 make -C $KDIR M=$PWD baz.o
|
/linux-6.12.1/tools/perf/tests/ |
D | expr.c | 46 /* Union {foo, bar} against {bar,baz}. */ in test_ids_union() 50 TEST_ASSERT_EQUAL("ids__insert", ids__insert(ids2, strdup("baz")), 0); in test_ids_union() 136 expr__find_ids("FOO + BAR + BAZ + BOZO", "FOO", in test__expr() 140 TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "BAZ", &val_ptr)); in test__expr()
|
/linux-6.12.1/scripts/kconfig/ |
D | expr.h | 169 * config BAZ 170 * int "BAZ Value" 178 P_PROMPT, /* prompt "foo prompt" or "BAZ Value" */
|
/linux-6.12.1/tools/perf/Documentation/ |
D | perf-config.txt | 417 33.33% baz 421 and 'baz' to 50.00% for each, while 'absolute' would show their 460 --50.00%--baz 463 This output is a 'fractal' format. The 'foo' came from 'bar' and 'baz' exactly 468 'bar' and 'baz' callchain will have 20.00% of overhead.
|
/linux-6.12.1/Documentation/admin-guide/device-mapper/ |
D | statistics.rst | 210 Set the auxiliary data string to "foo bar baz" (the escape for each 213 dmsetup message vol 0 @stats_set_aux 0 foo\\ bar\\ baz
|
/linux-6.12.1/Documentation/translations/it_IT/doc-guide/ |
D | kernel-doc.rst | 329 * @baz: The Baz member. 333 int baz; 478 See enum baz.
|
D | sphinx.rst | 456 "bar" -> "baz"; 470 "bar" -> "baz";
|
/linux-6.12.1/Documentation/doc-guide/ |
D | kernel-doc.rst | 301 * @baz: The Baz member. 305 int baz; 450 See enum baz.
|
D | sphinx.rst | 495 "bar" -> "baz"; 509 "bar" -> "baz";
|
/linux-6.12.1/Documentation/devicetree/bindings/iio/gyroscope/ |
D | invensense,mpu3050.yaml | 57 vlogic-supply = <&baz>;
|
/linux-6.12.1/fs/orangefs/ |
D | orangefs-debug.h | 61 * baz 4 2
|
/linux-6.12.1/Documentation/dev-tools/ |
D | checkpatch.rst | 630 if ((foo = bar(...)) < BAZ) { 635 if (foo < BAZ) { 976 (int bar, int baz) 980 void foo(int bar, int baz) 1171 if ((foo->bar) && (foo->baz)) 1176 if (foo->bar && foo->baz)
|
/linux-6.12.1/tools/testing/selftests/net/netfilter/ |
D | xt_string.sh | 29 pattern="foo bar baz"
|
/linux-6.12.1/Documentation/filesystems/ |
D | f2fs.rst | 865 dir/foo.so; touch dir/bar.zip; touch dir/baz.txt; then foo.so and baz.txt 869 dir/foo.so; touch dir/bar.zip; touch dir/baz.txt; then foo.so should be 870 compresse, bar.zip and baz.txt should be non-compressed. 871 chattr+c dir/bar.zip; chattr+c dir/baz.txt; can enable compress on bar.zip 872 and baz.txt.
|
/linux-6.12.1/Documentation/networking/ |
D | netconsole.rst | 191 echo baz > userdata/qux/value 201 qux=baz
|