Searched refs:interface (Results 26 - 50 of 293) sorted by relevance

1234567891011>>

/haiku/src/add-ons/accelerants/skeleton/engine/
H A Dagp.c123 if (eng_ai.interface.agp_stat & AGP_rate_rev) nca.cmd |= AGP_rate_rev;
129 eng_agp_list_active(nca.cmd | (eng_ai.interface.agp_stat & AGP_rate_rev));
153 ((ai.interface.agp_cap_id & AGP_rev_major) >> AGP_rev_major_shift),
154 ((ai.interface.agp_cap_id & AGP_rev_minor) >> AGP_rev_minor_shift)));
157 if (!(ai.interface.agp_stat & AGP_rate_rev))
160 if (ai.interface.agp_stat & AGP_2_1x)
162 if (ai.interface.agp_stat & AGP_2_2x)
164 if (ai.interface.agp_stat & AGP_2_4x)
170 if (ai.interface.agp_stat & AGP_3_4x)
172 if (ai.interface
[all...]
/haiku/src/add-ons/accelerants/nvidia/engine/
H A Dnv_agp.c122 if (nv_ai.interface.status & AGP_3_MODE)
132 nv_agp_list_active(nca.cmd | (nv_ai.interface.status & AGP_3_MODE));
158 ((ai.interface.capability_id & AGP_REV_MAJOR) >> AGP_REV_MAJOR_SHIFT),
159 ((ai.interface.capability_id & AGP_REV_MINOR) >> AGP_REV_MINOR_SHIFT)));
162 if (!(ai.interface.status & AGP_3_MODE)) {
164 if (ai.interface.status & AGP_2_1x)
166 if (ai.interface.status & AGP_2_2x)
168 if (ai.interface.status & AGP_2_4x)
172 if (ai.interface.status & AGP_3_4x)
174 if (ai.interface
[all...]
/haiku/src/servers/app/
H A DScreenManager.cpp45 virtual void ScreenChanged(HWInterface* interface);
62 ScreenChangeListener::ScreenChanged(HWInterface* interface) argument
142 HWInterface* interface; local
144 interface = new(nothrow) ViewHWInterface();
146 interface = new(nothrow) RemoteHWInterface(target);
148 if (interface != NULL) {
149 screen_item* item = _AddHWInterface(interface);
195 HWInterface* interface = NULL; local
207 interface = new AccelerantHWInterface();
209 _AddHWInterface(interface);
217 _AddHWInterface(HWInterface* interface) argument
[all...]
/haiku/src/bin/listusb/
H A Dlistusb.cpp84 DumpInterface(const BUSBInterface* interface) argument
86 if (!interface)
90 usb_get_class_info(interface->Class(), 0, 0, classInfo, sizeof(classInfo));
92 interface->Class(), classInfo);
93 usb_get_class_info(interface->Class(), interface->Subclass(), 0, classInfo, sizeof(classInfo));
95 interface->Subclass(), classInfo);
96 usb_get_class_info(interface->Class(), interface->Subclass(), interface
149 const BUSBInterface* interface = configuration->InterfaceAt(i); local
[all...]
/haiku/src/kits/debugger/target_host_interface/network/
H A DNetworkTargetHostInterfaceInfo.cpp96 NetworkTargetHostInterface* interface local
98 if (interface == NULL)
101 status_t error = interface->Init(settings);
103 delete interface;
107 _interface = interface;
/haiku/src/add-ons/kernel/network/stack/
H A Dstack_private.h41 status_t get_domain_datalink_protocols(Interface* interface,
43 status_t put_domain_datalink_protocols(Interface* interface,
47 status_t notify_interface_added(net_interface* interface);
48 status_t notify_interface_removed(net_interface* interface);
49 status_t notify_interface_changed(net_interface* interface, uint32 oldFlags = 0,
H A Ddatalink.cpp63 CODE(SIOCSIFADDR) /* set interface address */
64 CODE(SIOCGIFADDR) /* get interface address */
67 CODE(SIOCSIFFLAGS) /* set interface flags */
68 CODE(SIOCGIFFLAGS) /* get interface flags */
72 CODE(SIOCGIFCONF) /* get interface list */
73 CODE(SIOCGIFINDEX) /* interface name -> index */
74 CODE(SIOCGIFNAME) /* interface index -> name */
77 CODE(SIOCGIFMETRIC) /* get interface metric */
78 CODE(SIOCSIFMETRIC) /* set interface metric */
79 CODE(SIOCDIFADDR) /* delete interface addres
368 Interface* interface = (Interface*)address->interface; local
576 datalink_put_interface(net_interface* interface) argument
610 Interface* interface = (Interface*)_interface; local
634 Interface* interface = (Interface*)_interface; local
646 Interface* interface = (Interface*)_interface; local
672 interface_protocol_init(net_interface* interface, net_domain* domain, net_datalink_protocol** _protocol) argument
707 Interface* interface = (Interface*)protocol->interface; local
733 Interface* interface = (Interface*)protocol->interface; local
781 Interface* interface = (Interface*)protocol->interface; local
[all...]
H A Dinterfaces.cpp97 while (Interface* interface = iterator.Next()) {
98 dprintf("%p: %s, %ld\n", interface, interface->name,
99 interface->CountReferences());
116 Interface* interface = NULL; local
119 while ((interface = iterator.Next()) != NULL) {
120 if (!strcmp(argv[1], interface->name))
124 if (interface == NULL)
125 interface = (Interface*)parse_expression(argv[1]);
127 interface
1265 remove_interface(Interface* interface) argument
1288 Interface* interface = find_interface(deviceInterface->device->name); local
1295 add_interface_address(Interface* interface, net_domain_private* domain, const ifaliasreq& request) argument
1419 Interface* interface; local
1445 Interface* interface = find_interface(name); local
[all...]
H A Dnotifications.cpp26 notify_interface_added(net_interface* interface) argument
35 message.AddString("interface", interface->name);
42 notify_interface_removed(net_interface* interface) argument
51 message.AddString("interface", interface->name);
58 notify_interface_changed(net_interface* interface, uint32 oldFlags, argument
68 message.AddString("interface", interface->name);
H A Ddevice_interfaces.h33 // a device can be brought up by more than one interface
55 net_device_interface* acquire_device_interface(net_device_interface* interface);
56 void get_device_interface_address(net_device_interface* interface,
60 void put_device_interface(struct net_device_interface* interface);
64 void device_interface_monitor_receive(net_device_interface* interface,
66 status_t up_device_interface(net_device_interface* interface);
67 void down_device_interface(net_device_interface* interface);
/haiku/headers/os/net/
H A DNetworkRoster.h24 BNetworkInterface& interface) const;
28 const BNetworkInterface& interface);
31 const BNetworkInterface& interface);
/haiku/src/kits/debugger/target_host_interface/
H A DTargetHostInterfaceRoster.cpp40 for (int32 i = 0; TargetHostInterface* interface
42 if (interface->Lock())
43 interface->Quit();
140 // TODO: this should eventually verify that an active interface with
142 // directly rather than instantiating a new one, since i.e. the interface
145 TargetHostInterface* interface; local
146 status_t error = info->CreateInterface(settings, interface);
150 error = interface->Run();
151 if (error < B_OK || !fActiveInterfaces.AddItem(interface)) {
152 delete interface;
193 TargetHostInterfaceQuit( TargetHostInterface* interface) argument
[all...]
/haiku/src/add-ons/network_settings/ipv4/
H A DIPv4InterfaceAddOn.cpp32 const char* interface);
38 IPv4InterfaceItem(const char* interface,
62 IPv4InterfaceItem::IPv4InterfaceItem(const char* interface, argument
65 BNetworkSettingsInterfaceItem(interface),
140 const char* interface)
143 return new IPv4InterfaceItem(interface, Settings());
139 CreateNextInterfaceItem(uint32& cookie, const char* interface) argument
/haiku/src/add-ons/network_settings/ipv6/
H A DIPv6InterfaceAddOn.cpp32 const char* interface);
38 IPv6InterfaceItem(const char* interface,
62 IPv6InterfaceItem::IPv6InterfaceItem(const char* interface, argument
65 BNetworkSettingsInterfaceItem(interface),
140 const char* interface)
143 return new IPv6InterfaceItem(interface, Settings());
139 CreateNextInterfaceItem(uint32& cookie, const char* interface) argument
/haiku/src/add-ons/kernel/drivers/ports/usb_serial/
H A DProlific.cpp36 usb_interface_info *interface = config->interface[0].active; local
37 for (size_t i = 0; i < interface->endpoint_count; i++) {
38 usb_endpoint_info *endpoint = &interface->endpoint[i];
49 interface = config->interface[1].active;
51 for (size_t i = 0; i < interface->endpoint_count; i++) {
52 usb_endpoint_info *endpoint = &interface->endpoint[i];
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/
H A DPPPManager.cpp77 //! Sets the default interface.
109 //! Returns the name of the default interface.
151 /*! \brief Offers an ioctl()-like interface to all functions of the PPP stack.
215 /*! \brief Creates a nameless interface with the given settings.
219 \return the new interface's ID or \c PPP_UNDEFINED_INTERFACE_ID on failure.
230 return info.interface;
234 /*! \brief Creates an interface with the given name.
236 If the interface already exists its ID will be returned.
238 \param name The PPP interface description file's name.
240 \return the new interface'
420 PPPInterface interface; local
456 PPPInterface interface; local
537 BNetworkInterface interface; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/usb_ecm/
H A DECMDevice.cpp102 // reset the device by switching the data interface to the disabled first
103 // interface and then enable it by setting the second actual data interface
108 &config->interface[fDataInterfaceIndex].alt[0]);
113 &config->interface[fDataInterfaceIndex].alt[1]);
115 &config->interface[fControlInterfaceIndex].alt[0]);
119 usb_interface_info *interface = config->interface[fDataInterfaceIndex].active; local
120 if (interface->endpoint_count < 2) {
121 TRACE_ALWAYS("setting the data alternate interface faile
398 const usb_interface_info *interface = config->interface[j].active; local
451 usb_interface_info *interface = config->interface[controlIndex].active; local
[all...]
/haiku/headers/cpp/
H A Dpfstream.h30 #pragma interface
H A Dprocbuf.h30 #pragma interface
/haiku/src/kits/debugger/debug_info/
H A DImageDebugLoadingStateHandler.h26 UserInterface* interface) = 0;
/haiku/src/apps/pulse/
H A DPulseWindow.h15 #include <interface/Window.h>
/haiku/src/servers/net/
H A DAutoconfigLooper.cpp71 // set IFF_CONFIGURING flag on interface
73 BNetworkInterface interface(fDevice.String());
74 int32 flags = interface.Flags() & ~IFF_AUTO_CONFIGURED;
75 interface.SetFlags(flags | IFF_CONFIGURING);
88 if ((interface.Flags() & IFF_CONFIGURING) == 0) {
89 // Someone else configured the interface in the mean time
99 if (interface.GetHardwareAddress(link) == B_OK) {
131 BNetworkInterface interface(fDevice.String());
132 if (interface.HasLink()) {
149 if (message->FindString("interface",
[all...]
/haiku/src/add-ons/kernel/network/datalink_protocols/loopback_frame/
H A Dloopback_frame.cpp46 loopback_frame_init(struct net_interface*interface, net_domain* domain,
49 if (interface->device->type != IFT_LOOP && interface->device->type != IFT_TUNNEL)
58 status = stack->register_device_deframer(interface->device,
63 if (interface->device->type == IFT_LOOP) {
66 } else if (interface->device->type == IFT_TUNNEL) {
68 interface->device, B_NET_FRAME_TYPE_IPV4, domain);
85 stack->unregister_device_deframer(interface->device);
97 stack->unregister_device_deframer(protocol->interface->device);
98 stack->unregister_device_handler(protocol->interface
[all...]
/haiku/src/kits/debugger/target_host_interface/local/
H A DLocalTargetHostInterface.cpp162 LocalDebuggerInterface* interface local
164 if (interface == NULL)
167 BReference<DebuggerInterface> interfaceReference(interface, true);
168 error = interface->Init();
172 _interface = interface;
206 // create the debugger interface
207 CoreFileDebuggerInterface* interface
209 if (interface == NULL)
213 BReference<DebuggerInterface> interfaceReference(interface, true);
214 error = interface
244 LocalTargetHostInterface* interface = (LocalTargetHostInterface*)arg; local
[all...]
/haiku/src/add-ons/kernel/drivers/audio/usb/
H A DAudioControlInterface.h46 _AudioChannelCluster(AudioControlInterface* interface, argument
49 __base_class_name(interface, Header) {}
59 _AudioControl(AudioControlInterface* interface,
85 _Terminal(AudioControlInterface* interface,
104 InputTerminal(AudioControlInterface* interface,
116 OutputTerminal(AudioControlInterface* interface,
128 MixerUnit(AudioControlInterface* interface,
145 SelectorUnit(AudioControlInterface* interface,
161 FeatureUnit(AudioControlInterface* interface,
177 EffectUnit(AudioControlInterface* interface,
[all...]

Completed in 548 milliseconds

1234567891011>>