Home
last modified time | relevance | path

Searched refs:KPPPDevice (Results 1 – 11 of 11) sorted by relevance

/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPDevice.cpp28 KPPPDevice::KPPPDevice(const char *name, uint32 overhead, KPPPInterface& interface, in KPPPDevice() function in KPPPDevice
40 KPPPDevice::~KPPPDevice() in ~KPPPDevice()
52 KPPPDevice::Control(uint32 op, void *data, size_t length) in Control()
83 KPPPDevice::IsAllowedToSend() const in IsAllowedToSend()
92 KPPPDevice::Receive(net_buffer *packet, uint16 protocolNumber) in Receive()
112 KPPPDevice::UpStarted() in UpStarted()
129 KPPPDevice::DownStarted() in DownStarted()
139 KPPPDevice::UpFailedEvent() in UpFailedEvent()
149 KPPPDevice::UpEvent() in UpEvent()
159 KPPPDevice::DownEvent() in DownEvent()
H A DJamfile18 KPPPDevice.cpp
H A DKPPPInterface.cpp955 KPPPInterface::SetDevice(KPPPDevice *device) in SetDevice()
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DKPPPDevice.h19 class KPPPDevice : public KPPPLayer {
24 KPPPDevice(const char *name, uint32 overhead, KPPPInterface& interface,
28 virtual ~KPPPDevice();
H A DKPPPInterface.h39 class KPPPDevice; variable
128 bool SetDevice(KPPPDevice *device);
130 KPPPDevice *Device() const in Device()
292 KPPPDevice *fDevice;
/haiku/docs/user/ppp/
H A DKernelPPPIntro.dox25 - KPPPDevice (a PPP transport device: PPPoE, modem, cell phone, etc.)
32 KPPPInterface, KPPPDevice, and KPPPProtocol derive from KPPPLayer. When sending,
36 A different system is used for receiving packets: KPPPDevice passes the received
/haiku/src/add-ons/kernel/network/ppp/pppoe/
H A DPPPoEDevice.h27 class PPPoEDevice : public KPPPDevice {
H A DPPPoEDevice.cpp62 : KPPPDevice("PPPoE", PPPoE_HEADER_SIZE + ETHER_HDR_LEN, interface, settings), in PPPoEDevice()
114 if (KPPPDevice::InitCheck() != B_OK) in InitCheck()
117 return KPPPDevice::InitCheck() == B_OK ? B_OK : B_ERROR; in InitCheck()
/haiku/src/add-ons/kernel/network/ppp/modem/
H A DModemDevice.h26 class ModemDevice : public KPPPDevice {
H A DModemDevice.cpp181 : KPPPDevice("Modem", 0, interface, settings), in ModemDevice()
227 && KPPPDevice::InitCheck() == B_OK ? B_OK : B_ERROR; in InitCheck()
/haiku/src/tests/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DJamfile10 KPPPDevice.cpp