Home
last modified time | relevance | path

Searched full:try (Results 1 – 25 of 2865) sorted by relevance

12345678910>>...115

/linux/tools/testing/selftests/drivers/net/
H A Dhds.py15 try:
36 try:
44 try:
56 try:
69 # Try to reset to "unknown" first, we don't know if the setting
77 # Try the explicit setting
86 try:
96 try:
103 try:
114 try:
[all …]
H A Dnetpoll_basic.py71 try:
84 """Try to the number of RX and TX ringsize."""
89 try:
102 try:
131 try:
151 try:
162 try:
216 try:
226 """Try to load the netconsole module"""
311 try:
[all …]
/linux/tools/testing/selftests/tpm2/
H A Dtpm2_tests.py47 try:
59 try:
76 try:
94 try:
104 # Extend first a PCR that is not part of the policy and try to unseal.
112 try:
123 # Then, extend a PCR that is part of the policy and try to unseal.
131 try:
151 try:
160 try:
[all …]
/linux/lib/kunit/
H A Dtry-catch-impl.h3 * Internal kunit try catch implementation to be shared with tests.
12 #include <kunit/try-catch.h>
19 kunit_try_catch_func_t try, in kunit_try_catch_init() argument
24 try_catch->try = try; in kunit_try_catch_init()
H A Dtry-catch.c16 #include "try-catch-impl.h"
30 try_catch->try(try_catch->context); in kunit_generic_run_threadfn_adapter()
80 kunit_err(test, "try faulted: last line seen %s:%d\n", in kunit_try_catch_run()
83 kunit_err(test, "try faulted\n"); in kunit_try_catch_run()
85 kunit_err(test, "try timed out\n"); in kunit_try_catch_run()
/linux/scripts/
H A DMakefile.compiler9 # would try to directly execute the shell builtin 'command'. This workaround
18 # try-run
19 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
22 try-run = $(shell set -e; \
34 as-option = $(call try-run,\
40 as-instr = $(call try-run,\
45 __cc-option = $(call try-run,\
76 ld-option = $(call try-run, $(LD) $(KBUILD_LDFLAGS) $(1) -v,$(1),$(2),$(3))
81 __rustc-option = $(call try-run,\
H A Dshow_delta64 try:
94 try:
102 # assume a numeric base. If that fails, try searching
104 try:
110 try:
/linux/Documentation/power/
H A Dtricks.rst7 If you want to trick swsusp/S3 into working, you might want to try:
20 want to try vesafb later]
22 * try running as few processes as possible, preferably go to single
26 S3. Try that first.
28 When you make it work, try to find out what exactly was it that broke
H A Dbasic-pm-debugging.rst10 To check if hibernation works, you can try to hibernate in the "reboot" mode::
23 fails to hibernate or resume in the "reboot" mode, you should try the
86 Then, the kernel will try to freeze processes, suspend devices, wait a few
105 should try the test modes starting from "freezer", through "devices", "platform"
133 with these drivers compiled as modules). You may also try to use some special
138 of hibernation is not likely to work. You can try the "shutdown" mode, but that
143 should be reported. In that case you can also try to switch the nonboot CPUs
164 can try to compile more drivers as modules, so that they can be tested
169 unload n/2 of the modules and try again (that would probably involve rebooting
172 load n/2 modules more and try again.
[all …]
/linux/include/uapi/linux/
H A Dmii.h74 #define ADVERTISE_10HALF 0x0020 /* Try for 10mbps half-duplex */
75 #define ADVERTISE_1000XFULL 0x0020 /* Try for 1000BASE-X full-duplex */
76 #define ADVERTISE_10FULL 0x0040 /* Try for 10mbps full-duplex */
77 #define ADVERTISE_1000XHALF 0x0040 /* Try for 1000BASE-X half-duplex */
78 #define ADVERTISE_100HALF 0x0080 /* Try for 100mbps half-duplex */
79 #define ADVERTISE_1000XPAUSE 0x0080 /* Try for 1000BASE-X pause */
80 #define ADVERTISE_100FULL 0x0100 /* Try for 100mbps full-duplex */
81 #define ADVERTISE_1000XPSE_ASYM 0x0100 /* Try for 1000BASE-X asym pause */
82 #define ADVERTISE_100BASE4 0x0200 /* Try for 100mbps 4k packets */
83 #define ADVERTISE_PAUSE_CAP 0x0400 /* Try for pause */
[all …]
/linux/tools/testing/selftests/tc-testing/tc-tests/actions/
H A Dct.json112 "name": "Try ct with zone",
139 "name": "Try ct with zone, commit",
166 "name": "Try ct with zone, commit, mark",
193 "name": "Try ct with zone, commit, mark, nat",
220 "name": "Try ct with full nat ipv4 range syntax",
247 "name": "Try ct with full nat ipv6 syntax",
274 "name": "Try ct with full nat ipv6 range syntax",
301 "name": "Try ct with full nat ipv6 range syntax + force",
328 "name": "Try ct with label",
355 "name": "Try ct with label with mask",
[all …]
/linux/tools/testing/selftests/firmware/
H A Dfw_filesystem.sh73 # Try the asynchronous version too
92 # Try platform (EFI embedded fw) loading too
276 echo -n "Batched request_firmware() nofile try #$1: "
287 echo -n "Batched request_firmware_into_buf() nofile try #$1: "
314 echo -n "Batched request_firmware_direct() nofile try #$1: "
325 echo -n "Batched request_firmware_nowait(uevent=true) nofile try #$1: "
354 echo -n "Batched request_firmware_nowait(uevent=false) nofile try #$1: "
369 echo -n "Batched request_firmware() $2 try #$1: "
379 echo -n "Batched request_firmware_into_buf() $2 try #$1: "
391 echo -n "Batched request_firmware_direct() $2 try #$1: "
[all …]
/linux/include/kunit/
H A Dtry-catch.h23 * @try: The function, the test case, to attempt to run.
24 * @catch: The function called if @try bails out.
25 * @context: used to pass user data to the try and catch functions.
29 * calling kunit_try_catch_throw(). If kunit_try_catch_throw() is called, @try
48 kunit_try_catch_func_t try; member
/linux/Documentation/userspace-api/media/v4l/
H A Dvidioc-subdev-enum-mbus-code.rst57 Available media bus formats may depend on the current 'try' formats at
60 information about the try formats.
115 - The driver allows the application to try to change the default colorspace
122 - The driver allows the application to try to change the default transform function.
129 - The driver allows the application to try to change the default Y'CbCr
136 - The driver allows the application to try to change the default HSV
143 - The driver allows the application to try to change the default
H A Dvidioc-subdev-g-fmt.rst57 to ``V4L2_SUBDEV_FORMAT_TRY``. When set, 'try' formats are not applied
62 For instance, to try a format at the output pad of a sub-device,
63 applications would first set the try format at the sub-device input with
69 Try formats do not depend on active formats, but can depend on the
124 - Try formats, used for querying device capabilities.
/linux/tools/tracing/rtla/sample/
H A Dtimerlat_load.py32 try:
40 try:
47 try:
57 try:
64 try:
/linux/drivers/phy/broadcom/
H A Dphy-brcm-sata.c429 int try; in brcm_ns2_sata_init() local
468 try = 50; in brcm_ns2_sata_init()
469 while (try) { in brcm_ns2_sata_init()
475 try--; in brcm_ns2_sata_init()
477 if (!try) { in brcm_ns2_sata_init()
492 unsigned int val, try; in brcm_nsp_sata_init() local
534 try = 50; in brcm_nsp_sata_init()
535 while (--try) { in brcm_nsp_sata_init()
542 if (!try) { in brcm_nsp_sata_init()
564 unsigned int val, try; in brcm_sr_sata_init() local
[all …]
/linux/tools/perf/Documentation/
H A Dtips.txt1 For a higher level overview, try: perf report --sort comm,dso
26 If you have debuginfo enabled, try: perf report -s sym,srcline
27 For memory address profiling, try: perf mem record / perf mem report
28 For tracepoint events, try: perf report -s trace_fields
30 If call chains don't work try perf record --call-graph dwarf or --call-graph lbr
42 If you prefer Intel style assembly, try: perf annotate -M intel
44 For hierarchical output, try: perf report --hierarchy
65 For latency profiling, try: perf record/report --latency
66 For parallelism histogram, try: perf report --hierarchy --sort latency,parallelism,comm,symbol
67 To analyze particular parallelism levels, try
[all...]
/linux/tools/testing/selftests/drivers/net/hw/lib/py/
H A Dlinkconfig.py
/linux/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.py53 try:
69 try:
83 try:
89 try:
/linux/tools/testing/selftests/drivers/net/hw/
H A Drss_ctx.py64 # which try to add a lot opportunisitically set the count they
203 try:
256 try:
266 try:
277 try:
289 try:
347 try:
376 try:
445 # Try to allocate more queues when necessary
448 try
[all...]
/linux/arch/powerpc/mm/book3s64/
H A Dhash_64k.c64 * Try to lock the PTE, add ACCESSED and DIRTY if it was in __hash_page_4K()
126 * we try an insertion. in __hash_page_4K()
165 * Primary is full, try the secondary in __hash_page_4K()
194 * acquire that slot next time we try. This will ensure in __hash_page_4K()
202 * FIXME!! Should be try the group from which we removed ? in __hash_page_4K()
260 * Try to lock the PTE, add ACCESSED and DIRTY if it was in __hash_page_64K()
302 * Primary is full, try the secondary in __hash_page_64K()
317 * FIXME!! Should be try the group from which we removed ? in __hash_page_64K()
/linux/tools/crypto/ccp/
H A Ddbc_cli.py90 try:
97 try:
103 try:
112 try:
125 try:
/linux/tools/perf/scripts/python/
H A Dsctop.py15 try:
40 try:
58 try:
84 try:
/linux/init/
H A Ddo_mounts.c264 int try; in mount_nfs_root() local
270 * The server or network may not be ready, so try several in mount_nfs_root()
275 for (try = 1; ; try++) { in mount_nfs_root()
278 if (try > NFSROOT_RETRY_MAX) in mount_nfs_root()
306 int try; in mount_cifs_root() local
312 for (try = 1; ; try++) { in mount_cifs_root()
316 if (try > CIFSROOT_RETRY_MAX) in mount_cifs_root()

12345678910>>...115