/kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
D | util.S | 192 leal EXT_PINF,%a1 |answer is +/- infinity 196 leal EXT_PLRG,%a1 |answer is +/- large number 202 leal EXT_PINF,%a1 |answer is negative infinity 206 leal EXT_PLRG,%a1 |answer is large positive number 212 leal EXT_PLRG,%a1 |answer is large negative number 216 leal EXT_PINF,%a1 |answer is positive infinity 223 leal EXT_PINF,%a1 |answer is +/- infinity 227 leal DBL_PLRG,%a1 |answer is +/- large number 233 leal EXT_PINF,%a1 |answer is negative infinity 237 leal DBL_PLRG,%a1 |answer is large positive number [all …]
|
/kernel/linux/linux-5.10/drivers/block/paride/ |
D | Kconfig | 18 support into your kernel, you may answer Y here to build in the 19 parallel port IDE driver, otherwise you should answer M to build 34 support into your kernel, you may answer Y here to build in the 35 parallel port ATAPI CD-ROM driver, otherwise you should answer M to 50 support into your kernel, you may answer Y here to build in the 51 parallel port ATAPI disk driver, otherwise you should answer M 64 support into your kernel, you may answer Y here to build in the 65 parallel port ATAPI disk driver, otherwise you should answer M 81 answer Y here to build in the parallel port generic ATAPI driver, 82 otherwise you should answer M to build it as a loadable module. The [all …]
|
/kernel/linux/linux-5.10/security/smack/ |
D | Kconfig | 14 If you are unsure how to answer this question, answer N. 32 If you are unsure how to answer this question, answer N. 43 If you are unsure how to answer this question, answer N. 55 If you are unsure how to answer this question, answer N.
|
/kernel/linux/linux-5.10/drivers/net/wireless/ti/wl12xx/ |
D | cmd.c | 55 bool answer = false; in wl1271_cmd_general_parms() local 79 answer = true; in wl1271_cmd_general_parms() 84 ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), answer); in wl1271_cmd_general_parms() 104 answer == false ? in wl1271_cmd_general_parms() 122 bool answer = false; in wl128x_cmd_general_parms() local 146 answer = true; in wl128x_cmd_general_parms() 152 ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), answer); in wl128x_cmd_general_parms() 172 answer == false ? in wl128x_cmd_general_parms()
|
/kernel/linux/common_modules/newip/third_party/linux-5.10/net/newip/ |
D | af_ninet.c | 134 struct inet_protosw *answer; in ninet_create() local 156 list_for_each_entry_rcu(answer, &inetsw_nip[sock->type], list) { in ninet_create() 159 if (protocol == answer->protocol) { in ninet_create() 165 protocol = answer->protocol; in ninet_create() 168 if (answer->protocol == IPPROTO_IP) in ninet_create() 177 sock->ops = answer->ops; in ninet_create() 178 answer_prot = answer->prot; in ninet_create() 179 answer_flags = answer->flags; in ninet_create() 209 sk->sk_backlog_rcv = answer->prot->backlog_rcv; in ninet_create() 732 struct inet_protosw *answer; in ninet_register_protosw() local [all …]
|
/kernel/linux/linux-5.10/security/selinux/ |
D | Kconfig | 10 If you are unsure how to answer this question, answer N. 24 If you are unsure how to answer this question, answer N. 48 If you are unsure how to answer this question, answer N. 94 If you are unsure how to answer this question, answer 0.
|
/kernel/linux/linux-5.10/drivers/gpio/ |
D | gpio-viperboard.c | 52 u8 answer; member 84 int ret, answer, error = 0; in vprbrd_gpioa_get() local 104 gamsg->answer = 0x00; in vprbrd_gpioa_get() 118 answer = gamsg->answer & 0x01; in vprbrd_gpioa_get() 128 return answer; in vprbrd_gpioa_get() 156 gamsg->answer = 0x00; in vprbrd_gpioa_set() 193 gamsg->answer = 0x00; in vprbrd_gpioa_direction_input() 234 gamsg->answer = 0x00; in vprbrd_gpioa_direction_output()
|
/kernel/linux/linux-5.10/security/ |
D | Kconfig | 20 If you are unsure how to answer this question, answer N. 33 If you are unsure how to answer this question, answer N. 46 If you are unsure how to answer this question, answer N. 55 If you are unsure how to answer this question, answer N. 64 If you are unsure how to answer this question, answer N. 77 If you are unsure how to answer this question, answer N. 86 If you are unsure how to answer this question, answer N. 116 If you are unsure as to whether this is required, answer N.
|
/kernel/linux/linux-5.10/fs/fuse/ |
D | Kconfig | 19 a filesystem based on FUSE, answer Y or M. 29 based on CUSE, answer Y or M. 39 If you want to share files between guests or with the host, answer Y 54 option, answer Y.
|
/kernel/linux/linux-5.10/net/ipv6/ |
D | af_inet6.c | 123 struct inet_protosw *answer; in inet6_create() local 136 list_for_each_entry_rcu(answer, &inetsw6[sock->type], list) { in inet6_create() 140 if (protocol == answer->protocol) { in inet6_create() 146 protocol = answer->protocol; in inet6_create() 149 if (IPPROTO_IP == answer->protocol) in inet6_create() 182 sock->ops = answer->ops; in inet6_create() 183 answer_prot = answer->prot; in inet6_create() 184 answer_flags = answer->flags; in inet6_create() 213 sk->sk_backlog_rcv = answer->prot->backlog_rcv; in inet6_create() 754 struct inet_protosw *answer; in inet6_register_protosw() local [all …]
|
/kernel/linux/linux-5.10/tools/testing/selftests/net/ |
D | ipsec.c | 252 } answer; in netlink_check_answer() local 254 if (recv(sock, &answer, sizeof(answer), 0) < 0) { in netlink_check_answer() 257 } else if (answer.hdr.nlmsg_type != NLMSG_ERROR) { in netlink_check_answer() 258 printk("expected NLMSG_ERROR, got %d", (int)answer.hdr.nlmsg_type); in netlink_check_answer() 260 } else if (answer.error) { in netlink_check_answer() 262 answer.error, strerror(-answer.error)); in netlink_check_answer() 263 return answer.error; in netlink_check_answer() 1030 } answer; in xfrm_state_check() local 1058 if (recv(xfrm_sock, &answer, sizeof(answer), 0) < 0) { in xfrm_state_check() 1062 if (answer.nh.nlmsg_type == NLMSG_ERROR) { in xfrm_state_check() [all …]
|
/kernel/linux/linux-5.10/security/yama/ |
D | Kconfig | 14 If you are unsure how to answer this question, answer N.
|
/kernel/linux/linux-5.10/security/safesetid/ |
D | Kconfig | 15 If you are unsure how to answer this question, answer N.
|
/kernel/linux/linux-5.10/fs/romfs/ |
D | Kconfig | 17 answer N. 37 If unsure, answer Y. 49 If unsure, answer Y.
|
/kernel/linux/linux-5.10/sound/oss/dmasound/ |
D | Kconfig | 7 If you want to use the internal audio of your Atari in Linux, answer 21 If you want to use the internal audio of your Amiga in Linux, answer 35 If you want to use the internal audio of your Q40 in Linux, answer
|
/kernel/linux/linux-5.10/drivers/net/ethernet/moxa/ |
D | Kconfig | 13 Note that the answer to this question doesn't directly affect the 26 want to use the internal ethernet then you should answer Y to this.
|
/kernel/linux/linux-5.10/fs/qnx6/ |
D | Kconfig | 17 answer N. 27 answer N.
|
/kernel/linux/linux-5.10/security/keys/ |
D | Kconfig | 22 If you are unsure as to whether this is required, answer N. 69 If you are unsure as to whether this is required, answer N. 85 If you are unsure as to whether this is required, answer N. 103 If you are unsure as to whether this is required, answer N. 116 If you are unsure as to whether this is required, answer N.
|
/kernel/linux/linux-5.10/sound/isa/ |
D | sc6000.c | 379 char answer[15]; in sc6000_init_board() local 394 memset(answer, 0, sizeof(answer)); in sc6000_init_board() 395 err = sc6000_dsp_get_answer(vport, GET_DSP_COPYRIGHT, answer, 15); in sc6000_init_board() 404 if (strncmp("SC-6000", answer, 7)) in sc6000_init_board() 412 answer, version[0], version[1]); in sc6000_init_board()
|
/kernel/linux/linux-5.10/drivers/net/wireless/ti/wlcore/ |
D | testmode.c | 63 u8 answer = 0; in wl1271_tm_cmd_test() local 74 answer = nla_get_u8(tb[WL1271_TM_ATTR_ANSWER]); in wl1271_tm_cmd_test() 92 ret = wl1271_cmd_test(wl, buf, buf_len, answer); in wl1271_tm_cmd_test() 98 if (answer) { in wl1271_tm_cmd_test()
|
/kernel/linux/linux-5.10/drivers/net/wireless/ti/wl1251/ |
D | cmd.c | 69 int wl1251_cmd_test(struct wl1251 *wl, void *buf, size_t buf_len, u8 answer) in wl1251_cmd_test() argument 82 if (answer) { in wl1251_cmd_test() 350 int wl1251_cmd_read_memory(struct wl1251 *wl, u32 addr, void *answer, in wl1251_cmd_read_memory() argument 383 memcpy(answer, cmd->value, len); in wl1251_cmd_read_memory()
|
/kernel/linux/linux-5.10/drivers/net/ppp/ |
D | ppp_mppe.c | 662 int answer; in ppp_mppe_init() local 671 answer = ppp_register_compressor(&ppp_mppe); in ppp_mppe_init() 673 if (answer == 0) in ppp_mppe_init() 678 return answer; in ppp_mppe_init()
|
/kernel/linux/linux-5.10/sound/soc/cirrus/ |
D | Kconfig | 26 If you are unsure how to answer this question, answer Y.
|
/kernel/linux/linux-5.10/security/integrity/evm/ |
D | Kconfig | 14 If you are unsure how to answer this question, answer N.
|
/kernel/linux/linux-5.10/net/ipv4/ |
D | af_inet.c | 255 struct inet_protosw *answer; in inet_create() local 271 list_for_each_entry_rcu(answer, &inetsw[sock->type], list) { in inet_create() 275 if (protocol == answer->protocol) { in inet_create() 281 protocol = answer->protocol; in inet_create() 284 if (IPPROTO_IP == answer->protocol) in inet_create() 317 sock->ops = answer->ops; in inet_create() 318 answer_prot = answer->prot; in inet_create() 319 answer_flags = answer->flags; in inet_create() 1175 struct inet_protosw *answer; in inet_register_protosw() local 1187 answer = list_entry(lh, struct inet_protosw, list); in inet_register_protosw() [all …]
|