HomeSort by relevance Sort by last modified time
    Searched refs:Port (Results 151 - 175 of 438) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/fix/
netipv6zone.go 58 Key: ast.NewIdent("Port"),
  /prebuilts/go/linux-x86/src/net/
udpsock_plan9_test.go 47 c2, err := ListenUDP("udp4", &UDPAddr{IP: IPv4zero, Port: 0})
listen_test.go 19 func (ln *TCPListener) port() string { func
20 _, port, err := SplitHostPort(ln.Addr().String())
24 return port
27 func (c *UDPConn) port() string { func
28 _, port, err := SplitHostPort(c.LocalAddr().String())
32 return port
63 // same port.
84 ln2, err := Listen(tt.network, JoinHostPort(tt.address, ln1.(*TCPListener).port()))
124 // same port.
145 c2, err := ListenPacket(tt.network, JoinHostPort(tt.address, c1.(*UDPConn).port()))
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D02/Library/OemMiscLibD02/
BoardFeatureD02.c 30 .Port = 7,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/
IScsiBootFirmwareTable.h 127 UINT16 Port;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbHub.h 78 // Constant value for Port Status & Port Change Status of SuperSpeed port
99 // Host software return timeout if port status doesn't change
147 @param Port The port of the hub.
159 IN UINT8 Port,
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
IScsiBootFirmwareTable.h 137 UINT16 Port;
  /external/libunwind/src/coredump/
_UCD_access_reg_freebsd.c 114 #error Port me
  /external/libunwind/src/x86_64/
setcontext.S 82 #error Port me
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
AhciMode.h 89 // Port register
200 UINT32 AhciCmdPmp:4; //Port Multiplier Port
308 @param Port The number of port.
309 @param PortMultiplier The number of port multiplier.
322 IN UINT8 Port,
328 Start command for give slot on specific port.
331 @param Port The number of port.
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordSmm/
OpalAhciMode.h 82 // Port register
193 UINT32 AhciCmdPmp:4; //Port Multiplier Port
293 @param Port The number of port.
307 IN UINT8 Port,
360 @param[in] Port The port number to do initialization.
366 UINT8 Port
370 Start a PIO Data transfer on specific port.
    [all...]
  /external/autotest/client/cros/
ec.py 200 """Class for CrOS embedded controller for USB-PD Port.
203 index: integer of USB type-C port index.
206 is_dfp: Determine if data role is Downstream Facing Port (DFP).
207 is_amode_supported: Check if alternate mode is supported by port.
212 _port: integer of USB type-C port id.
217 _invalidate_port_data: Remove port data to force re-eval.
218 _get_port_info: Get USB-PD port info.
219 _get_amodes: parse and return port's svid info.
224 @param index: integer of USB type-C port index.
230 # Interrogate port at instantiation. Use invalidate to force re-eval
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
UnixAsynchronousServerSocketChannelImpl.java 47 implements Port.PollableChannel
51 private final Port port; field in class:UnixAsynchronousServerSocketChannelImpl
78 UnixAsynchronousServerSocketChannelImpl(Port port)
81 super(port);
89 this.port = port;
93 port.register(fdVal, this);
103 port.unregister(fdVal)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
srb.h 4 * Interface between SCSI miniport drivers and the SCSI port driver.
756 IN PUCHAR Port);
762 IN PULONG Port);
768 IN PUSHORT Port);
774 IN PUCHAR Port,
782 IN PULONG Port,
790 IN PUSHORT Port,
840 IN PUCHAR Port,
847 IN PULONG Port,
854 IN PUSHORT Port,
    [all...]
video.h 4 * Video port and miniport driver interface
591 IN ULONG Port,
598 IN ULONG Port,
606 IN ULONG Port,
613 IN ULONG Port,
621 IN ULONG Port,
628 IN ULONG Port,
828 /* Video port functions for miniports */
1077 IN PUCHAR Port,
1085 IN PULONG Port,
    [all...]
  /prebuilts/go/darwin-x86/src/net/
listen_test.go 19 func (ln *TCPListener) port() string { func
20 _, port, err := SplitHostPort(ln.Addr().String())
24 return port
27 func (c *UDPConn) port() string { func
28 _, port, err := SplitHostPort(c.LocalAddr().String())
32 return port
63 // same port.
84 ln2, err := Listen(tt.network, JoinHostPort(tt.address, ln1.(*TCPListener).port()))
124 // same port.
145 c2, err := ListenPacket(tt.network, JoinHostPort(tt.address, c1.(*UDPConn).port()))
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
syscall_bsd.go 147 if sa.Port < 0 || sa.Port > 0xFFFF {
152 p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
153 p[0] = byte(sa.Port >> 8)
154 p[1] = byte(sa.Port)
162 if sa.Port < 0 || sa.Port > 0xFFFF {
167 p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
168 p[0] = byte(sa.Port >> 8)
169 p[1] = byte(sa.Port)
    [all...]
syscall_solaris.go 72 if sa.Port < 0 || sa.Port > 0xFFFF {
76 p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
77 p[0] = byte(sa.Port >> 8)
78 p[1] = byte(sa.Port)
86 if sa.Port < 0 || sa.Port > 0xFFFF {
90 p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
91 p[0] = byte(sa.Port >> 8)
92 p[1] = byte(sa.Port)
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
syscall_bsd.go 147 if sa.Port < 0 || sa.Port > 0xFFFF {
152 p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
153 p[0] = byte(sa.Port >> 8)
154 p[1] = byte(sa.Port)
162 if sa.Port < 0 || sa.Port > 0xFFFF {
167 p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
168 p[0] = byte(sa.Port >> 8)
169 p[1] = byte(sa.Port)
    [all...]
syscall_solaris.go 72 if sa.Port < 0 || sa.Port > 0xFFFF {
76 p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
77 p[0] = byte(sa.Port >> 8)
78 p[1] = byte(sa.Port)
86 if sa.Port < 0 || sa.Port > 0xFFFF {
90 p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
91 p[0] = byte(sa.Port >> 8)
92 p[1] = byte(sa.Port)
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
Ide.c 24 read a one-byte data from a IDE port.
27 @param Port the IDE Port number
29 @return the one-byte data read from IDE port
34 IN UINT16 Port
47 (UINT64) Port,
54 Reads multiple words of data from the IDE data port.
59 @param Port IO port to read
67 IN UINT16 Port,
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcSupport.c 491 @param[in, out] SrcPort The pointer to the source port.
560 @param[in, out] SrcPort The pointer to the source port.
958 Check the received packet using the destination port.
962 @param[in, out] DestPort The pointer to the destination port.
977 UINT16 Port;
980 Port = ((EFI_UDP6_SESSION_DATA *) Session)->DestinationPort;
982 Port = ((EFI_UDP4_SESSION_DATA *) Session)->DestinationPort;
987 // Return the destination port in the received packet if accept any.
990 *DestPort = Port;
993 } else if (DestPort != NULL && *DestPort == Port) {
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D02/FdtUpdateLibD02/
FdtUpdateLib.c 69 GetMacAddress (UINT32 Port)
82 Status = OemNic->GetMac(&Mac, Port);
95 DEBUG((EFI_D_ERROR, "Port%d:0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
96 Port,gMacAddress[0].data0,gMacAddress[0].data1,gMacAddress[0].data2,
106 UINT8 port; local
122 for( port=0; port<8; port++ )
124 (VOID) GetMacAddress(port);
125 ethernetnode=fdt_subnode_offset(Fdt, node,EthName[port]);
    [all...]
  /external/webrtc/webrtc/p2p/base/
stunport_unittest.cc 54 const cricket::Port* port() const { return stun_port_.get(); } function in class:StunPortTest
120 void OnPortComplete(cricket::Port* port) {
125 void OnPortError(cricket::Port* port) {
155 // Test that we can create a STUN port
158 EXPECT_EQ("stun", port()->Type());
159 EXPECT_EQ(0U, port()->Candidates().size());
167 ASSERT_EQ(1U, port()->Candidates().size())
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Include/Library/
PlatformSysCtrlLib.h 52 UINTN PlatformGetI2cBase(UINT32 Socket,UINT8 Port);

Completed in 948 milliseconds

1 2 3 4 5 67 8 91011>>