/kernel/linux/linux-5.10/tools/testing/selftests/vm/ |
D | khugepaged.c | 112 static void success(const char *msg) in success() function 292 success("OK"); in restore_settings() 321 success("OK"); in save_settings() 334 success("OK"); in adjust_settings() 520 success("OK"); in alloc_at_fault() 529 success("OK"); in alloc_at_fault() 544 success("OK"); in collapse_full() 561 success("OK"); in collapse_empty() 574 success("OK"); in collapse_single_pte_entry() 598 success("OK"); in collapse_max_ptes_none() [all …]
|
/kernel/linux/linux-5.10/arch/sparc/prom/ |
D | ranges.c | 68 int success; in prom_ranges_init() local 77 success = prom_getproperty(obio_node, "ranges", in prom_ranges_init() 80 if (success != -1) in prom_ranges_init() 81 num_obio_ranges = (success / sizeof(struct linux_prom_ranges)); in prom_ranges_init() 91 int success; in prom_apply_generic_ranges() local 95 success = prom_getproperty(node, "ranges", in prom_apply_generic_ranges() 98 if (success != -1) { in prom_apply_generic_ranges() 99 num_ranges = (success / sizeof(struct linux_prom_ranges)); in prom_apply_generic_ranges() 104 success = prom_getproperty(parent, "ranges", in prom_apply_generic_ranges() 107 if (success != -1) { in prom_apply_generic_ranges() [all …]
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/ |
D | obj_name.c | 8 int success; in test_obj_name() member 40 CHECK((tests[i].success && fd < 0) || in test_obj_name() 41 (!tests[i].success && fd != -1) || in test_obj_name() 42 (!tests[i].success && errno != tests[i].expected_errno), in test_obj_name() 45 fd, tests[i].success, errno, tests[i].expected_errno); in test_obj_name() 61 CHECK((tests[i].success && fd < 0) || in test_obj_name() 62 (!tests[i].success && fd != -1) || in test_obj_name() 63 (!tests[i].success && errno != tests[i].expected_errno), in test_obj_name() 66 fd, tests[i].success, errno, tests[i].expected_errno); in test_obj_name()
|
/kernel/linux/linux-5.10/security/apparmor/ |
D | policy_unpack_test.c | 323 bool success; in policy_unpack_test_unpack_nameX_with_null_name() local 327 success = unpack_nameX(puf->e, AA_U32, NULL); in policy_unpack_test_unpack_nameX_with_null_name() 329 KUNIT_EXPECT_TRUE(test, success); in policy_unpack_test_unpack_nameX_with_null_name() 337 bool success; in policy_unpack_test_unpack_nameX_with_wrong_code() local 341 success = unpack_nameX(puf->e, AA_BLOB, NULL); in policy_unpack_test_unpack_nameX_with_wrong_code() 343 KUNIT_EXPECT_FALSE(test, success); in policy_unpack_test_unpack_nameX_with_wrong_code() 352 bool success; in policy_unpack_test_unpack_nameX_with_name() local 356 success = unpack_nameX(puf->e, AA_U32, name); in policy_unpack_test_unpack_nameX_with_name() 358 KUNIT_EXPECT_TRUE(test, success); in policy_unpack_test_unpack_nameX_with_name() 367 bool success; in policy_unpack_test_unpack_nameX_with_wrong_name() local [all …]
|
/kernel/linux/linux-5.10/scripts/ |
D | Kconfig.include | 14 # $(if-success,<command>,<then>,<else>) 16 if-success = $(shell,{ $(1); } >/dev/null 2>&1 && echo "$(2)" || echo "$(3)") 18 # $(success,<command>) 20 success = $(if-success,$(1),y,n) variable 24 failure = $(if-success,$(1),n,y) 28 cc-option = $(success,mkdir .tmp_$$$$; trap "rm -rf .tmp_$$$$" EXIT; $(CC) -Werror $(CLANG_FLAGS) $… 32 ld-option = $(success,$(LD) -v $(1)) 36 as-instr = $(success,printf "%b\n" "$(1)" | $(CC) $(CLANG_FLAGS) -c -x assembler -o /dev/null -) 43 $(error-if,$(success, $(LD) -v | grep -q gold), gold linker '$(LD)' not supported) 47 $(error-if,$(success,test -z "$(as-info)"),Sorry$(comma) this assembler is not supported.) [all …]
|
/kernel/linux/linux-5.10/arch/alpha/include/asm/ |
D | spinlock.h | 100 int success; in arch_read_trylock() local 113 : "=m" (*lock), "=&r" (regx), "=&r" (success) in arch_read_trylock() 116 return success; in arch_read_trylock() 122 int success; in arch_write_trylock() local 135 : "=m" (*lock), "=&r" (regx), "=&r" (success) in arch_write_trylock() 138 return success; in arch_write_trylock()
|
/kernel/linux/linux-5.10/arch/m68k/ifpsp060/ |
D | os.S | 84 | d1 - 0 = success, !0 = failure 94 clr.l %d1 | return success 101 clr.l %d1 | return success 115 | d1 - 0 = success, !0 = failure 127 clr.l %d1 | return success 134 clr.l %d1 | return success 147 | d1 - 0 = success, !0 = failure 152 clr.l %d1 | assume success 170 | d1 - 0 = success, !0 = failure 181 | d1 - 0 = success, !0 = failure [all …]
|
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/tm/ |
D | tm-trap.c | 59 bool success; variable 219 : : : : failure, success); in ping() 222 success = false; in ping() 225 success: in ping() 226 success = true; in ping() 321 if (success) { in tm_trap_test()
|
/kernel/linux/linux-5.10/lib/ |
D | globtest.c | 22 bool success = match == expected; in test() local 32 if (!success) in test() 37 return success; in test() 40 return success; in test()
|
/kernel/linux/linux-5.10/lib/crypto/ |
D | blake2s-selftest.c | 552 bool success = true; in blake2s_selftest() local 570 success = false; in blake2s_selftest() 586 success = false; in blake2s_selftest() 590 return success; in blake2s_selftest()
|
/kernel/linux/common_modules/newip/examples/ |
D | nip_tcp_client_demo.c | 47 int _recv(int cfd, int pkt_num, int *success) in _recv() argument 69 *success += 1; in _recv() 76 buf, cfd, *success, pkt_num + 1, no); in _recv() 89 int success = 0; in send_recv() local 95 if (_recv(cfd, i, &success) != 0) in send_recv()
|
D | nip_udp_client_demo.c | 47 int _recvfrom(int cfd, struct sockaddr_nin *si_server, int pkt_num, int *success) in _recvfrom() argument 70 *success += 1; in _recvfrom() 74 buf, cfd, *success, pkt_num + 1, no); in _recvfrom() 86 int success = 0; in send_recv() local 94 if (_recvfrom(cfd, &si_server, i, &success) != 0) in send_recv()
|
/kernel/linux/linux-5.10/Documentation/driver-api/soundwire/ |
D | locking.rst | 63 | return success/error | d. Return success/error 102 | return success/error | d. Return success/error 105 | return success/error | 3. Release bus lock 106 +-------------------------------> 4. Return success/error
|
/kernel/linux/linux-5.10/drivers/video/backlight/ |
D | jornada720_lcd.c | 40 goto success; in jornada_lcd_get_contrast() 46 success: in jornada_lcd_get_contrast() 61 goto success; in jornada_lcd_set_contrast() 67 success: in jornada_lcd_set_contrast()
|
/kernel/linux/linux-5.10/arch/x86/include/asm/ |
D | cmpxchg.h | 160 bool success; \ 170 : CC_OUT(z) (success), \ 182 : CC_OUT(z) (success), \ 194 : CC_OUT(z) (success), \ 206 : CC_OUT(z) (success), \ 216 if (unlikely(!success)) \ 218 likely(success); \
|
/kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt76/ |
D | mt76x02_trace.h | 52 __field(bool, success) 61 __entry->success = stat->success; 75 __entry->success, __entry->aggr, __entry->ack_req,
|
/kernel/linux/linux-5.10/drivers/net/wireguard/selftest/ |
D | counter.c | 11 bool success = true; in wg_packet_counter_selftest() local 29 success = false; \ in wg_packet_counter_selftest() 106 if (success) in wg_packet_counter_selftest() 109 return success; in wg_packet_counter_selftest()
|
D | ratelimiter.c | 121 bool success = false; in wg_ratelimiter_selftest() local 203 success = true; in wg_ratelimiter_selftest() 217 if (success) in wg_ratelimiter_selftest() 222 return success; in wg_ratelimiter_selftest()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_bios.c | 423 goto success; in amdgpu_get_bios() 428 goto success; in amdgpu_get_bios() 433 goto success; in amdgpu_get_bios() 438 goto success; in amdgpu_get_bios() 443 goto success; in amdgpu_get_bios() 448 goto success; in amdgpu_get_bios() 453 goto success; in amdgpu_get_bios() 459 success: in amdgpu_get_bios()
|
/kernel/linux/linux-5.10/arch/mips/kernel/ |
D | unaligned.c | 704 goto success; in emulate_load_store_microMIPS() 723 goto success; in emulate_load_store_microMIPS() 743 goto success; in emulate_load_store_microMIPS() 766 goto success; in emulate_load_store_microMIPS() 805 goto success; in emulate_load_store_microMIPS() 841 goto success; in emulate_load_store_microMIPS() 879 goto success; in emulate_load_store_microMIPS() 920 goto success; in emulate_load_store_microMIPS() 975 goto success; in emulate_load_store_microMIPS() 1028 goto success; in emulate_load_store_microMIPS() [all …]
|
/kernel/linux/linux-5.10/Documentation/virt/kvm/ |
D | amd-memory-encryption.rst | 76 On output, ``error`` is zero on success, or an error code. Error codes 88 Returns: 0 on success, -negative on error 99 Returns: 0 on success, -negative on error 114 On success, the 'handle' field contains a new handle and on error, a negative value. 130 Returns: 0 on success, -negative on error 153 Returns: 0 on success, -negative on error 170 Returns: 0 on success, -negative on error 180 Returns: 0 on success, -negative on error 211 Returns: 0 on success, -negative on error 231 Returns: 0 on success, -negative on error [all …]
|
/kernel/linux/linux-5.10/arch/powerpc/kvm/ |
D | book3s_hv_rm_xics.c | 84 bool success; in grab_next_hostcore() local 97 success = cmpxchg64(&rm_core[core].rm_state.raw, in grab_next_hostcore() 99 if (success) { in grab_next_hostcore() 186 bool success; in icp_rm_try_update() local 192 success = cmpxchg64(&icp->state.raw, old.raw, new.raw) == old.raw; in icp_rm_try_update() 193 if (!success) in icp_rm_try_update() 219 return success; in icp_rm_try_update() 250 bool success; in icp_rm_try_to_deliver() local 258 success = new_state.cppr > priority && in icp_rm_try_to_deliver() 266 if (success) { in icp_rm_try_to_deliver() [all …]
|
/kernel/linux/linux-5.10/drivers/input/touchscreen/ |
D | tsc200x-core.c | 263 bool success = true; in tsc200x_selftest_show() local 276 success = false; in tsc200x_selftest_show() 285 success = false; in tsc200x_selftest_show() 293 success = false; in tsc200x_selftest_show() 300 success = false; in tsc200x_selftest_show() 306 if (!success) in tsc200x_selftest_show() 314 success = false; in tsc200x_selftest_show() 321 success = false; in tsc200x_selftest_show() 328 return sprintf(buf, "%d\n", success); in tsc200x_selftest_show()
|
/kernel/linux/linux-5.10/include/trace/events/ |
D | timer.h | 401 TP_PROTO(int success, int dependency), 403 TP_ARGS(success, dependency), 406 __field( int , success ) 411 __entry->success = success; 415 TP_printk("success=%d dependency=%s", __entry->success, \
|
/kernel/linux/linux-5.10/arch/x86/platform/olpc/ |
D | olpc.c | 206 bool success; in platform_detect() local 211 success = check_ofw_architecture(root); in platform_detect() 212 if (success) { in platform_detect() 222 return success; in platform_detect()
|