/external/grub/netboot/ |
sis900.c | 83 static void sis900_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex); 84 static void amd79c901_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex); 85 static void ics1893_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex); 86 static void rtl8201_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex); 92 void (*read_mode) (struct nic *nic, int phy_addr, int *speed, int *duplex); 692 int speed, duplex; 695 mii.chip_info->read_mode(nic, cur_phy, &speed, &duplex); 709 if (duplex == FDX_CAPABLE_FULL_SELECTED) { 722 * Description: retrieves and displays speed and duplex 731 sis900_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex) 679 int speed, duplex; local [all...] |
w89c840.c | 249 unsigned int full_duplex:1; /* Full-duplex operation requested. */ 852 int duplex; local 857 duplex = (negotiated & 0x0100) || (negotiated & 0x01C0) == 0x0040; 858 if (w840private.full_duplex != duplex) { 859 w840private.full_duplex = duplex; 862 printf("winbond-840 : Setting %s-duplex based on MII # %d negotiated capability %X\n", 863 duplex ? "full" : "half", w840private.phys[0], negotiated); 867 w840private.csr6 |= duplex ? 0x200 : 0;
|
fa311.c | 126 int duplex; local 182 { /* Full duplex */ 194 duplex = readl(dev->ioaddr + ChipConfig) & 0x20000000 ? 1 : 0; 195 if (duplex) {
|
natsemi.c | 300 "10%s %s duplex.\n", 430 if (inl(ioaddr + ChipConfig) & 0x20000000) { /* Full duplex */ 575 int duplex = inl(ioaddr + ChipConfig) & 0x20000000 ? 1 : 0; 578 printf("%s: Setting %s-duplex based on negotiated link" 580 duplex ? "full" : "half"); 581 if (duplex) { 574 int duplex = inl(ioaddr + ChipConfig) & 0x20000000 ? 1 : 0; local
|
tlan.c | 783 priv->duplex == TLAN_DUPLEX_HALF) { 786 priv->duplex == TLAN_DUPLEX_FULL) { 790 priv->duplex == TLAN_DUPLEX_HALF) { 793 priv->duplex == TLAN_DUPLEX_FULL) { 829 if ( priv->duplex == TLAN_DUPLEX_FULL ) { 897 if ( ( priv->duplex == TLAN_DUPLEX_FULL ) || ( an_adv & an_lpa & 0x0040 ) ) { 899 printk( "TLAN: Starting internal PHY with FULL-DUPLEX\n" ); 902 printk( "TLAN: Starting internal PHY with HALF-DUPLEX\n" ); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/ |
connection.py | 63 def Pipe(duplex=True):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/ |
connection.py | 63 def Pipe(duplex=True):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
connection.py | 183 def Pipe(duplex=True): 187 if duplex: 205 def Pipe(duplex=True): 210 if duplex: 238 c1 = _multiprocessing.PipeConnection(h1, writable=duplex) 239 c2 = _multiprocessing.PipeConnection(h2, readable=duplex)
|
__init__.py | 102 def Pipe(duplex=True): 107 return Pipe(duplex)
|
queues.py | 62 self._reader, self._writer = Pipe(duplex=False) 351 self._reader, self._writer = Pipe(duplex=False)
|
managers.py | 514 reader, writer = connection.Pipe(duplex=False) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
connection.py | 183 def Pipe(duplex=True): 187 if duplex: 205 def Pipe(duplex=True): 210 if duplex: 238 c1 = _multiprocessing.PipeConnection(h1, writable=duplex) 239 c2 = _multiprocessing.PipeConnection(h2, readable=duplex)
|
__init__.py | 102 def Pipe(duplex=True): 107 return Pipe(duplex)
|
queues.py | 62 self._reader, self._writer = Pipe(duplex=False) 351 self._reader, self._writer = Pipe(duplex=False)
|
managers.py | 514 reader, writer = connection.Pipe(duplex=False) [all...] |
/bionic/libc/kernel/common/linux/ |
ethtool.h | 29 __u8 duplex; member in struct:ethtool_cmd
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
ethtool.h | 22 __u8 duplex; /* Duplex, half or full */ member in struct:ethtool_cmd 371 /* Duplex, half or full. */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
ethtool.h | 22 __u8 duplex; /* Duplex, half or full */ member in struct:ethtool_cmd 371 /* Duplex, half or full. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
ethtool.h | 22 __u8 duplex; /* Duplex, half or full */ member in struct:ethtool_cmd 371 /* Duplex, half or full. */
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/ |
ethtool.h | 22 __u8 duplex; member in struct:ethtool_cmd
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/ |
ethtool.h | 22 __u8 duplex; member in struct:ethtool_cmd
|
/external/kernel-headers/original/linux/ |
ethtool.h | 23 __u8 duplex; /* Duplex, half or full */ member in struct:ethtool_cmd 526 /* Duplex, half or full. */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_multiprocessing.py | 310 rconn, wconn = self.Pipe(duplex=False) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_multiprocessing.py | 310 rconn, wconn = self.Pipe(duplex=False) [all...] |