Searched refs:service (Results 1 - 25 of 59) sorted by relevance

123

/haiku-fatelf/src/servers/net/
H A DServices.h20 struct service;
22 typedef std::map<std::string, service*> ServiceNameMap;
38 status_t _StartService(struct service& service);
39 status_t _StopService(struct service& service);
40 status_t _ToService(const BMessage& message, struct service*& service);
42 int32 _CompareServices(struct service& a, struct service
[all...]
H A DServices.cpp30 struct service* owner;
43 struct service { struct
53 ~service();
54 bool operator!=(const struct service& other) const;
55 bool operator==(const struct service& other) const;
111 service::~service()
124 service::operator!=(const struct service& other) const
131 service
256 _StartService(struct service& service) argument
316 _StopService(struct service& service) argument
354 _ToService(const BMessage& message, struct service*& service) argument
498 struct service* service; local
523 struct service* service = iterator->second; local
535 _LaunchService(struct service& service, int socket) argument
[all...]
/haiku-fatelf/src/kits/network/libbind/irs/
H A Dlcl_sv.cpp124 get_next_line(struct service_private* service) argument
126 if (service->file == NULL)
128 return fgets(service->line, BUFSIZ, service->file);
138 struct service_private *service = (struct service_private *)sv->private_data; local
140 if (service->file)
141 fclose(service->file);
143 memput(service, sizeof *service);
151 struct service_private *service local
211 struct service_private *service = (struct service_private *)sv->private_data; local
310 struct service_private *service = (struct service_private *)sv->private_data; local
325 struct service_private *service; local
[all...]
H A Dirp_sv.c57 struct servent service; member in struct:pvt
124 free_service(&pvt->service);
138 struct servent *sv = &pvt->service;
183 struct servent *sv = &pvt->service;
234 struct servent *sv = &pvt->service;
/haiku-fatelf/headers/private/kernel/
H A DNotifications.h35 virtual void EventOccurred(NotificationService& service,
38 NotificationService& service);
73 virtual void EventOccurred(NotificationService& service,
76 NotificationService& service);
185 virtual void EventOccurred(NotificationService& service,
188 NotificationService& service);
200 status_t RegisterService(NotificationService& service);
202 NotificationService& service);
204 status_t AddListener(const char* service,
207 status_t AddListener(const char* service,
[all...]
/haiku-fatelf/src/system/boot/loader/net/
H A DNetDefs.cpp14 // net service names
60 NetService *service = SubNetServiceAt(i); local
61 if (strcmp(service->NetServiceName(), name) == 0)
62 return service;
H A DEthernet.cpp208 // find a service handling this kind of packet
211 EthernetSubService *service = fServices.ElementAt(i); local
212 if (service->EthernetProtocol() == ntohs(header->type)) {
213 service->HandleEthernetPacket(this, header->destination,
224 EthernetService::RegisterEthernetSubService(EthernetSubService *service) argument
226 return (service && fServices.Add(service) == B_OK);
231 EthernetService::UnregisterEthernetSubService(EthernetSubService *service) argument
233 return (service && fServices.Remove(service) >
[all...]
H A DIP.cpp108 // find a service handling this kind of packet
111 IPSubService *service = fServices.ElementAt(i); local
112 if (service->IPProtocol() == header->protocol) {
113 service->HandleIPPacket(this, ntohl(header->source),
173 IPService::RegisterIPSubService(IPSubService *service) argument
175 return (service && fServices.Add(service) == B_OK);
180 IPService::UnregisterIPSubService(IPSubService *service) argument
182 return (service && fServices.Remove(service) >
[all...]
/haiku-fatelf/headers/os/bluetooth/
H A DDeviceClass.h28 DeviceClass(uint8 major, uint8 minor, uint16 service) argument
30 SetRecord(major, minor, service);
44 void SetRecord(uint8 major, uint8 minor, uint16 service) argument
48 fRecord |= (service & 0x7FF) << 13;
/haiku-fatelf/headers/os/net/
H A DNetworkAddressResolver.h29 const char* service, uint32 flags = 0);
34 const char* address, const char* service,
44 status_t SetTo(const char* address, const char* service,
49 const char* service, uint32 flags = 0);
H A DNetAddress.h31 const char* service);
38 const char* service);
H A DNetworkAddress.h25 const char* service, uint32 flags = 0);
29 const char* service, uint32 flags = 0);
49 status_t SetTo(const char* address, const char* service,
54 const char* service, uint32 flags = 0);
76 status_t SetPort(const char* service);
/haiku-fatelf/headers/private/kernel/arch/x86/
H A Dbios.h27 status_t get_bios32_service(uint32 identifier, struct bios32_service *service);
/haiku-fatelf/src/system/kernel/
H A DNotifications.cpp36 NotificationListener::EventOccurred(NotificationService& service, argument
43 NotificationListener::AllListenersNotified(NotificationService& service) argument
117 UserMessagingListener::EventOccurred(NotificationService& service, argument
125 UserMessagingListener::AllListenersNotified(NotificationService& service) argument
404 DefaultUserNotificationService::EventOccurred(NotificationService& service, argument
427 NotificationService& service)
498 NotificationManager::RegisterService(NotificationService& service) argument
502 if (_ServiceFor(service.Name()))
505 status_t status = fServiceHash.Insert(&service);
507 service
426 AllListenersNotified( NotificationService& service) argument
514 UnregisterService(NotificationService& service) argument
540 NotificationService* service = _ServiceFor(serviceName); local
569 NotificationService* service = _ServiceFor(serviceName); local
585 NotificationService* service = _ServiceFor(serviceName); local
[all...]
/haiku-fatelf/src/kits/network/libnetapi/
H A DNetworkAddressResolver.cpp57 const char* service, uint32 flags)
62 SetTo(address, service, flags);
77 const char* address, const char* service, uint32 flags)
82 SetTo(family, address, service, flags);
118 BNetworkAddressResolver::SetTo(const char* address, const char* service, argument
121 return SetTo(AF_UNSPEC, address, service, flags);
129 BString service; local
130 service << port;
132 return SetTo(family, address, port != 0 ? service.String() : NULL, flags);
138 const char* service, uint3
56 BNetworkAddressResolver(const char* address, const char* service, uint32 flags) argument
76 BNetworkAddressResolver(int family, const char* address, const char* service, uint32 flags) argument
137 SetTo(int family, const char* host, const char* service, uint32 flags) argument
[all...]
/haiku-fatelf/src/system/kernel/arch/x86/32/
H A Dbios.cpp79 * the values that identify BIOS service.
81 * the BIOS32 service directory is not available, or B_BAD_VALUE
86 get_bios32_service(uint32 identifier, struct bios32_service *service) argument
95 asm("movl %4, %%eax; " // set service parameters
111 service->base = ebx;
112 service->size = ecx;
113 service->offset = edx;
145 TRACE(("bios32 service directory at: %lx\n", bios32->service_directory));
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/server-Windows/
H A Dmyservice.cpp4 // This file contains the implementation of a Windows NT service, encapsulated in a
31 extern void BeServedStartup(CMyService *service);
/haiku-fatelf/headers/private/kernel/boot/net/
H A DEthernet.h65 bool RegisterEthernetSubService(EthernetSubService *service);
66 bool UnregisterEthernetSubService(EthernetSubService *service);
H A DIP.h47 bool RegisterIPSubService(IPSubService *service);
48 bool UnregisterIPSubService(IPSubService *service);
/haiku-fatelf/src/bin/network/netstat/
H A Dnetstat.cpp64 servent* service = NULL; local
68 service = getservbyport(address.sin_port, NULL);
83 if (service != NULL)
84 strlcpy(port, service->s_name, sizeof(port));
/haiku-fatelf/src/preferences/bluetooth/
H A DBluetoothSettingsView.h32 , uint16 service);
/haiku-fatelf/src/bin/coreutils/lib/
H A Dgetaddrinfo.c128 /* Translate name of a service location and/or a service name to set of
359 char *restrict service, socklen_t servicelen,
365 service, servicelen, flags);
370 (service && servicelen > 0 && !(flags & NI_NUMERICHOST)) ||
422 if (service && servicelen > 0 && flags & NI_NUMERICSERV)
434 if (servicelen <= snprintf (service, servicelen, "%u", port))
357 getnameinfo(const struct sockaddr *restrict sa, socklen_t salen, char *restrict node, socklen_t nodelen, char *restrict service, socklen_t servicelen, int flags) argument
H A Dnetdb.h65 /* Structure to contain information about address of a service provider. */
74 char *ai_canonname; /* Canonical name for service location. */
153 /* Translate name of a service location and/or a service name to set of
179 /* Convert socket address to printable node and service names.
184 char *restrict service, socklen_t servicelen,
/haiku-fatelf/src/servers/registrar/
H A DMessagingService.cpp26 \brief Represents an area of the messaging service shared between kernel
206 \brief Userland implementation of the kernel -> userland messaging service.
208 This service provides a way for the kernel to send BMessages (usually
222 While the service is called `messaging service' and we were speaking of
223 `messages' being passed through the areas, the service is actually more
237 : fLock("messaging service"),
323 // create the service
324 MessagingService *service = new(nothrow) MessagingService;
325 if (!service)
[all...]
/haiku-fatelf/headers/private/kernel/platform/openfirmware/
H A Dopenfirmware.h77 extern int of_test(const char *service);

Completed in 266 milliseconds

123