Searched refs:interface (Results 101 - 125 of 293) sorted by relevance

1234567891011>>

/haiku/src/kits/debugger/debug_info/
H A DSpecificImageDebugInfo.cpp24 BObjectList<FunctionDebugInfo>& functions, DebuggerInterface* interface,
22 GetFunctionsFromSymbols( const BObjectList<SymbolInfo>& symbols, BObjectList<FunctionDebugInfo>& functions, DebuggerInterface* interface, const ImageInfo& imageInfo, SpecificImageDebugInfo* info) argument
H A DDwarfTeamDebugInfo.h26 DebuggerInterface* interface,
H A DDwarfTeamDebugInfo.cpp25 DebuggerInterface* interface, FileManager* fileManager,
30 fDebuggerInterface(interface),
24 DwarfTeamDebugInfo(Architecture* architecture, DebuggerInterface* interface, FileManager* fileManager, GlobalTypeLookup* typeLookup, TeamFunctionSourceInformation* sourceInfo, GlobalTypeCache* typeCache) argument
/haiku/headers/private/kernel/boot/net/
H A DNetStack.h31 status_t AddEthernetInterface(EthernetInterface *interface);
/haiku/src/add-ons/kernel/network/ppp/modem/
H A DACFCHandler.h32 ACFCHandler(uint32 options, KPPPInterface& interface);
H A DACFCHandler.cpp14 ACFCHandler::ACFCHandler(uint32 options, KPPPInterface& interface) argument
15 : KPPPOptionHandler("ACFC Handler", kACFCType, interface, NULL),
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A D_KPPPPFCHandler.cpp15 ppp_pfc_state& peerPFCState, KPPPInterface& interface)
16 : KPPPOptionHandler("PFC Handler", kPFCType, interface, NULL),
14 _KPPPPFCHandler(ppp_pfc_state& localPFCState, ppp_pfc_state& peerPFCState, KPPPInterface& interface) argument
H A DKPPPDevice.cpp25 \param interface Owning interface.
28 KPPPDevice::KPPPDevice(const char *name, uint32 overhead, KPPPInterface& interface, argument
32 fInterface(interface),
39 //! Destructor. Removes device from interface.
94 // let the interface handle the packet
H A DKPPPOptionHandler.cpp23 \param interface Owning interface.
27 KPPPInterface& interface, driver_parameter *settings)
31 fInterface(interface),
26 KPPPOptionHandler(const char *name, uint8 type, KPPPInterface& interface, driver_parameter *settings) argument
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/
H A DPPPInterface.cpp7 \brief This class represents a PPP interface living in kernel space.
9 Use this class to control PPP interfaces and get the current interface settings.
31 /*! \brief Sets the interface to \a ID.
33 \param ID The ID of the new interface.
71 - \c B_OK: Object could be initialized successfully and the interface exists.
72 - \c B_BAD_INDEX: The interface does not exist.
88 /*! \brief Changes the current interface.
90 If this fails it will set the interface's \a ID to \c PPP_UNDEFINED_INTERFACE_ID.
92 \param ID The ID of the new interface.
95 - \c B_OK: Object could be initialized successfully and the interface exist
[all...]
/haiku/src/add-ons/kernel/network/ppp/pap/
H A DProtocol.h33 PAPHandler(PAP& owner, KPPPInterface& interface);
50 PAP(KPPPInterface& interface, driver_parameter *settings);
/haiku/src/apps/debugger/user_interface/gui/teams_window/
H A DTeamsListView.h109 TargetHostInterface* interface);
119 void _SetInterface(TargetHostInterface* interface);
/haiku/src/apps/powerstatus/
H A DExtendedInfoWindow.h50 PowerStatusDriverInterface* interface,
100 ExtendedInfoWindow(PowerStatusDriverInterface* interface);
/haiku/src/system/boot/platform/openfirmware/
H A Dnetwork.cpp315 OFEthernetInterface *interface = new(nothrow) OFEthernetInterface; local
316 if (!interface)
319 status_t error = interface->Init(bootPath, parameters + 1);
321 delete interface;
326 error = NetStack::Default()->AddEthernetInterface(interface);
328 delete interface;
/haiku/src/kits/network/libnetapi/
H A DNetworkRoster.cpp24 // information as AF_INET for the interface functions mostly.
55 BNetworkInterface& interface) const
92 interface.SetTo(interfaces[0].ifr_name);
125 BNetworkRoster::AddInterface(const BNetworkInterface& interface) argument
127 return AddInterface(interface.Name());
151 BNetworkRoster::RemoveInterface(const BNetworkInterface& interface) argument
153 return RemoveInterface(interface.Name());
H A DNetworkRoute.cpp283 ifreq* interface = (ifreq*)buffer;
286 while (interface < end) {
287 route_entry& routeEntry = interface->ifr_route;
290 || strcmp(interface->ifr_name, interfaceName) == 0)
320 interface = (ifreq *)((addr_t)interface + IF_NAMESIZE
/haiku/src/add-ons/kernel/drivers/input/usb_hid/
H A DHIDDevice.cpp68 = config->interface[interfaceIndex].active;
167 usb_interface_info *interface = config->interface[interfaceIndex].active; local
168 for (size_t i = 0; i < interface->endpoint_count; i++) {
169 usb_endpoint_descriptor *descriptor = interface->endpoint[i].descr;
174 fInterruptPipe = interface->endpoint[i].handle;
/haiku/src/add-ons/network_settings/dialup/
H A DDialUpView.cpp69 static const char *kTextCreationError = "Error creating interface!";
70 static const char *kTextNoInterfacesFound = "Please create a new interface...";
72 "interface.";
77 static const char *kErrorInterfaceExists = "Error: An interface with this name "
79 static const char *kErrorLoadingFailed = "Error: Failed loading interface! The "
81 static const char *kErrorSavingFailed = "Error: Failed saving interface settings!";
232 // this stops watching the deleted interface
425 PPPInterface interface; local
427 interface = fListener.Manager().InterfaceWithName(fCurrentItem->Label());
428 if(interface
[all...]
/haiku/src/apps/debugger/
H A DDebugger.cpp74 " -c, --cli - Use command line user interface\n"
257 status_t _ShowStartTeamWindow(TargetHostInterface* interface);
258 status_t _StartNewTeam(TargetHostInterface* interface,
367 if (message->FindPointer("interface",
369 // if an interface isn't explicitly supplied, fall back to
370 // the default local interface.
412 TargetHostInterface* interface = NULL; local
413 if (message->FindPointer("interface", reinterpret_cast<void**>(
414 &interface)) != B_OK) {
415 // No interface specifie
448 TargetHostInterface* interface; local
468 TargetHostInterface* interface; local
599 _ShowStartTeamWindow(TargetHostInterface* interface) argument
616 _StartNewTeam(TargetHostInterface* interface, const char* path, const char* args) argument
[all...]
/haiku/src/apps/haikudepot/ui/
H A DUserUsageConditionsWindow.cpp157 /*! This sets up the UI controls / interface elements that are not specific to
273 WebAppInterface* interface = fModel.GetWebAppInterface(); local
294 if (interface->RetrieveUserUsageConditions(code, conditions) == B_OK) {
337 WebAppInterface* interface = fModel.GetWebAppInterface(); local
339 if (interface->Nickname().IsEmpty())
344 status_t result = interface->RetrieveCurrentUserDetail(responseEnvelopeMessage);
370 interface->Nickname().String(),
375 interface->Nickname().String());
/haiku/src/add-ons/kernel/drivers/audio/usb/
H A DStream.cpp18 Stream::Stream(Device* device, size_t interface, usb_interface_list* List) argument
20 AudioStreamingInterface(&device->AudioControl(), interface, List),
55 TRACE(INF, "Ignore alternate %d - zero interface description.\n", i);
242 usb_interface_info* interface local
243 = &config->interface[fInterface].alt[fActiveAlternate];
244 if (interface == NULL) {
245 TRACE(ERR, "NULL interface. Not set.\n");
249 status_t status = gUSBModule->set_alt_interface(device, interface);
254 for (size_t i = 0; i < interface->endpoint_count; i++) {
255 if (address == interface
[all...]
/haiku/src/add-ons/print/transports/usb_port/
H A DUSBTransport.cpp28 // printer interface types
41 const BUSBInterface *interface, const BUSBEndpoint *in, const BUSBEndpoint *out);
113 // Try to find a working printer interface in this device
117 const BUSBInterface *interface = config->InterfaceAt(idx); local
118 for (uint32 alt = 0; alt < interface->CountAlternates(); alt++) {
119 const BUSBInterface *alternate = interface->AlternateAt(alt);
125 // Found a usable Printer interface!
143 ((BUSBInterface*)interface)->SetAlternate(alt);
152 // We found a working printer interface, lets determine a unique ID
238 // Implementation of transport add-on interface
[all...]
/haiku/src/kits/device/
H A DUSBEndpoint.cpp15 BUSBEndpoint::BUSBEndpoint(BUSBInterface *interface, uint32 index, int rawFD) argument
16 : fInterface(interface),
164 command.transfer.interface = fInterface->Index();
184 command.transfer.interface = fInterface->Index();
205 command.isochronous.interface = fInterface->Index();
/haiku/headers/private/net/
H A Dnet_datalink.h37 struct net_interface* interface; member in struct:net_interface_address
90 void (*put_interface)(net_interface* interface);
94 bool (*get_next_interface_address)(net_interface* interface,
98 status_t (*join_multicast)(net_interface* interface,
100 status_t (*leave_multicast)(net_interface* interface,
/haiku/src/system/boot/loader/net/
H A DEthernet.cpp84 EthernetService::Init(EthernetInterface *interface) argument
86 if (!interface)
89 fInterface = interface;
181 // read from the interface

Completed in 109 milliseconds

1234567891011>>