| /OK3568_Linux_fs/external/xserver/os/ |
| H A D | auth.c | 66 static struct protocol protocols[] = { variable 94 #define NUM_AUTHORIZATION ARRAY_SIZE(protocols) 135 if (protocols[i].name_length == auth->name_length && in LoadAuthorization() 136 memcmp(protocols[i].name, auth->name, in LoadAuthorization() 137 (int) auth->name_length) == 0 && protocols[i].Add) { in LoadAuthorization() 139 (*protocols[i].Add) (auth->data_length, auth->data, in LoadAuthorization() 161 XdmcpRegisterAuthorization(protocols[i].name, in RegisterAuthorizations() 162 (int) protocols[i].name_length); in RegisterAuthorizations() 213 if (protocols[i].name_length == name_length && in CheckAuthorization() 214 memcmp(protocols[i].name, name, (int) name_length) == 0) { in CheckAuthorization() [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/ir/ |
| H A D | ir_loopback.c | 38 } protocols[] = { variable 117 snprintf(buf, sizeof(buf), "/sys/class/rc/%s/protocols", argv[2]); in main() 124 for (i = 0; i < ARRAY_SIZE(protocols); i++) { in main() 125 if (write(protocolfd, protocols[i].decoder, in main() 126 strlen(protocols[i].decoder)) == -1) in main() 130 protocols[i].name, protocols[i].decoder, in main() 131 i + 1, (int)ARRAY_SIZE(protocols)); in main() 134 unsigned int scancode = rand() & protocols[i].mask; in main() 135 unsigned int rc_proto = protocols[i].proto; in main()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/ntopng/files/ |
| H A D | CVE-2021-36082.patch | 12 src/lib/protocols/netbios.c | 2 +- 13 src/lib/protocols/tls.c | 32 +++++++++++++++++--------------- 16 diff --git a/src/lib/protocols/netbios.c b/src/lib/protocols/netbios.c 18 --- a/src/lib/protocols/netbios.c 19 +++ b/src/lib/protocols/netbios.c 29 diff --git a/src/lib/protocols/tls.c b/src/lib/protocols/tls.c 31 --- a/src/lib/protocols/tls.c 32 +++ b/src/lib/protocols/tls.c
|
| /OK3568_Linux_fs/u-boot/lib/efi_loader/ |
| H A D | efi_boottime.c | 482 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) { in efi_install_protocol_interface() 483 struct efi_handler *handler = &efiobj->protocols[i]; in efi_install_protocol_interface() 493 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) { in efi_install_protocol_interface() 494 struct efi_handler *handler = &efiobj->protocols[i]; in efi_install_protocol_interface() 552 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) { in efi_uninstall_protocol_interface() 553 struct efi_handler *handler = &efiobj->protocols[i]; in efi_uninstall_protocol_interface() 603 for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) { in efi_search() 604 const efi_guid_t *guid = efiobj->protocols[i].guid; in efi_search() 730 * protocols, boot-device, etc. 742 obj->protocols[0].guid = &efi_guid_device_path; in efi_setup_loaded_image() [all …]
|
| H A D | efi_net.c | 236 netobj->parent.protocols[0].guid = &efi_net_guid; in efi_net_register() 237 netobj->parent.protocols[0].protocol_interface = &netobj->net; in efi_net_register() 238 netobj->parent.protocols[1].guid = &efi_guid_device_path; in efi_net_register() 239 netobj->parent.protocols[1].protocol_interface = &netobj->dp_mac; in efi_net_register() 240 netobj->parent.protocols[2].guid = &efi_pxe_guid; in efi_net_register() 241 netobj->parent.protocols[2].protocol_interface = &netobj->pxe; in efi_net_register()
|
| /OK3568_Linux_fs/kernel/net/netfilter/ipvs/ |
| H A D | ip_vs_proto.c | 30 * IPVS protocols can only be registered/unregistered when the ipvs 63 * register an ipvs protocols netns related data 115 * unregister an ipvs protocols netns data 173 * Propagate event for state change to all protocols 343 char protocols[64]; in ip_vs_protocol_init() local 347 strcat(protocols, ", "); \ in ip_vs_protocol_init() 348 strcat(protocols, (p)->name); \ in ip_vs_protocol_init() 351 protocols[0] = '\0'; in ip_vs_protocol_init() 352 protocols[2] = '\0'; in ip_vs_protocol_init() 368 pr_info("Registered protocols (%s)\n", &protocols[2]); in ip_vs_protocol_init() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/rc/img-ir/ |
| H A D | img-ir-sony.c | 54 struct img_ir_filter *out, u64 protocols) in img_ir_sony_filter() argument 67 protocols &= RC_PROTO_BIT_SONY12 | RC_PROTO_BIT_SONY15 | in img_ir_sony_filter() 75 if (!is_power_of_2(protocols)) { in img_ir_sony_filter() 77 protocols = RC_PROTO_BIT_SONY20; in img_ir_sony_filter() 79 protocols = RC_PROTO_BIT_SONY15; in img_ir_sony_filter() 81 protocols = RC_PROTO_BIT_SONY12; in img_ir_sony_filter() 84 if (protocols == RC_PROTO_BIT_SONY20) { in img_ir_sony_filter() 90 } else if (protocols == RC_PROTO_BIT_SONY15) { in img_ir_sony_filter()
|
| H A D | img-ir-nec.c | 54 struct img_ir_filter *out, u64 protocols) in img_ir_nec_filter() argument 62 protocols &= RC_PROTO_BIT_NEC | RC_PROTO_BIT_NECX | RC_PROTO_BIT_NEC32; in img_ir_nec_filter() 69 if (!is_power_of_2(protocols)) { in img_ir_nec_filter() 71 protocols = RC_PROTO_BIT_NEC32; in img_ir_nec_filter() 73 protocols = RC_PROTO_BIT_NECX; in img_ir_nec_filter() 75 protocols = RC_PROTO_BIT_NEC; in img_ir_nec_filter() 78 if (protocols == RC_PROTO_BIT_NEC32) { in img_ir_nec_filter() 89 } else if (protocols == RC_PROTO_BIT_NECX) { in img_ir_nec_filter()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/pidgin/pidgin/ |
| H A D | purple-OE-branding-25.patch | 6 libpurple/protocols/irc/irc.h | 4 ++-- 9 diff --git a/libpurple/protocols/irc/irc.h b/libpurple/protocols/irc/irc.h 11 --- a/libpurple/protocols/irc/irc.h 12 +++ b/libpurple/protocols/irc/irc.h
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/wayland/ |
| H A D | wayland-protocols_1.25.bb | 1 SUMMARY = "Collection of additional Wayland protocols" 2 DESCRIPTION = "Wayland protocols that add functionality not \ 3 available in the Wayland core protocol. Such protocols either add \ 6 wayland-protocols." 23 FILES:${PN} += "${datadir}/pkgconfig/wayland-protocols.pc"
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/ |
| H A D | python3-twisted_22.2.0.bb | 2 Twisted supports TCP, UDP, SSL/TLS, multicast, Unix sockets, a large number of protocols … 24 ${PN}-protocols \ 52 ${PN}-protocols \ 72 RDEPENDS:${PN}-conch = "${PN}-core ${PN}-protocols ${PYTHON_PN}-bcrypt ${PYTHON_PN}-cryptography ${… 73 RDEPENDS:${PN}-mail = "${PN}-core ${PN}-protocols" 75 RDEPENDS:${PN}-news = "${PN}-core ${PN}-protocols" 76 RDEPENDS:${PN}-runner = "${PN}-core ${PN}-protocols" 77 RDEPENDS:${PN}-web += "${PN}-core ${PN}-protocols" 87 ${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/haproxy/test/ \ 90 FILES:${PN}-protocols = " \ [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-class-rc | 18 What: /sys/class/rc/rcN/protocols 23 Reading this file returns a list of available protocols, 28 Enabled protocols are shown in [] brackets. 31 protocols. 34 protocols. 38 Writing "none" will disable all protocols. 80 Reading this file returns a list of available protocols to use
|
| /OK3568_Linux_fs/kernel/drivers/media/rc/ |
| H A D | rc-ir-raw.c | 43 handler->protocols || !handler->protocols) in ir_raw_event_thread() 252 if (!(dev->enabled_protocols & handler->protocols) && in change_protocol() 253 (*rc_proto & handler->protocols) && handler->raw_register) in change_protocol() 256 if ((dev->enabled_protocols & handler->protocols) && in change_protocol() 257 !(*rc_proto & handler->protocols) && in change_protocol() 268 if (handler->protocols & *rc_proto) { in change_protocol() 293 static void ir_raw_disable_protocols(struct rc_dev *dev, u64 protocols) in ir_raw_disable_protocols() argument 296 dev->enabled_protocols &= ~protocols; in ir_raw_disable_protocols() 532 if (handler->protocols & mask && handler->encode) { in ir_raw_encode_scancode() 600 if (handler->protocols & mask && handler->encode) { in ir_raw_encode_carrier() [all …]
|
| H A D | rc-main.c | 28 } protocols[] = { variable 723 if (protocol >= ARRAY_SIZE(protocols)) in repeat_period() 726 return protocols[protocol].repeat_period; in repeat_period() 949 if (protocol >= ARRAY_SIZE(protocols)) in rc_validate_filter() 952 mask = protocols[protocol].scancode_bits; in rc_validate_filter() 1031 * used by the sysfs protocols file. Note that the order 1097 * it is triggered by reading /sys/class/rc/rc?/protocols. 1098 * It returns the protocol names of supported protocols. 1099 * Enabled protocols are printed in brackets. 1149 * @protocols: pointer to the bitmask of current protocols [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/rc/ |
| H A D | rc-sysfs-nodes.rst | 34 /sys/class/rc/rcN/protocols 37 Reading this file returns a list of available protocols, something like:: 41 Enabled protocols are shown in [] brackets. 43 Writing "+proto" will add a protocol to the list of enabled protocols. 46 protocols. 50 Writing "none" will disable all protocols. 92 Reading this file returns a list of available protocols to use for the
|
| H A D | lirc-dev-intro.rst | 39 - ir-keytable: can load keymaps; allows you to set IR kernel protocols; load 72 bit is set in protocols that support it (e.g. rc-5 and rc-6), or 73 ``LIRC_SCANCODE_FLAG_REPEAT`` for when a repeat is received for protocols 83 pressing the same button". The rc-5 and rc-6 protocols have a toggle bit. 144 :ref:`IR protocols <Remote_controllers_Protocols>`, but there 145 are many protocols which are not supported. To support these, it is possible
|
| /OK3568_Linux_fs/kernel/include/net/netfilter/ |
| H A D | nf_reject.h | 10 /* Skip protocols that don't use 16-bit one's complement checksum in nf_reject_verify_csum() 14 /* Protocols with other integrity checks. */ in nf_reject_verify_csum() 19 /* Protocols with partial checksums. */ in nf_reject_verify_csum() 23 /* Protocols with optional checksums. */ in nf_reject_verify_csum()
|
| /OK3568_Linux_fs/kernel/drivers/block/paride/ |
| H A D | paride.c | 41 static struct pi_protocol *protocols[MAX_PROTOS]; variable 215 if (protocols[k] && !strcmp(pr->name, protocols[k]->name)) { in paride_register() 221 while ((k < MAX_PROTOS) && (protocols[k])) in paride_register() 227 protocols[k] = pr; in paride_register() 239 if (protocols[pr->index] != pr) { in paride_unregister() 243 protocols[pr->index] = NULL; in paride_unregister() 360 if (!protocols[0]) in pi_init() 367 (!protocols[s]) || (unit < 0) || in pi_init() 368 (unit >= protocols[s]->max_units)) { in pi_init() 374 struct pi_protocol *proto = protocols[p]; in pi_init()
|
| /OK3568_Linux_fs/kernel/net/nfc/ |
| H A D | digital_core.c | 479 pr_debug("protocols: im 0x%x, tm 0x%x, supported 0x%x\n", im_protocols, in digital_start_poll() 480 tm_protocols, ddev->protocols); in digital_start_poll() 482 matching_im_protocols = ddev->protocols & im_protocols; in digital_start_poll() 483 matching_tm_protocols = ddev->protocols & tm_protocols; in digital_start_poll() 543 pr_err("Unsupported protocols: im=0x%x, tm=0x%x\n", in digital_start_poll() 779 ddev->protocols |= NFC_PROTO_JEWEL_MASK; in nfc_digital_allocate_device() 781 ddev->protocols |= NFC_PROTO_MIFARE_MASK; in nfc_digital_allocate_device() 783 ddev->protocols |= NFC_PROTO_FELICA_MASK; in nfc_digital_allocate_device() 785 ddev->protocols |= NFC_PROTO_NFC_DEP_MASK; in nfc_digital_allocate_device() 787 ddev->protocols |= NFC_PROTO_ISO15693_MASK; in nfc_digital_allocate_device() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/ |
| H A D | nfc.h | 43 * @NFC_CMD_START_POLL: start polling for targets using the given protocols 138 * @NFC_ATTR_PROTOCOLS: nfc protocols - bitwise or-ed combination from 149 * @NFC_ATTR_IM_PROTOCOLS: Initiator mode protocols to poll for 150 * @NFC_ATTR_TM_PROTOCOLS: Target mode protocols to listen for 229 /* NFC protocols */ 249 /* NFC protocols masks used in bitsets */ 284 /* NFC socket protocols */
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/ |
| H A D | nfc.h | 43 * @NFC_CMD_START_POLL: start polling for targets using the given protocols 138 * @NFC_ATTR_PROTOCOLS: nfc protocols - bitwise or-ed combination from 149 * @NFC_ATTR_IM_PROTOCOLS: Initiator mode protocols to poll for 150 * @NFC_ATTR_TM_PROTOCOLS: Target mode protocols to listen for 229 /* NFC protocols */ 249 /* NFC protocols masks used in bitsets */ 284 /* NFC socket protocols */
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/ |
| H A D | nfc.h | 43 * @NFC_CMD_START_POLL: start polling for targets using the given protocols 138 * @NFC_ATTR_PROTOCOLS: nfc protocols - bitwise or-ed combination from 149 * @NFC_ATTR_IM_PROTOCOLS: Initiator mode protocols to poll for 150 * @NFC_ATTR_TM_PROTOCOLS: Target mode protocols to listen for 229 /* NFC protocols */ 249 /* NFC protocols masks used in bitsets */ 284 /* NFC socket protocols */
|
| /OK3568_Linux_fs/buildroot/package/libcurl/ |
| H A D | Config.in | 6 protocols. 35 bool "enable extra protocols and features" 38 Enable the following extra protocols and features:
|
| /OK3568_Linux_fs/buildroot/package/wayland-protocols/ |
| H A D | wayland-protocols.mk | 3 # wayland-protocols 8 WAYLAND_PROTOCOLS_SITE = https://gitlab.freedesktop.org/wayland/wayland-protocols/-/releases/$(WAYL… 9 WAYLAND_PROTOCOLS_SOURCE = wayland-protocols-$(WAYLAND_PROTOCOLS_VERSION).tar.xz
|
| /OK3568_Linux_fs/kernel/include/net/ |
| H A D | protocol.h | 17 * Pedro Roque : inet6 protocols 36 /* This is used to register protocols. */ 76 /* This is used to register socket interfaces for IP protocols. */ 90 #define INET_PROTOSW_PERMANENT 0x02 /* Permanent protocols are unremovable. */
|