HomeSort by: relevance | last modified time | path
    Searched defs:services (Results 1 - 20 of 20) sorted by relevancy

  /src/crypto/external/bsd/heimdal/dist/kdc/
process.c 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
172 static struct krb5_kdc_service services[] = { variable in typeref:struct:krb5_kdc_service
209 for (i = 0; services[i].process != NULL; i++) {
210 ret = (*services[i].process)(context, config, &req_buffer,
214 if (services[i].flags & KS_NO_LENGTH)
252 for (i = 0; services[i].process != NULL; i++) {
253 if ((services[i].flags & KS_KRB5) == 0)
255 ret = (*services[i].process)(context, config, &req_buffer,
  /src/external/bsd/nsd/dist/simdzone/src/generic/
wks.h 2 * wks.c -- Well-Known Services (WKS) RDATA parser
21 // The list of known protocols and services also differs between operating
23 // and services, which may cause compatibility issues. Furthermore, even
32 // https://www.gnu.org/software/libc/manual/html_node/Services-Database.html
54 // containing an accurate listing of all services at a particular host
122 static const service_t services[64] = { variable
217 (void)protocol; // all supported services map to tcp and udp
242 memcpy(&name0, services[index].key.name, 8);
243 memcpy(&name1, services[index].key.name+8, 8);
245 *port = services[index].port
    [all...]
  /src/usr.sbin/btpand/
btpand.c 21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
66 } services[] = { variable in typeref:struct:__anon8424
158 for (ul = 0; ul < __arraycount(services); ul++) {
159 if (strcasecmp(optarg, services[ul].type) == 0)
163 if (ul == __arraycount(services))
167 service_type = services[ul].type;
168 service_name = services[ul].name;
169 service_desc = services[ul].desc;
172 service_class = services[ul].class;
301 "Known services:\n
    [all...]
  /src/usr.bin/rfcomm_sppd/
rfcomm_sppd.c 24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
52 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
108 } services[] = { variable in typeref:struct:service
346 for (s = services ; ; s++) {
420 for (s = services; ; s++) {
710 for (s = services ; s->name != NULL ; s++)
  /src/usr.sbin/btdevctl/
sdp.c 24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
113 uint16_t *services; member in struct:__anon8423
133 cfg_ssa(sdp_session_t ss, uint16_t *services, size_t nservices, sdp_data_t *rsp)
143 sdp_put_uuid16(&ssp, services[i]);
166 if (!cfg_ssa(ss, cfgtype[i].services, cfgtype[i].nservices, &rsp))
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
srp-gw.h 89 create_nonexistent_host, // Update a host that's not present (and also the services)
90 refresh_existing_host, // Update a host that's present (and also the services)
110 service_t *NONNULL services; member in struct:update
111 dns_name_t *NULLABLE zone_name; // If NULL, we are processing an update for services.arpa.
srp-parse.c 40 #include "cti-services.h"
63 for (service_t *sp = message->services; sp; ) {
261 service_t *services = NULL, *sp, **spp = &services; local
490 for (base_type = services; base_type != NULL; base_type = base_type->next) {
523 // Add to the services list
587 for (sp = services; sp; sp = sp->next) {
643 ERROR("host description " PRI_DNS_NAME_SRP " doesn't contain any IP addresses, but services are being added.",
775 // default.services.arpa and there is a replacement zone.
790 // All services have PTR records, which point to names. Both the service name and th
    [all...]
cti-services.h 1 /* cti-services.h
66 cti_service_t *NULLABLE *NONNULL services; member in struct:_cti_service_vec
304 * services.
319 * services.
323 cti_service_vec_release_(cti_service_vec_t *NONNULL services, const char *NONNULL file, int line);
324 #define cti_service_vec_release(services) cti_service_vec_release_(services, __FILE__, __LINE__)
363 * services: The service vector to release
366 * services.
371 #define cti_service_release(services) cti_service_release(service, __FILE__, __LINE__
    [all...]
cti-services.c 1 /* cti-services.c
36 #include "cti-services.h"
1273 cti_service_vec_finalize(cti_service_vec_t *services)
1277 if (services->services != NULL) {
1278 for (i = 0; i < services->num; i++) {
1279 if (services->services[i] != NULL) {
1280 RELEASE_HERE(services->services[i], cti_service)
1291 cti_service_vec_t *services = calloc(1, sizeof(*services)); local
    [all...]
srp-mdns-proxy.h 289 service_t *NULLABLE services; // Services parsed from message member in struct:client_update
srp-replication.h 343 srpl_instance_service_t *NONNULL services; member in struct:srpl_instance
  /src/lib/libpam/modules/pam_krb5/
pam_krb5.c 44 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
932 * Modified by Sam Hartman <hartmans@mit.edu> to support PAM services
954 const char *services[3], **service; local
971 services[0] = "host";
972 services[1] = pam_service;
973 services[2] = NULL;
976 for (service = &services[0]; *service != NULL; service++) {
  /src/usr.bin/getent/
getent.c 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
81 static int services(int, char *[]);
106 { "services", services, },
770 * services
774 services(int argc, char *argv[]) function
  /src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/
vchiq_core.h 27 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
421 /* Mutex protecting services */
483 /* An array of bit sets indicating which services must be polled. */
509 VCHIQ_SERVICE_T * services[VCHIQ_MAX_SERVICES]; member in struct:vchiq_state_struct
600 return state->services[handle & (VCHIQ_MAX_SERVICES - 1)];
  /src/external/gpl3/gdb/dist/sim/ppc/
emul_chirp.c 60 /* Descriptor of the open boot services being emulated */
89 chirp_services *services; member in struct:_os_emul_data
223 service = data->services;
1402 static chirp_services services[] = { variable
1581 chirp->services = services;
1989 service = services;
  /src/external/gpl3/gdb.old/dist/sim/ppc/
emul_chirp.c 60 /* Descriptor of the open boot services being emulated */
89 chirp_services *services; member in struct:_os_emul_data
223 service = data->services;
1402 static chirp_services services[] = { variable
1581 chirp->services = services;
1989 service = services;
  /src/crypto/external/bsd/openssl/dist/apps/
s_client.c 715 static const OPT_PAIR services[] = { variable
1398 if (!opt_pair(opt_arg(), services, &starttls_proto))
  /src/crypto/external/bsd/openssl.old/dist/apps/
s_client.c 815 static const OPT_PAIR services[] = { variable
1465 if (!opt_pair(opt_arg(), services, &starttls_proto))
  /src/external/bsd/tcpdump/dist/
print-decnet.c 417 byte ci_services; /* requested services */
427 byte cc_services; /* requested services */
438 byte cn_services; /* requested services */
1015 u_int services, info, segsize; local
1019 services = GET_U_1(cimp->ci_services);
1023 switch (services & COS_MASK) {
1054 u_int services, info; local
1059 services = GET_U_1(ccmp->cc_services);
1064 switch (services & COS_MASK) {
  /src/crypto/external/apache2/openssl/dist/apps/
s_client.c 861 static const OPT_PAIR services[] = { variable
1582 if (!opt_pair(opt_arg(), services, &starttls_proto))

Completed in 95 milliseconds