HomeSort by relevance Sort by last modified time
    Searched defs:Protocol (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
pop_options.hpp 36 # undef Protocol
push_options.hpp 36 # if !defined(Protocol) && !defined(id)
37 # define Protocol cpp_Protocol
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
Handle.c 34 Function locates Protocol and/or Handle on which all Protocols specified
48 Interface - The address of a pointer to a protocol interface that will receive
52 ... - A variable argument list containing protocol GUIDs. Must end with NULL.
64 EFI_GUID *Protocol;
77 // Get list of all handles that support the first protocol.
111 // Start with the second protocol, the first one is sure on this handle.
114 Protocol = VA_ARG (args, EFI_GUID *);
121 Protocol = VA_ARG (args, EFI_GUID *);
123 if (Protocol == NULL) {
127 // finding each protocol on a single handle.
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Include/Protocol/
EmuIoThunk.h 40 EFI_GUID *Protocol;
  /external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/
Protocol.java 29 * <h3>Protocol vs Scheme</h3>
32 * the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word <i>protocol</i>
35 public enum Protocol {
52 * Chromium's binary-framed protocol that includes header compression,
57 * href="http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3-1">draft
64 * The IETF's binary-framed protocol that includes header compression,
84 private final String protocol; field in class:Protocol
86 Protocol(String protocol)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Protocol.java 25 * <h3>Protocol vs Scheme</h3>
28 * the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word <i>protocol</i>
31 public enum Protocol {
48 * Chromium's binary-framed protocol that includes header compression,
53 * href="http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3-1">draft
60 * The IETF's binary-framed protocol that includes header compression,
71 private final String protocol; field in class:Protocol
73 Protocol(String protocol)
    [all...]
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
Protocol.java 26 * <h3>Protocol vs Scheme</h3>
29 * the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word <i>protocol</i>
33 public enum Protocol {
50 * Chromium's binary-framed protocol that includes header compression,
55 * href="http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3-1">draft
62 * The IETF's binary-framed protocol that includes header compression,
73 private final String protocol; field in class:Protocol
75 Protocol(String protocol)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/DxeMain/
DxeProtocolNotify.c 2 This file deals with Architecture Protocol (AP) registration in
21 // If a protocol is installed mArchProtocols[].Present will be TRUE.
103 This notify function is registered for every architectural protocol. This handler
104 updates mArchProtocol[] array entry with protocol instance data and sets it's
121 VOID *Protocol;
125 Protocol = NULL;
133 // See if the expected protocol is present in the handle database
135 Status = CoreLocateProtocol (Entry->ProtocolGuid, Entry->Registration, &Protocol);
141 // Mark the protocol as present
146 // Update protocol global variable if one exists. Entry->Protocol points to a global variable
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
UefiDevicePathLibOptionalDevicePathProtocol.c 30 The constructor function caches the pointer to DevicePathUtilites protocol,
31 DevicePathToText protocol and DevicePathFromText protocol.
33 The constructor function locates these three protocols from protocol database.
34 It will caches the pointer to local protocol instance if that operation fails
339 Locate and return the protocol instance identified by the ProtocolGuid.
341 @param ProtocolGuid The GUID of the protocol.
343 @return A pointer to the protocol instance or NULL when absent.
351 VOID *Protocol;
355 (VOID**) &Protocol
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Protocol.java 34 * Protocol name and version.
43 public class Protocol extends SIPObject {
80 /** get the protocol name
87 /** get the protocol version
95 * Get the protocol name + version
109 } else throw new ParseException( "Missing '/' in protocol", 0 );
146 public Protocol() {
153 * $Log: Protocol.java,v $
  /external/python/cpython3/Lib/asyncio/
protocols.py 1 """Abstract Protocol base classes."""
4 'BaseProtocol', 'Protocol', 'DatagramProtocol',
10 """Common base class for protocol interfaces.
13 like Protocol or ProcessProtocol.
51 NOTE: This is the only Protocol callback that is not called
64 class Protocol(BaseProtocol):
65 """Interface for stream protocol.
71 When the user wants to requests a transport, they pass a protocol
101 transport is up to the protocol.
106 """Interface for stream protocol with manual buffer control
    [all...]
  /device/generic/goldfish/wifi/ipv6proxy/
socket.h 37 Stream, // A streaming protocol, use this with Infer for TCP
38 Datagram, // A datagram protocol, use this with Infer for UDP
41 enum class Protocol {
42 Infer, // Infer the protocol from the type, such as TCP for Stream
43 Ip, // Internet Protocol for raw sockets
44 IcmpV6, // ICMPv6 control protocol for Raw sockets
64 Result open(int domain, int type, int protocol);
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Locate.c 27 EFI_GUID *Protocol;
45 protocol.
76 Routine to get the next Handle, when you are searching for register protocol
81 protocol.
113 if (Link != &ProtNotify->Protocol->Protocols) {
123 Routine to get the next Handle, when you are searching for a given protocol.
127 protocol.
180 Return the first Protocol Interface that matches the Protocol GUID. If
181 Registration is pasased in return a Protocol Instance that was just add
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/SataSiI3132Dxe/
SiI3132AtaPassThru.c 63 UINTN Protocol = 0;
74 switch (Packet->Protocol) {
189 SataPort->HostPRB->ProtocolOverride = Protocol;
343 Packet->Acb->AtaCommand, Packet->Protocol));
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/
UsbMass.h 2 Definition of USB Mass Storage Class and its value, USB Mass Transport Protocol,
22 #include <Protocol/BlockIo.h>
23 #include <Protocol/UsbIo.h>
24 #include <Protocol/DevicePath.h>
25 #include <Protocol/DiskInfo.h>
58 Initializes USB transport protocol.
60 This function initializes the USB mass storage class transport protocol.
63 @param UsbIo The USB I/O Protocol instance
67 @retval EFI_UNSUPPORTED The transport protocol doesn't support the device.
79 Execute USB mass storage command through the transport protocol.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/
UsbMouseAbsolutePointer.c 2 USB Mouse Driver that manages USB mouse and produces Absolute Pointer Protocol.
64 @param This The driver binding protocol.
96 // Use the USB I/O Protocol interface to check whether Controller is
119 installs Absolute Pointer Protocol, and submits Asynchronous Interrupt
156 // Open USB I/O Protocol
177 // Get the Device Path Protocol on Controller's handle
271 // Initialize and install EFI Absolute Pointer Protocol.
390 @param This The driver binding protocol.
396 @retval EFI_UNSUPPORTED Absolute Pointer Protocol is not installed on Controller.
493 @param UsbIo Pointer to a USB I/O protocol instance.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/
UsbMouse.c 2 USB Mouse Driver that manages USB mouse and produces Simple Pointer Protocol.
64 @param This The USB mouse driver binding protocol.
96 // Use the USB I/O Protocol interface to check whether Controller is
119 installs Simple Pointer Protocol, and submits Asynchronous Interrupt
156 // Open USB I/O Protocol
177 // Get the Device Path Protocol on Controller's handle
271 // Initialize and install EFI Simple Pointer Protocol.
390 @param This The USB mouse driver binding protocol.
396 @retval EFI_UNSUPPORTED Simple Pointer Protocol is not installed on Controller.
493 @param UsbIo Pointer to a USB I/O protocol instance.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Hand/
Handle.h 2 Support functions for managing protocol.
22 /// IHANDLE - contains a list of protocol handles
40 /// PROTOCOL_ENTRY - each different protocol has 1 entry in the protocol
41 /// database. Each handler that supports this protocol is listed, along
48 /// ID of the protocol
50 /// All protocol interfaces
60 /// PROTOCOL_INTERFACE - each protocol installed on a handle is tracked
61 /// with a protocol interface structure
71 /// The protocol ID
    [all...]
Locate.c 28 EFI_GUID *Protocol;
46 protocol.
59 Routine to get the next Handle, when you are searching for register protocol
64 protocol.
77 Routine to get the next Handle, when you are searching for a given protocol.
81 protocol.
99 @param Protocol The protocol to search for
116 IN EFI_GUID *Protocol OPTIONAL,
144 Position.Protocol = Protocol;
    [all...]
Handle.c 2 UEFI handle & protocol handling.
89 Finds the protocol entry for the requested protocol.
92 @param Protocol The ID of the protocol
95 @return Protocol entry
100 IN EFI_GUID *Protocol,
120 if (CompareGuid (&Item->ProtocolID, Protocol)) {
123 // This is the protocol entry
132 // If the protocol entry was not found and Create is TRUE, then
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Input.h 56 // the same (Dst, Src, Id, Protocol).
61 UINT8 Protocol;
219 The work function to locate IPsec protocol to process the inbound or
232 @retval EFI_SUCCESS The IPsec protocol is not available or disabled.
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/
UefiDevicePathLib.c 2 Library instance that implement UEFI Device Path Library class based on protocol
19 #include <Protocol/DevicePathUtilities.h>
20 #include <Protocol/DevicePathToText.h>
21 #include <Protocol/DevicePathFromText.h>
48 The constructor function caches the pointer to DevicePathUtilites protocol.
50 The constructor function locates DevicePathUtilities protocol from protocol database.
627 Retrieves the device path protocol from a handle.
629 This function returns the device path protocol from the handle specified by Handle.
630 If Handle is NULL or Handle does not contain a device path protocol, then NULL
    [all...]
  /external/clang/test/Analysis/Inputs/
system-header-simulator-objc.h 40 @class NSString, Protocol;
44 @protocol NSObject
51 @end @protocol NSCopying - (id)copyWithZone:(NSZone *)zone;
52 @end @protocol NSMutableCopying - (id)mutableCopyWithZone:(NSZone *)zone;
53 @end @protocol NSCoding - (void)encodeWithCoder:(NSCoder *)aCoder;
67 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/
KeyBoard.c 331 // Locate Hii database protocol
367 @param UsbIo Pointer to a USB I/O protocol instance.
421 // Locate HII Database Protocol
811 UINT8 Protocol;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
UdpIoLib.h 19 #include <Protocol/Udp4.h>
20 #include <Protocol/Udp6.h>
154 } Protocol;
228 protocol installed.
231 @param[in] UdpVersion The UDP protocol version, UDP4 or UDP6.
336 @param[in] HeadLen The length of the upper-layer's protocol header.

Completed in 644 milliseconds

1 2 3