| /kernel/linux/linux-6.6/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()
|
| /kernel/linux/linux-5.10/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()
|
| /kernel/linux/linux-6.6/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
|
| /kernel/linux/linux-5.10/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``.
|
| /kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/ |
| D | linked_list.c | 354 id = btf__add_decl_tag(btf, "contains:baz:a", 5, 0); in test_btf() 355 if (!ASSERT_EQ(id, 6, "btf__add_decl_tag contains:baz:a")) in test_btf() 357 id = btf__add_struct(btf, "baz", 16); in test_btf() 358 if (!ASSERT_EQ(id, 7, "btf__add_struct baz")) in test_btf() 361 if (!ASSERT_OK(err, "btf__add_field baz::a")) in test_btf() 644 id = btf__add_decl_tag(btf, "contains:baz:a", 7, 0); in test_btf() 645 if (!ASSERT_EQ(id, 8, "btf__add_decl_tag contains:baz:a")) in test_btf() 647 id = btf__add_struct(btf, "baz", 24); in test_btf() 648 if (!ASSERT_EQ(id, 9, "btf__add_struct baz")) in test_btf() 651 if (!ASSERT_OK(err, "btf__add_field baz:a")) in test_btf() [all …]
|
| /kernel/linux/linux-6.6/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
|
| /kernel/linux/linux-5.10/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
|
| /kernel/linux/linux-6.6/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
|
| /kernel/linux/linux-6.6/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()
|
| /kernel/linux/linux-5.10/Documentation/kbuild/ |
| D | kconfig-language.rst | 163 imply BAZ 165 config BAZ 166 tristate "baz" 172 FOO BAR BAZ's default choice for BAZ 197 Note: If the feature provided by BAZ is highly desirable for FOO, 198 FOO should imply not only BAZ, but also its dependency BAR:: 203 imply BAZ
|
| /kernel/linux/linux-6.6/tools/perf/tests/ |
| D | expr.c | 45 /* Union {foo, bar} against {bar,baz}. */ in test_ids_union() 49 TEST_ASSERT_EQUAL("ids__insert", ids__insert(ids2, strdup("baz")), 0); in test_ids_union() 132 expr__find_ids("FOO + BAR + BAZ + BOZO", "FOO", in test__expr() 136 TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "BAZ", &val_ptr)); in test__expr()
|
| /kernel/linux/linux-5.10/tools/perf/tests/ |
| D | expr.c | 65 expr__find_other("FOO + BAR + BAZ + BOZO", "FOO", in test__expr() 70 TEST_ASSERT_VAL("find other", hashmap__find(&ctx.ids, "BAZ", in test__expr()
|
| /kernel/linux/linux-6.6/Documentation/kbuild/ |
| D | kconfig-language.rst | 163 imply BAZ 165 config BAZ 166 tristate "baz" 172 FOO BAR BAZ's default choice for BAZ 197 Note: If the feature provided by BAZ is highly desirable for FOO, 198 FOO should imply not only BAZ, but also its dependency BAR:: 203 imply BAZ
|
| /kernel/linux/linux-6.6/scripts/kconfig/ |
| D | expr.h | 169 * config BAZ 170 * int "BAZ Value" 178 P_PROMPT, /* prompt "foo prompt" or "BAZ Value" */
|
| /kernel/linux/linux-5.10/Documentation/translations/it_IT/doc-guide/ |
| D | kernel-doc.rst | 326 * @baz: The Baz member. 330 int baz; 434 See :c:type:`enum baz <baz>`.
|
| /kernel/linux/linux-5.10/scripts/kconfig/ |
| D | expr.h | 172 * config BAZ 173 * int "BAZ Value" 181 P_PROMPT, /* prompt "foo prompt" or "BAZ Value" */
|
| /kernel/linux/linux-6.6/tools/perf/Documentation/ |
| D | perf-config.txt | 416 33.33% baz 420 and 'baz' to 50.00% for each, while 'absolute' would show their 459 --50.00%--baz 462 This output is a 'fractal' format. The 'foo' came from 'bar' and 'baz' exactly 467 'bar' and 'baz' callchain will have 20.00% of overhead.
|
| /kernel/linux/linux-5.10/tools/perf/Documentation/ |
| D | perf-config.txt | 399 33.33% baz 403 and 'baz' to 50.00% for each, while 'absolute' would show their 442 --50.00%--baz 445 This output is a 'fractal' format. The 'foo' came from 'bar' and 'baz' exactly 450 'bar' and 'baz' callchain will have 20.00% of overhead.
|
| /kernel/linux/linux-5.10/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
|
| /kernel/linux/linux-6.6/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
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/iio/gyroscope/ |
| D | invensense,mpu3050.txt | 31 vlogic-supply = <&baz>;
|
| /kernel/linux/linux-6.6/Documentation/doc-guide/ |
| D | kernel-doc.rst | 301 * @baz: The Baz member. 305 int baz; 405 See enum baz.
|