Searched refs:Protocol (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-11-stable/sys/contrib/edk2/Include/Uefi/
H A DUefiSpec.h24 #include <Protocol/DevicePath.h>
25 #include <Protocol/SimpleTextIn.h>
26 #include <Protocol/SimpleTextInEx.h>
27 #include <Protocol/SimpleTextOut.h>
1131 @param[in] Protocol The numeric ID of the protocol interface.
1138 @retval EFI_INVALID_PARAMETER Protocol is NULL.
1140 @retval EFI_INVALID_PARAMETER Protocol is already installed on the handle specified by Handle.
1147 IN EFI_GUID *Protocol,
1162 @retval EFI_ALREADY_STARTED A Device Path Protocol instance was passed in that is already present in
1165 @retval EFI_INVALID_PARAMETER Protocol i
[all...]
H A DUefiPxe.h1597 /// Protocol type. This will be copied into the media header without
1598 /// doing byte swapping. Protocol type numbers can be obtained from
1601 PXE_UINT16 Protocol; member in struct:s_pxe_cpb_fill_header
1627 /// Protocol type. This will be copied into the media header without
1628 /// doing byte swapping. Protocol type numbers can be obtained from
1631 PXE_MEDIA_PROTOCOL Protocol; member in struct:s_pxe_cpb_fill_header_fragmented
1769 /// Protocol type from media header.
1771 PXE_MEDIA_PROTOCOL Protocol; member in struct:s_pxe_db_receive
/freebsd-11-stable/lib/libefivar/
H A Duefi-dplib.h51 #include <Protocol/DevicePathUtilities.h>
52 #include <Protocol/DebugPort.h>
53 #include <Protocol/DevicePathToText.h>
54 #include <Protocol/DevicePathFromText.h>
H A Defivar-dp-format.c1296 @param Protocol The network protocol ID.
1302 IN UINT16 Protocol
1305 if (Protocol == RFC_1700_TCP_PROTOCOL) {
1307 } else if (Protocol == RFC_1700_UDP_PROTOCOL) {
1310 UefiDevicePathLibCatPrint (Str, "0x%x", Protocol);
1387 CatNetworkProtocol (Str, IPDevPath->Protocol);
1432 CatNetworkProtocol (Str, IPDevPath->Protocol);
1909 UefiDevicePathLibCatPrint (Str, "Media(%36s)", G(&MediaProt->Protocol));
H A Defivar-dp-parse.c1991 IPv4->Protocol = (UINT16) NetworkProtocolFromText (ProtocolStr);
2048 IPv6->Protocol = (UINT16) NetworkProtocolFromText (ProtocolStr);
3074 StrToGuid (GuidStr, &Media->Protocol);
/freebsd-11-stable/stand/efi/include/
H A Defiapi.h456 // Protocol handler functions
467 IN EFI_GUID *Protocol,
476 IN EFI_GUID *Protocol,
485 IN EFI_GUID *Protocol,
493 IN EFI_GUID *Protocol,
500 IN EFI_GUID *Protocol,
515 IN EFI_GUID *Protocol OPTIONAL,
524 IN EFI_GUID *Protocol,
570 IN EFI_GUID *Protocol,
581 IN EFI_GUID *Protocol,
[all...]
H A Definet.h28 // Simple Network Protocol
306 IN UINT16 *Protocol OPTIONAL
321 OUT UINT16 *Protocol OPTIONAL
H A Defidevp.h233 UINT16 Protocol; member in struct:_IPv4_DEVICE_PATH
244 UINT16 Protocol; member in struct:_IPv6_DEVICE_PATH
338 EFI_GUID Protocol; member in struct:_MEDIA_PROTOCOL_DEVICE_PATH
H A Defiip.h121 UINT8 Protocol; member in struct:__anon3979
148 UINT8 Protocol; member in struct:__anon3982
371 UINT8 Protocol; member in struct:_EFI_IP6_OVERRIDE_DATA
/freebsd-11-stable/sys/contrib/edk2/Include/Protocol/
H A DSimpleTextInEx.h22 #include <Protocol/SimpleTextIn.h>
H A DDevicePath.h275 /// Output Protocol. The device path can contain multiple _ADR entries if multiple video output
580 UINT16 Protocol; member in struct:__anon6055
621 UINT16 Protocol; member in struct:__anon6056
650 /// Bit 2 - Console Protocol.
651 /// Bit 3 - Storage Protocol.
652 /// Bit 4 - Network Protocol.
873 /// Network Protocol (0 = TCP, 1+ = reserved).
1045 /// Media Protocol Device Path SubType.
1050 /// The Media Protocol Device Path is used to denote the protocol that is being
1059 EFI_GUID Protocol; member in struct:__anon6074
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/
H A DIndexSymbol.h34 Protocol, member in class:clang::index::SymbolKind
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp118 Info.Kind = SymbolKind::Protocol;
201 Info.Kind = SymbolKind::Protocol;
501 case SymbolKind::Protocol: return "protocol";
/freebsd-11-stable/share/mk/
H A Dtap.test.mk9 # Test Anything Protocol. It should not be used for new tests.
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DODRHash.cpp936 for (auto Protocol : Protocols) {
937 AddDecl(Protocol);
954 for (auto Protocol : Protocols) {
955 AddDecl(Protocol);
H A DDeclObjC.cpp720 for (auto *Protocol : Protocols)
721 if ((MethodDecl = Protocol->lookupMethod(Sel, isInstance)))
1230 if (const auto *Protocol = dyn_cast<ObjCProtocolDecl>(Container)){
1231 for (const auto *P : Protocol->protocols())
1936 assert(!Data.getPointer() && "Protocol already has a definition!");
/freebsd-11-stable/stand/i386/libi386/
H A Dpxe.h191 uint8_t Protocol; member in struct:__anon136
335 uint8_t ProtType; /* Protocol type */
/freebsd-11-stable/stand/efi/libefi/
H A Denv.c38 #include <Protocol/EdidActive.h>
39 #include <Protocol/EdidDiscovered.h>
83 * Protocol names for debug purposes.
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCGNU.cpp128 /// Protocol * type.
1315 auto *&Protocol = ExistingProtocols[Name]; variable
1316 if (!Protocol)
1317 Protocol = GenerateProtocolRef(PD);
1323 llvm::ConstantExpr::getBitCast(Protocol, ProtocolPtrTy), RefName);
1352 auto *&Protocol = ExistingProtocols[ProtocolName]; local
1353 if (Protocol)
1354 return Protocol;
1369 Protocol = new llvm::GlobalVariable(TheModule, ProtocolTy,
1372 return Protocol;
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp4456 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
4457 if (Protocol->hasDefinition())
4458 return Protocol->getDefinition();
4460 return Protocol;
4643 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
4644 for (auto *P : Protocol->protocols())
5919 Builder.AddResultTypeChunk("Protocol *");
6249 if (const auto *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
6250 if (Protocol->hasDefinition()) {
6252 Protocol
[all...]
H A DSema.cpp265 // Create the built-in forward declaratino for 'Protocol'.
266 DeclarationName Protocol = &Context.Idents.get("Protocol"); local
267 if (IdResolver.begin(Protocol) == IdResolver.end())
/freebsd-11-stable/crypto/openssl/ssl/
H A Dssl_conf.c463 SSL_CONF_CMD_STRING(Protocol, NULL),
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp613 ObjCProtocolDecl *Protocol) {
618 if (const ObjCProtocolDecl *PDecl = Protocol->getDefinition())
647 if (const ObjCProtocolDecl *PDecl = Protocol->getDefinition()) {
610 ClassImplementsAllMethodsAndProperties(ASTContext &Ctx, const ObjCImplementationDecl *ImpDecl, const ObjCInterfaceDecl *IDecl, ObjCProtocolDecl *Protocol) argument
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dactbl2.h1359 * Conforms to "Management Component Transport Protocol (MCTP) Host
1368 UINT8 Protocol; member in struct:acpi_table_mchi
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h450 StringView Protocol; member in class:ObjCProtoName
456 : Node(KObjCProtoName), Ty(Ty_), Protocol(Protocol_) {}
458 template<typename Fn> void match(Fn F) const { F(Ty, Protocol); }
468 S += Protocol;
500 s += objcProto->Protocol;

Completed in 694 milliseconds

12