| /linux/arch/m68k/fpsp040/ |
| H A 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 …]
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | netlink_helpers.c | 108 static int rtnl_recvmsg(int fd, struct msghdr *msg, char **answer) in rtnl_recvmsg() argument 134 if (answer) in rtnl_recvmsg() 135 *answer = buf; in rtnl_recvmsg() 149 size_t iovlen, struct nlmsghdr **answer, in __rtnl_talk_iov() argument 168 if (answer == NULL) in __rtnl_talk_iov() 238 if (answer) in __rtnl_talk_iov() 239 *answer = (struct nlmsghdr *)buf; in __rtnl_talk_iov() 244 if (answer) { in __rtnl_talk_iov() 245 *answer = (struct nlmsghdr *)buf; in __rtnl_talk_iov() 265 struct nlmsghdr **answer, bool show_rtnl_err, in __rtnl_talk() argument [all …]
|
| /linux/security/smack/ |
| H A 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.
|
| /linux/tools/testing/selftests/hid/ |
| H A D | hid_common.h | 173 struct uhid_event ev, answer; in uhid_event() local 222 answer.type = UHID_GET_REPORT_REPLY; in uhid_event() 223 answer.u.get_report_reply.id = ev.u.get_report.id; in uhid_event() 224 answer.u.get_report_reply.err = ev.u.get_report.rnum == 1 ? 0 : -EIO; in uhid_event() 225 answer.u.get_report_reply.size = sizeof(feature_data); in uhid_event() 226 memcpy(answer.u.get_report_reply.data, feature_data, sizeof(feature_data)); in uhid_event() 228 uhid_write(_metadata, fd, &answer); in uhid_event() 234 answer.type = UHID_SET_REPORT_REPLY; in uhid_event() 235 answer.u.set_report_reply.id = ev.u.set_report.id; in uhid_event() 236 answer.u.set_report_reply.err = 0; /* success */ in uhid_event() [all …]
|
| /linux/drivers/net/wireless/ti/wl12xx/ |
| H A 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()
|
| /linux/fs/fuse/ |
| H A D | Kconfig | 20 a filesystem based on FUSE, answer Y or M. 30 based on CUSE, answer Y or M. 40 If you want to share files between guests or with the host, answer Y 55 option, answer Y. 66 If you want to allow passthrough operations, answer Y. 78 answer Y
|
| /linux/security/landlock/ |
| H A D | Kconfig | 20 If you are unsure how to answer this question, answer N. Otherwise, 37 If you are unsure how to answer this question, answer N.
|
| /linux/security/ |
| H A D | Kconfig | 20 If you are unsure how to answer this question, answer N. 84 If you are unsure how to answer this question, answer N. 97 If you are unsure how to answer this question, answer N. 106 If you are unsure how to answer this question, answer N. 115 If you are unsure how to answer this question, answer [all...] |
| /linux/drivers/firmware/arm_scmi/transports/ |
| H A D | Kconfig | 33 transport based on mailboxes, answer Y. 47 transport based on SMC, answer Y. 59 transactions on the TX path, answer Y. 76 transport based on OP-TEE SCMI service, answer Y. 89 transport based on VirtIO, answer Y. 102 devices (or above), answer Y. 116 transactions on the TX path, answer Y.
|
| /linux/tools/testing/selftests/net/tcp_ao/lib/ |
| H A D | netlink.c | 40 } answer; in netlink_check_answer() local 42 if (recv(sock, &answer, sizeof(answer), 0) < 0) { in netlink_check_answer() 45 } else if (answer.hdr.nlmsg_type != NLMSG_ERROR) { in netlink_check_answer() 47 (int)answer.hdr.nlmsg_type); in netlink_check_answer() 49 } else if (answer.error) { in netlink_check_answer() 52 answer.error, strerror(-answer.error)); in netlink_check_answer() 54 return answer.error; in netlink_check_answer()
|
| /linux/net/ipv6/ |
| H A D | af_inet6.c | 111 struct inet_protosw *answer; in inet6_create() local 124 list_for_each_entry_rcu(answer, &inetsw6[sock->type], list) { in inet6_create() 128 if (protocol == answer->protocol) { in inet6_create() 134 protocol = answer->protocol; in inet6_create() 137 if (IPPROTO_IP == answer->protocol) in inet6_create() 170 sock->ops = answer->ops; in inet6_create() 171 answer_prot = answer->prot; in inet6_create() 172 answer_flags = answer->flags; in inet6_create() 204 sk->sk_backlog_rcv = answer->prot->backlog_rcv; in inet6_create() 732 struct inet_protosw *answer; in inet6_register_protosw() local [all …]
|
| /linux/tools/testing/selftests/net/ |
| H A D | ipsec.c | 292 } answer; in netlink_check_answer() 294 if (recv(sock, &answer, sizeof(answer), 0) < 0) { in netlink_check_answer() 297 } else if (answer.hdr.nlmsg_type != NLMSG_ERROR) { in netlink_check_answer() 298 printk("expected NLMSG_ERROR, got %d", (int)answer.hdr.nlmsg_type); in netlink_check_answer() 300 } else if (answer.error) { in netlink_check_answer() 302 answer.error, strerror(-answer.error)); in netlink_check_answer() 303 return answer.error; in netlink_check_answer() 1023 } answer; in xfrm_state_check() 291 } answer; netlink_check_answer() local 1019 } answer; xfrm_state_check() local 1287 } answer; xfrm_state_allocspi() local [all...] |
| /linux/security/yama/ |
| H A D | Kconfig | 14 If you are unsure how to answer this question, answer N.
|
| /linux/fs/romfs/ |
| H A D | Kconfig | 17 answer N. 37 If unsure, answer Y. 49 If unsure, answer Y.
|
| /linux/security/safesetid/ |
| H A D | Kconfig | 15 If you are unsure how to answer this question, answer N.
|
| /linux/sound/oss/dmasound/ |
| H A 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
|
| /linux/security/selinux/ |
| H A 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.
|
| /linux/sound/isa/ |
| H A D | sc6000.c | 452 char answer[15]; in sc6000_init_board() 462 memset(answer, 0, sizeof(answer)); in snd_sc6000_mixer() 464 answer, 15); in snd_sc6000_mixer() 473 if (strncmp("SC-6000", answer, 7)) in snd_sc6000_mixer() 482 answer, version[0], version[1]); in snd_sc6000_mixer() 383 char answer[15]; sc6000_init_board() local
|
| /linux/drivers/net/ethernet/moxa/ |
| H A 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.
|
| /linux/drivers/net/ethernet/litex/ |
| H A D | Kconfig | 11 Note that the answer to this question doesn't directly affect the 23 device then you should answer Y to this.
|
| /linux/drivers/net/wireless/ti/wlcore/ |
| H A 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() 90 ret = wl1271_cmd_test(wl, buf, buf_len, answer); in wl1271_tm_cmd_test() 96 if (answer) { in wl1271_tm_cmd_test()
|
| /linux/fs/qnx6/ |
| H A D | Kconfig | 18 answer N. 28 answer N.
|
| /linux/sound/soc/cirrus/ |
| H A D | Kconfig | 32 If you are unsure how to answer this question, answer Y.
|
| /linux/drivers/net/ethernet/hisilicon/ |
| H A D | Kconfig | 13 Note that the answer to this question doesn't directly affect the 48 want to use the internal ethernet then you should answer Y to this. 55 then you should answer Y to this. This makes this driver suitable for use 157 then you should answer Y to this. This makes this driver suitable for use
|
| /linux/drivers/net/ppp/ |
| H A D | ppp_mppe.c | 597 int answer; in ppp_mppe_init() local 602 answer = ppp_register_compressor(&ppp_mppe); in ppp_mppe_init() 604 if (answer == 0) in ppp_mppe_init() 607 return answer; in ppp_mppe_init()
|