Home
last modified time | relevance | path

Searched refs:ipmbi2cTargetFd (Results 1 – 2 of 2) sorted by relevance

/openbmc/ipmbbridge/
H A Dipmbbridged.cpp354 lseek(ipmbi2cTargetFd, 0, SEEK_SET); in processI2cEvent()
355 ssize_t r = read(ipmbi2cTargetFd, buffer.data(), ipmbMaxFrameLength); in processI2cEvent()
573 ipmbi2cTargetFd = open(ipmbI2cTarget, O_RDWR | O_NONBLOCK | O_CLOEXEC); in ipmbChannelInit()
574 if (ipmbi2cTargetFd < 0) in ipmbChannelInit()
581 i2cTargetDescriptor.assign(ipmbi2cTargetFd); in ipmbChannelInit()
601 if (ipmbi2cTargetFd > 0) in ipmbChannelUpdateTargetAddress()
604 close(ipmbi2cTargetFd); in ipmbChannelUpdateTargetAddress()
605 ipmbi2cTargetFd = 0; in ipmbChannelUpdateTargetAddress()
649 ipmbi2cTargetFd = open(ipmbI2cTargetStr.c_str(), O_RDWR | O_NONBLOCK); in ipmbChannelUpdateTargetAddress()
650 if (ipmbi2cTargetFd < 0) in ipmbChannelUpdateTargetAddress()
[all …]
H A Dipmbbridged.hpp304 int ipmbi2cTargetFd; member in IpmbChannel