/src/usr.sbin/service/ |
Makefile | 3 FILES= service 4 MAN= service.8
|
/src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/ |
vchiq_shim.c | 102 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_msg_peek 109 if (vchiu_queue_is_empty(&service->queue)) 112 header = vchiu_queue_peek(&service->queue); 134 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_msg_remove 137 header = vchiu_queue_pop(&service->queue); 139 vchiq_release_message(service->handle, header); 165 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_msg_queue 173 status = vchiq_queue_message(service->handle, &element, 1); 181 status = vchiq_queue_message(service->handle, &element, 1); 208 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle local in function:vchi_bulk_queue_receive 267 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_bulk_queue_transmit 327 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_msg_dequeue 377 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_msg_queuev 401 SHIM_SERVICE_T *service; local in function:vchi_held_msg_release 436 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_msg_hold 548 SHIM_SERVICE_T *service = local in function:shim_callback 609 SHIM_SERVICE_T *service = kzalloc(sizeof(SHIM_SERVICE_T), GFP_KERNEL); local in function:service_alloc 639 SHIM_SERVICE_T *service = service_alloc(instance, setup); local in function:vchi_service_open 672 SHIM_SERVICE_T *service = service_alloc(instance, setup); local in function:vchi_service_create 702 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_service_close 719 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_service_destroy 738 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_service_set_option 766 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_get_peer_version 839 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_service_use 859 SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle; local in function:vchi_service_release [all...] |
vchiq_core.c | 167 vchiq_set_service_state(VCHIQ_SERVICE_T *service, int newstate) 170 service->state->id, service->localport, 171 srvstate_names[service->srvstate], 173 service->srvstate = newstate; 179 VCHIQ_SERVICE_T *service; local in function:find_service_by_handle 182 service = handle_to_service(handle); 183 if (service && (service->srvstate != VCHIQ_SRVSTATE_FREE) && 184 (service->handle == handle)) 201 VCHIQ_SERVICE_T *service = NULL; local in function:find_service_by_port 223 VCHIQ_SERVICE_T *service; local in function:find_service_for_instance 246 VCHIQ_SERVICE_T *service; local in function:find_closed_service_for_instance 272 VCHIQ_SERVICE_T *service = NULL; local in function:next_service_by_instance 339 VCHIQ_SERVICE_T *service = find_service_by_handle(handle); local in function:vchiq_get_client_id 352 VCHIQ_SERVICE_T *service = handle_to_service(handle); local in function:vchiq_get_service_userdata 360 VCHIQ_SERVICE_T *service = handle_to_service(handle); local in function:vchiq_get_service_fourcc 506 VCHIQ_SERVICE_T *service = state->services[i]; local in function:get_listening_service 526 VCHIQ_SERVICE_T *service = state->services[i]; local in function:get_connected_service 1287 VCHIQ_SERVICE_T *service = local in function:poll_services 1491 VCHIQ_SERVICE_T *service = state->services[i]; local in function:resume_bulks 1512 VCHIQ_SERVICE_T *service = NULL; local in function:parse_open 1634 VCHIQ_SERVICE_T *service = NULL; local in function:parse_rx_slots 2171 VCHIQ_SERVICE_T *service; local in function:sync_func 2578 VCHIQ_SERVICE_T *service; local in function:vchiq_add_service_internal 3082 VCHIQ_SERVICE_T *service; local in function:vchiq_connect_internal 3118 VCHIQ_SERVICE_T *service; local in function:vchiq_shutdown_internal 3175 VCHIQ_SERVICE_T *service = find_service_by_handle(handle); local in function:vchiq_close_service 3234 VCHIQ_SERVICE_T *service = find_service_by_handle(handle); local in function:vchiq_remove_service 3302 VCHIQ_SERVICE_T *service = find_service_by_handle(handle); local in function:vchiq_bulk_transfer 3458 VCHIQ_SERVICE_T *service = find_service_by_handle(handle); local in function:vchiq_queue_message 3513 VCHIQ_SERVICE_T *service = find_service_by_handle(handle); local in function:vchiq_release_message 3553 VCHIQ_SERVICE_T *service = find_service_by_handle(handle); local in function:vchiq_get_peer_version 3596 VCHIQ_SERVICE_T *service = find_service_by_handle(handle); local in function:vchiq_set_service_option 3770 VCHIQ_SERVICE_T *service = find_service_by_port(state, i); local in function:vchiq_dump_state [all...] |
vchiq_if.h | 47 #define VCHIQ_GET_SERVICE_USERDATA(service) vchiq_get_service_userdata(service) 48 #define VCHIQ_GET_SERVICE_FOURCC(service) vchiq_get_service_fourcc(service) 51 VCHIQ_SERVICE_OPENED, /* service, -, - */ 52 VCHIQ_SERVICE_CLOSED, /* service, -, - */ 53 VCHIQ_MESSAGE_AVAILABLE, /* service, header, - */ 54 VCHIQ_BULK_TRANSMIT_DONE, /* service, -, bulk_userdata */ 55 VCHIQ_BULK_RECEIVE_DONE, /* service, -, bulk_userdata */ 56 VCHIQ_BULK_TRANSMIT_ABORTED, /* service, -, bulk_userdata * [all...] |
vchiq_arm.c | 106 VCHIQ_SERVICE_T *service; member in struct:user_service_struct 265 completion->service_userdata = user_service->service; 271 lock_service(user_service->service); 306 VCHIQ_SERVICE_T *service; local in function:service_callback 313 service = handle_to_service(handle); 314 BUG_ON(!service); 315 user_service = (USER_SERVICE_T *)service->base.userdata; 322 "service_callback - service %lx(%d,%p), reason %d, header %lx, " 325 service->localport, user_service->userdata, 430 user_service->service->handle) 454 VCHIQ_SERVICE_T *service = NULL; local in function:vchiq_ioctl 1217 VCHIQ_SERVICE_T *service; local in function:vchiq_close 1399 VCHIQ_SERVICE_T *service = state->services[i]; local in function:vchiq_dump_platform_instances 1410 VCHIQ_SERVICE_T *service = state->services[i]; local in function:vchiq_dump_platform_instances 2588 VCHIQ_SERVICE_T *service; local in function:vchiq_instance_get_use_count 2614 VCHIQ_SERVICE_T *service; local in function:vchiq_instance_set_trace 2643 VCHIQ_SERVICE_T *service = find_service_by_handle(handle); local in function:vchiq_use_service_no_resume 2656 VCHIQ_SERVICE_T *service = find_service_by_handle(handle); local in function:vchiq_use_service 2669 VCHIQ_SERVICE_T *service = find_service_by_handle(handle); local in function:vchiq_release_service [all...] |
vchiq_kern_lib.c | 229 VCHIQ_SERVICE_T *service = NULL; local in function:vchiq_add_service 241 service = vchiq_add_service_internal( 248 if (service) { 249 *phandle = service->handle; 274 VCHIQ_SERVICE_T *service = NULL; local in function:vchiq_open_service 284 service = vchiq_add_service_internal(state, 290 if (service) { 291 *phandle = service->handle; 292 status = vchiq_open_service_internal(service, 295 vchiq_remove_service(service->handle) 383 VCHIQ_SERVICE_T *service; local in function:vchiq_blocking_bulk_transfer [all...] |
vchiq_core.h | 160 #define VCHIQ_SERVICE_STATS_INC(service, stat) (service->stats. stat++) 161 #define VCHIQ_SERVICE_STATS_ADD(service, stat, addend) \ 162 (service->stats. stat += addend) 165 #define VCHIQ_SERVICE_STATS_INC(service, stat) ((void)0) 166 #define VCHIQ_SERVICE_STATS_ADD(service, stat, addend) ((void)0) 337 statically allocated, since for accounting reasons a service's slot 486 /* The number of the first unused service */ 549 vchiq_open_service_internal(VCHIQ_SERVICE_T *service, int client_id); 552 vchiq_close_service_internal(VCHIQ_SERVICE_T *service, int close_recvd) [all...] |
vchiq_arm.h | 97 ** This use count is not associated with a service, so needs to be 164 vchiq_check_service(VCHIQ_SERVICE_T *service); 188 vchiq_use_internal(VCHIQ_STATE_T *state, VCHIQ_SERVICE_T *service, 191 vchiq_release_internal(VCHIQ_STATE_T *state, VCHIQ_SERVICE_T *service);
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/gpio/ |
gpio_service.h | 50 struct gpio_service *service, 54 struct gpio_service *service, 59 struct gpio_service *service,
|
amdgpu_gpio_service.c | 65 struct gpio_service *service; local in function:dal_gpio_service_create 68 service = kzalloc(sizeof(struct gpio_service), GFP_KERNEL); 70 if (!service) { 75 if (!dal_hw_translate_init(&service->translate, dce_version_major, 81 if (!dal_hw_factory_init(&service->factory, dce_version_major, 90 service->ctx = ctx; 94 service->factory.number_of_pins[index_of_id]; 98 service->busyness[index_of_id] = 102 if (!service->busyness[index_of_id]) { 108 service->busyness[index_of_id][i] = 0 299 struct gpio_service *service = gpio->service; local in function:dal_gpio_service_open [all...] |
amdgpu_gpio_base.c | 118 return dal_gpio_service_lock(gpio->service, gpio->id, gpio->en); 124 return dal_gpio_service_unlock(gpio->service, gpio->id, gpio->en); 167 return gpio->service->translate.funcs->id_to_offset( 264 dal_gpio_service_close(gpio->service, &gpio->pin); 275 struct gpio_service *service, 287 gpio->service = service; 297 gpio->service->factory.funcs->init_ddc_data(&gpio->hw_container.ddc, service->ctx, id, en); 300 gpio->service->factory.funcs->init_ddc_data(&gpio->hw_container.ddc, service->ctx, id, en) [all...] |
/src/usr.bin/rsh/ |
getport.c | 45 getport(const char *service, const char *protocol) 49 struct servent *sp = getservbyname(service, protocol); 55 sp->s_name = __UNCONST(service); 57 port = strtol(service, &ep, 0); 58 if ((service[0] != '\0' && *ep != '\0') ||
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/include/ |
gpio_service_interface.h | 38 struct gpio_service *service, 52 struct gpio_service *service, 57 struct gpio_service *service, 69 struct gpio_service *service, 74 struct gpio_service *service, 96 struct gpio_service *service,
|
/src/lib/libpam/modules/pam_afslog/ |
pam_afslog.c | 59 const void *service = NULL; local in function:pam_sm_setcred 63 pam_get_item(pamh, PAM_SERVICE, &service); 64 if (service == NULL) 65 service = "pam_afslog"; 87 (const char *)service,
|
/src/usr.sbin/btdevctl/ |
btdevctl.c | 66 const char *service, *mode; local in function:main 71 service = NULL; 126 case 's': /* service */ 127 service = uppercase(optarg); 147 || service == NULL) 153 dev = db_get(&laddr, &raddr, service); 156 printf("Performing SDP query for service '%s'..\n", service); 158 dev = cfg_query(&laddr, &raddr, service); 173 if (set == true && !db_set(dev, &laddr, &raddr, service)) [all...] |
db.c | 60 * lookup laddr/raddr/service in database and return dictionary 63 db_get(bdaddr_t *laddr, bdaddr_t *raddr, const char *service) 100 dev = prop_dictionary_get(rdev, service); 108 * store dictionary in database at laddr/raddr/service 111 db_set(prop_dictionary_t dev, bdaddr_t *laddr, bdaddr_t *raddr, const char *service) 139 if (!prop_dictionary_set(rdev, service, dev)) 158 * We have to generate the service, but only HID, HF and HSET 169 const char *service; local in function:db_update0 203 service = "HID"; 207 service = "HF" [all...] |
/src/etc/rc.d/ |
bluetooth | 79 # attach local Bluetooth service drivers 81 while read -r service addr dev junk; do 82 case ${service} in 93 echo "attaching Bluetooth ${service} service from \"${addr}\"" 94 ${btdevctl_cmd} -A -a "${addr}" -d "${dev}" -s "${service}" 98 # start Bluetooth Service Discovery server 101 echo "starting Bluetooth Service Discovery server" 109 # disable Bluetooth controllers, detaching local service drivers 119 # halt Service Discovery server, Link Key/PIN Code manager [all...] |
/src/sys/dev/ic/ |
icp_ioctl.h | 51 u_int16_t service; member in struct:gdt_ucmd 116 u_int16_t service; member in struct:__anon07d367500308::__anon07d36750040a::__anon07d367500508 121 u_int16_t service; member in struct:__anon07d367500308::__anon07d36750040a::__anon07d367500608 128 u_int16_t service; member in struct:__anon07d367500308::__anon07d36750040a::__anon07d367500708
|
/src/usr.sbin/sdpd/ |
Makefile | 7 SRCS= db.c log.c main.c record.c server.c service.c
|
/src/usr.sbin/faithd/ |
tcp.c | 154 send_data(int s_rcv, int s_snd, const char *service, int direction) 199 relay(int s_rcv, int s_snd, const char *service, int direction) 280 exit_success("terminating %s relay", service); 293 send_data(s_rcv, s_snd, service, direction); 298 tcp_relay(int s_src, int s_dst, const char *service) 300 syslog(LOG_INFO, "starting %s relay", service); 316 relay(s_src, s_dst, service, 1); 323 relay(s_dst, s_src, service, 0);
|
/src/sys/external/bsd/vchiq/dist/interface/vchi/connections/ |
connection.h | 45 // Opaque handle for a connection / service pair 66 // Routine to create a service 79 // Routine to close a service 134 typedef int32_t (*VCHI_CONNECTION_MSG_ITER_HAS_NEXT_T)( VCHI_CONNECTION_SERVICE_HANDLE_T service, 138 typedef int32_t (*VCHI_CONNECTION_MSG_ITER_NEXT_T)( VCHI_CONNECTION_SERVICE_HANDLE_T service, 144 typedef int32_t (*VCHI_CONNECTION_MSG_ITER_REMOVE_T)( VCHI_CONNECTION_SERVICE_HANDLE_T service, 148 typedef int32_t (*VCHI_CONNECTION_MSG_ITER_HOLD_T)( VCHI_CONNECTION_SERVICE_HANDLE_T service, 177 int32_t service, 184 // Callback to inform a service that a Xon or Xoff message has been received 187 // Callback to inform a service that a server available reply message has been receive [all...] |
/src/usr.bin/getaddrinfo/ |
getaddrinfo.c | 64 char *service = NULL; local in function:main 93 service = optarg; 124 if (service != NULL) { 127 if ((p = strchr(service, '/')) != NULL) { 142 error = getaddrinfo(hostname, service, &hints, &addrinfo); 164 " [-f <family>] [-p <protocol>] [-t <socktype>] [-s <service>]\n");
|
/src/sys/arch/x86/x86/ |
bios32.c | 194 * Call BIOS32 to locate the specified BIOS32 service, and fill 198 bios32_service(uint32_t service, bios32_entry_t e, bios32_entry_info_t ei) 209 : "0" (service), "1" (0), "D" (&bios32_entry)); 212 return 0; /* service not found */ 217 aprint_error("BIOS32: entry point for service %c%c%c%c is " 219 service & 0xff, 220 (service >> 8) & 0xff, 221 (service >> 16) & 0xff, 222 (service >> 24) & 0xff); 233 (void)service; [all...] |
/src/usr.bin/rfcomm_sppd/ |
rfcomm_sppd.c | 104 static const struct service { struct 124 const char *service; local in function:main 133 service = "SP"; 189 case 's': /* service class */ 190 service = optarg; 228 rfcomm = open_client(&laddr, &raddr, lm, psm, service); 230 rfcomm = open_server(&laddr, psm, channel, lm, service); 337 const char *service) 340 const struct service *s; 349 channel = strtoul(service, &ep, 10) [all...] |
/src/sys/external/bsd/vchiq/dist/interface/vchi/ |
vchi_common.h | 64 //callback reasons when an event occurs on a service 87 // this side has sent XOFF to peer due to lack of data consumption by service 88 // (suggests the service may need to take some recovery action if it has 113 // service control options 126 typedef void (*VCHI_CALLBACK_T)( void *callback_param, //my service local param 165 // is used again after messages for that service are removed/dequeued by any 168 struct opaque_vchi_service_t *service; member in struct:__anonbe1bcfc30508
|